@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #fbf8f2;
  --bg-alt: #f2f7ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: #112143;
  --text: #182033;
  --muted: #5f6b85;
  --line: rgba(24, 32, 51, 0.1);
  --primary: #2054ff;
  --primary-deep: #1639b8;
  --secondary: #ff7f5c;
  --secondary-soft: #ffe0d7;
  --aqua: #0fcab8;
  --sun: #ffd45f;
  --lavender: #ebe9ff;
  --mint: #e5fff9;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --radius-xl: 56px;
  --shadow-sm: 0 16px 36px rgba(18, 31, 63, 0.08);
  --shadow-lg: 0 28px 80px rgba(18, 31, 63, 0.12);
  --max-width: 1220px;
  --content-width: 760px;
  --page-gutter: clamp(0.9rem, 2vw, 1.5rem);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif;
  --motion-smooth: 280ms cubic-bezier(0.22, 1, 0.36, 1);
  --motion-float: 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 4%, rgba(255, 127, 92, 0.13), transparent 18%),
    radial-gradient(circle at 88% 6%, rgba(32, 84, 255, 0.12), transparent 22%),
    radial-gradient(circle at 16% 28%, rgba(15, 202, 184, 0.08), transparent 16%),
    radial-gradient(circle at 84% 36%, rgba(255, 212, 95, 0.11), transparent 18%),
    radial-gradient(circle at 8% 56%, rgba(32, 84, 255, 0.08), transparent 18%),
    radial-gradient(circle at 90% 64%, rgba(255, 127, 92, 0.1), transparent 18%),
    radial-gradient(circle at 18% 82%, rgba(255, 212, 95, 0.1), transparent 16%),
    radial-gradient(circle at 82% 90%, rgba(15, 202, 184, 0.08), transparent 18%),
    linear-gradient(180deg, #fff9f2 0%, #f7fbff 50%, #fbf8f2 100%);
  background-repeat: no-repeat;
  background-size: 100% 3200px;
  line-height: 1.68;
}

img {
  max-width: 100%;
  display: block;
}

main > section,
.card,
.content-card,
.comparison-card,
.destination-card,
.hero-panel,
.hero-mini-card,
.feature-panel,
.newsletter,
.contact-card,
.quiz-card,
.sidebar-card,
.review-note,
.related-reading,
.callout,
.table-shell,
.toc {
  animation: riseIn 0.7s var(--motion-smooth) both;
}

a {
  color: var(--primary-deep);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(32, 84, 255, 0.25);
  outline-offset: 3px;
}

.progress-bar {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 200;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: var(--space-7) 0;
}

.section[id],
.hero[id],
.article-shell [id] {
  scroll-margin-top: 7.5rem;
}

.section-alt {
  position: relative;
  overflow: visible;
  background: transparent !important;
}

.section-alt::before,
.section-alt::after {
  content: none !important;
  display: none !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(32, 84, 255, 0.08);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(255, 127, 92, 0.14);
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  margin-bottom: var(--space-5);
  max-width: 780px;
}

.section-heading h1,
.section-heading h2,
.article-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.9vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-heading p,
.lede,
.article-summary {
  margin: 0;
  max-width: 66ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 0.85rem 0;
  background: rgba(251, 248, 242, 0.72);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 38px rgba(17, 33, 67, 0.08);
}

.site-header .container {
  width: min(calc(100% - max(1rem, var(--page-gutter) * 1.5)), calc(var(--max-width) + 2rem));
  max-width: calc(var(--max-width) + 2rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text);
}

.brand-mark {
  width: 2.85rem;
  height: 2.85rem;
  display: block;
  flex: 0 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-copy {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy small {
  display: block;
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(32, 84, 255, 0.12), rgba(255, 127, 92, 0.14));
  color: var(--text);
  font-weight: 800;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  right: 0;
  display: none;
  gap: 1rem;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(24, 32, 51, 0.08);
}

.nav-panel.is-open {
  display: grid;
}

.nav-links,
.nav-secondary,
.footer-links {
  display: grid;
  gap: 0.55rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.7rem 0.95rem;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.nav-dropdown.is-current .nav-dropdown-trigger {
  background: rgba(32, 84, 255, 0.1);
  color: var(--primary-deep);
}

.nav-dropdown-caret {
  color: var(--primary);
  font-size: 0.9rem;
  line-height: 1;
}

.nav-dropdown-menu {
  display: none;
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0.72rem 0.8rem;
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-dropdown-link[aria-current="page"] {
  background: rgba(32, 84, 255, 0.08);
  color: var(--primary-deep);
}

.nav-link,
.footer-links a,
.language-chip {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.7rem 0.95rem;
  border-radius: 16px;
  color: var(--text);
  font-weight: 700;
}

.nav-link[aria-current="page"] {
  background: rgba(32, 84, 255, 0.1);
  color: var(--primary-deep);
}

.nav-link:hover,
.footer-links a:hover,
.language-chip:hover {
  background: rgba(32, 84, 255, 0.06);
}

.language-switcher {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(24, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.language-caret {
  color: var(--primary);
  font-size: 0.9rem;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 190px;
  display: none;
  padding: 0.55rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(24, 32, 51, 0.08);
  box-shadow: var(--shadow-lg);
}

.language-switcher.is-open .language-menu {
  display: grid;
  gap: 0.25rem;
}

.language-option {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.language-option.is-active {
  background: rgba(32, 84, 255, 0.08);
  color: var(--primary-deep);
}

.language-option[aria-disabled="true"] {
  opacity: 0.62;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4.75rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.65;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  width: 18rem;
  height: 18rem;
  left: -4rem;
  top: 4rem;
  background: rgba(255, 127, 92, 0.2);
}

.hero::after {
  width: 24rem;
  height: 24rem;
  right: -4rem;
  top: 0;
  background: rgba(32, 84, 255, 0.15);
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
}

.hero-copy .eyebrow {
  justify-self: start;
}

.hub-hero-copy {
  gap: 0.8rem;
  align-content: start;
}

.hub-hero-copy .lede {
  max-width: 62ch;
}

.hero-support {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  max-width: 60ch;
}

.hero-points li {
  display: flex;
  gap: 0.7rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero-points li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--aqua));
  flex: none;
}

.hero-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.1rem;
}

.hero-link-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: var(--shadow-sm);
}

.hero-link-chip:hover {
  color: var(--primary-deep);
  transform: translateY(-1px);
}

.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.4vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero-copy p {
  max-width: 58ch;
}

.cta-row,
.button-row,
.trust-row,
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button,
.button-secondary,
.button-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button-secondary:hover,
.button-tertiary:hover {
  transform: translateY(-2px);
}

.button {
  color: white;
  background: linear-gradient(135deg, var(--primary), #4d7bff);
  box-shadow: 0 18px 32px rgba(32, 84, 255, 0.24);
}

.button:hover {
  color: white;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(24, 32, 51, 0.08);
}

.button-tertiary {
  color: var(--primary-deep);
  background: rgba(32, 84, 255, 0.08);
}

.hero-pills span,
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.hero-pills span::before,
.trust-chip::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--aqua);
}

.hero-stage {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 0;
  align-content: start;
}

.hero-panel,
.hero-mini-card,
.card,
.content-card,
.comparison-card,
.destination-card,
.newsletter,
.contact-card,
.quiz-card,
.toc,
.callout,
.table-shell,
.sidebar-card,
.review-note,
.related-reading,
.stat-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75));
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition:
    transform var(--motion-float),
    box-shadow var(--motion-smooth),
    border-color var(--motion-smooth);
}

.hero-panel {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: clamp(280px, 34vw, 360px);
  background:
    linear-gradient(145deg, rgba(32, 84, 255, 0.12), rgba(15, 202, 184, 0.1)),
    rgba(255, 255, 255, 0.82);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter var(--motion-smooth);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(17, 33, 67, 0.65));
  pointer-events: none;
}

.hero-panel-copy {
  position: absolute;
  inset: auto 1.1rem 1.1rem 1.1rem;
  z-index: 2;
  display: grid;
  gap: 0.5rem;
  color: white;
}

.hero-panel-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-mini-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-mini-card {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: clamp(150px, 18vw, 190px);
}

.hero-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter var(--motion-smooth);
}

.hero-mini-card span {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(17, 33, 67, 0.75);
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-sticker {
  position: absolute;
  width: 88px;
  aspect-ratio: 1;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  pointer-events: none;
  animation: stickerFloat 5.5s ease-in-out infinite;
}

.floating-sticker img {
  width: 62px;
}

.floating-sticker.is-top {
  top: -0.75rem;
  right: 1.2rem;
}

.floating-sticker.is-bottom {
  left: -0.2rem;
  bottom: 1rem;
}

.brand-band {
  padding: 1rem 0;
}

.brand-band-grid {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  border-radius: 32px;
  background: var(--surface-dark);
  color: white;
}

.brand-band-grid .trust-chip {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.brand-band-grid .trust-chip::before {
  background: var(--sun);
}

.card-grid,
.guide-grid,
.scenario-grid,
.destination-grid,
.comparison-grid,
.footer-grid,
.related-grid,
.stat-grid,
.feature-grid {
  display: grid;
  gap: 1rem;
}

.card,
.content-card,
.comparison-card,
.destination-card,
.newsletter,
.contact-card,
.quiz-card,
.sidebar-card,
.review-note,
.callout,
.toc,
.table-shell {
  padding: 1.35rem;
}

.card,
.content-card,
.comparison-card,
.destination-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
}

.content-card,
.comparison-card,
.destination-card {
  overflow: hidden;
}

.comparison-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.comparison-card .button-row,
.comparison-card .button-tertiary,
.comparison-card .button,
.comparison-card .button-secondary {
  margin-top: auto;
}

.media-thumb {
  display: block;
  margin: -1.35rem -1.35rem 1rem;
  overflow: hidden;
  width: calc(100% + 2.7rem);
  aspect-ratio: 16 / 9;
  max-height: 220px;
  border-radius: var(--radius-md) var(--radius-md) 20px 20px;
  background: linear-gradient(135deg, rgba(32, 84, 255, 0.12), rgba(255, 127, 92, 0.16));
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter var(--motion-smooth);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 127, 92, 0.12);
  color: #c3512d;
  font-size: 0.8rem;
  font-weight: 800;
}

.badge::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.75;
}

.card h3,
.content-card h3,
.comparison-card h3,
.destination-card h3,
.sidebar-card h3 {
  margin: 0.65rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.muted {
  color: var(--muted);
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.list-clean li {
  display: flex;
  gap: 0.7rem;
  color: var(--muted);
}

.list-clean li::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--aqua));
  flex: none;
}

.feature-split {
  display: grid;
  gap: 1.2rem;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.feature-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter var(--motion-smooth);
}

.feature-panel-copy {
  position: absolute;
  inset: auto 1.3rem 1.25rem 1.3rem;
  z-index: 2;
}

.feature-panel-copy h3 {
  margin: 0 0 0.55rem;
  color: white;
  font-size: 2rem;
}

.feature-panel::after {
  content: none;
}

.comparison-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.filter-chip {
  padding: 0.72rem 0.95rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.filter-chip.is-active {
  background: linear-gradient(135deg, rgba(32, 84, 255, 0.16), rgba(15, 202, 184, 0.18));
  color: var(--primary-deep);
}

.strip,
.value-strip {
  padding: 0.75rem 0;
}

.strip-items {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.strip-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 700;
}

.strip-dot {
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.article-shell {
  padding: 2rem 0 5rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumbs span {
  opacity: 0.45;
}

.article-grid {
  display: grid;
  gap: 1.4rem;
}

.article-main {
  display: grid;
  gap: 1.25rem;
}

.article-header {
  display: grid;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 127, 92, 0.16), transparent 24%),
    radial-gradient(circle at top left, rgba(15, 202, 184, 0.18), transparent 18%),
    linear-gradient(160deg, rgba(32, 84, 255, 0.08), rgba(255, 255, 255, 0.92));
  box-shadow: var(--shadow-sm);
}

.article-header h1 {
  max-width: 15ch;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0.2rem 0 0;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.article-meta span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--aqua);
}

.article-hero-media {
  position: relative;
  overflow: hidden;
  display: grid;
  width: 100%;
  justify-self: stretch;
  align-items: end;
  aspect-ratio: 16 / 8.5;
  min-height: 0;
  max-height: 360px;
  margin-top: 0.4rem;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter var(--motion-smooth);
}

.article-hero-overlay {
  position: absolute;
  inset: auto 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.article-hero-overlay span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 33, 67, 0.82);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
}

.article-layout {
  display: grid;
  gap: 1rem;
}

.quick-answer {
  background: linear-gradient(145deg, rgba(15, 202, 184, 0.12), rgba(32, 84, 255, 0.08));
}

.quick-answer h2,
.toc h2,
.callout h2 {
  margin-top: 0;
}

.toc ol {
  margin: 0;
  padding-left: 1.1rem;
}

.toc li + li {
  margin-top: 0.65rem;
}

.callout {
  border: 0;
  background: linear-gradient(135deg, rgba(255, 127, 92, 0.12), rgba(255, 212, 95, 0.18));
}

.review-note {
  display: grid;
  gap: 0.5rem;
  background: linear-gradient(160deg, rgba(17, 33, 67, 0.92), rgba(32, 84, 255, 0.88));
  color: white;
}

.review-note .badge {
  background: rgba(255, 255, 255, 0.14);
  color: #f6c4b4;
}

.review-note p,
.review-note .muted {
  color: rgba(255, 255, 255, 0.8);
}

.review-note h3,
.review-note a {
  color: white;
}

.review-note a:hover {
  color: #dbe6ff;
}

.article-content {
  max-width: var(--content-width);
}

.article-content h2,
.article-content h3 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.article-content h2 {
  margin: 2.2rem 0 0.85rem;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1;
}

.article-content h3 {
  margin: 1.55rem 0 0.5rem;
  font-size: 1.22rem;
  line-height: 1.1;
}

.article-content p,
.article-content li {
  color: #2e3951;
}

.article-content ul,
.article-content ol {
  padding-left: 1.15rem;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
}

.article-content th,
.article-content td {
  padding: 0.95rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(24, 32, 51, 0.08);
  vertical-align: top;
}

.article-content th {
  font-size: 0.93rem;
  color: var(--text);
}

.pros-cons {
  display: grid;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(32, 84, 255, 0.08);
  color: var(--primary);
  font-size: 1.35rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-content {
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
}

.table-shell {
  overflow: auto;
}

.table-shell[data-view="mobile"] table thead {
  display: none;
}

.table-shell[data-view="mobile"] table,
.table-shell[data-view="mobile"] tbody,
.table-shell[data-view="mobile"] tr,
.table-shell[data-view="mobile"] td {
  display: block;
  width: 100%;
}

.table-shell[data-view="mobile"] tr + tr {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(24, 32, 51, 0.08);
}

.table-shell[data-view="mobile"] td {
  padding: 0.45rem 0;
  border-bottom: 0;
}

.table-shell[data-view="mobile"] td::before {
  content: attr(data-label);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.sidebar {
  display: grid;
  gap: 1rem;
}

.sticky-cta {
  display: none;
}

.newsletter,
.contact-card {
  overflow: hidden;
}

.newsletter::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255, 127, 92, 0.12);
  filter: blur(8px);
  pointer-events: none;
}

.newsletter form,
.contact-card form {
  display: grid;
  gap: 0.8rem;
}

.related-reading {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
  padding: 1.35rem;
}

.related-reading h2,
.related-reading h3 {
  margin: 0;
}

.related-reading .footer-links {
  display: grid;
  gap: 0.45rem;
}

.related-reading .footer-links a {
  color: var(--text);
  background: rgba(32, 84, 255, 0.05);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  font-weight: 700;
}

.related-reading .footer-links a:hover {
  color: var(--primary-deep);
  background: rgba(32, 84, 255, 0.1);
}

.sidebar-card .button,
.sidebar-card .button-secondary,
.sidebar-card .button-tertiary {
  margin-top: 0.8rem;
}

.quiz-card [data-quiz-submit] {
  margin-top: 0.8rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(24, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.footer {
  padding: 4rem 0 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 127, 92, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(17, 33, 67, 0.97), rgba(14, 25, 50, 1));
  color: white;
}

.footer h3,
.footer .brand-copy,
.footer a {
  color: white;
}

.footer .brand-copy small,
.footer .muted,
.legal-note {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a {
  color: var(--text);
}

.sidebar-card .footer-links a,
.related-reading .footer-links a {
  color: var(--text);
  background: rgba(32, 84, 255, 0.05);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  font-weight: 700;
}

.sidebar-card .footer-links a:hover,
.related-reading .footer-links a:hover {
  color: var(--primary-deep);
  background: rgba(32, 84, 255, 0.1);
}

.footer .footer-links a {
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  padding: 0.6rem 0.85rem;
  border-radius: 16px;
  font-weight: 700;
}

.footer-grid {
  gap: 1.5rem;
}

.footer-brand {
  max-width: 420px;
}

.legal-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.card:hover,
.content-card:hover,
.comparison-card:hover,
.destination-card:hover,
.hero-panel:hover,
.hero-mini-card:hover,
.feature-panel:hover,
.newsletter:hover,
.contact-card:hover,
.quiz-card:hover,
.sidebar-card:hover,
.review-note:hover,
.related-reading:hover,
.callout:hover,
.table-shell:hover,
.toc:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(18, 31, 63, 0.14);
  border-color: rgba(32, 84, 255, 0.14);
}

.content-card:hover .media-thumb img,
.comparison-card:hover .media-thumb img,
.destination-card:hover .media-thumb img,
.hero-panel:hover img,
.hero-mini-card:hover img,
.feature-panel:hover img,
.article-hero-media:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.content-card h3,
.comparison-card h3,
.destination-card h3,
.card h3 {
  transition: transform var(--motion-smooth), color var(--motion-smooth);
}

.content-card:hover h3,
.comparison-card:hover h3,
.destination-card:hover h3,
.card:hover h3 {
  transform: translateY(-1px);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stickerFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (hover: none) {
  .card:active,
  .content-card:active,
  .comparison-card:active,
  .destination-card:active,
  .hero-panel:active,
  .hero-mini-card:active,
  .feature-panel:active {
    transform: translateY(-2px) scale(0.995);
  }

  .content-card:active .media-thumb img,
  .comparison-card:active .media-thumb img,
  .destination-card:active .media-thumb img,
  .hero-panel:active img,
  .hero-mini-card:active img,
  .feature-panel:active img,
  .article-hero-media:active img {
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.desktop-only {
  display: none !important;
}

@media (min-width: 760px) {
  .card-grid,
  .feature-grid,
  .guide-grid,
  .scenario-grid,
  .destination-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-band-grid,
  .strip-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pros-cons,
  .feature-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .site-header {
    padding-inline: 0.75rem;
  }

  .header-inner {
    padding-inline: 0.9rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-links,
  .nav-secondary {
    display: flex;
    align-items: center;
  }

  .nav-panel {
    gap: 0.7rem;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    min-width: 280px;
    padding: 0.55rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(24, 32, 51, 0.08);
    box-shadow: var(--shadow-lg);
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    gap: 0.25rem;
  }

  .nav-dropdown-link:hover,
  .nav-dropdown-trigger:hover {
    background: rgba(32, 84, 255, 0.06);
  }

  .nav-secondary {
    gap: 0.7rem;
    margin-left: 0.9rem;
    padding-left: 0.9rem;
    border-left: 1px solid rgba(24, 32, 51, 0.08);
  }

  .nav-link {
    min-height: 40px;
    padding: 0.55rem 0.8rem;
    font-size: 0.95rem;
  }

  .button-tertiary {
    min-height: 44px;
    padding: 0.72rem 1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  }

  .card-grid,
  .guide-grid,
  .destination-grid,
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .desktop-only {
    display: block !important;
  }

  .article-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: start;
  }

  .quick-answer,
  .review-note,
  .article-content {
    grid-column: 1;
  }

  .toc {
    grid-column: 2;
    grid-row: 1 / span 3;
    position: sticky;
    top: 110px;
  }

  .sticky-cta {
    display: block;
    position: sticky;
    top: 110px;
  }
}

@media (max-width: 979px) {
  .nav-secondary {
    border-top: 1px solid rgba(24, 32, 51, 0.08);
    padding-top: 0.9rem;
  }

  .nav-links {
    display: grid;
  }

  .nav-dropdown-menu {
    display: none;
    margin-top: 0.4rem;
    padding-top: 0.3rem;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .language-menu {
    position: static;
    display: none;
    margin-top: 0.6rem;
    min-width: 0;
    box-shadow: none;
    background: rgba(32, 84, 255, 0.04);
  }

  .language-switcher.is-open .language-menu {
    display: grid;
  }
}

@media (max-width: 759px) {
  .container {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .section {
    padding: 3.2rem 0;
  }

  .site-header {
    padding-top: 0.6rem;
  }

  .header-inner {
    border-radius: 28px;
  }

  .nav-toggle {
    min-width: 58px;
    height: 58px;
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy h1,
  .article-header h1,
  .section-heading h1,
  .section-heading h2 {
    max-width: 13ch;
  }

  .hero-stage {
    min-height: 0;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .floating-sticker {
    width: 76px;
  }

  .article-header,
  .card,
  .content-card,
  .comparison-card,
  .destination-card,
  .newsletter,
  .contact-card,
  .quiz-card,
  .sidebar-card,
  .review-note,
  .callout,
  .toc,
  .table-shell {
    padding: 0.95rem;
  }

  .media-thumb {
    width: calc(100% + 1.9rem);
    margin: -0.95rem -0.95rem 0.85rem;
    max-height: 200px;
  }

  .article-hero-media {
    aspect-ratio: 16 / 10;
    max-height: 260px;
  }
}

.header-note {
  display: inline-flex;
  align-items: center;
  max-width: 14rem;
  min-height: auto;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(32, 84, 255, 0.06);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.hub-mini-grid {
  display: grid;
  gap: 0.85rem;
}

.hub-mini-image {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1480px) and (min-width: 980px) {
  .nav-secondary {
    display: none !important;
  }
}
