:root {
  --ink: #16201d;
  --muted: #5d6a65;
  --paper: #f7f4ee;
  --paper-strong: #fffaf1;
  --line: #d9ddd2;
  --teal: #0f766e;
  --teal-dark: #09453f;
  --coral: #cf5f45;
  --gold: #d49b32;
  --green-soft: #dceadf;
  --sky-soft: #d7eef0;
  --shadow: 0 18px 48px rgba(20, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 60px);
  border-bottom: 1px solid rgba(22, 32, 29, 0.1);
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.hero-actions,
.trust-strip,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(22, 32, 29, 0.9);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: inset 0 -8px 0 var(--green-soft);
}

.brand-mark::before {
  content: "T";
  color: var(--teal);
  font-size: 1rem;
  font-weight: 860;
  line-height: 1;
}

.site-nav {
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 720;
  white-space: nowrap;
}

.header-action,
.primary-button {
  color: #fffdf5;
  background: var(--teal);
}

.header-action:hover,
.primary-button:hover {
  background: var(--teal-dark);
}

.secondary-button {
  color: var(--ink);
  border-color: rgba(22, 32, 29, 0.22);
  background: rgba(255, 250, 241, 0.72);
}

.secondary-button:hover {
  border-color: rgba(22, 32, 29, 0.5);
}

.hero {
  position: relative;
  min-height: clamp(500px, 62svh, 600px);
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("./assets/global-data-routes.png");
  background-position: center;
  background-size: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 20, 18, 0.74), rgba(9, 20, 18, 0.18) 62%, rgba(9, 20, 18, 0.1)),
    linear-gradient(0deg, rgba(247, 244, 238, 0.1), rgba(247, 244, 238, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  padding: clamp(48px, 7vw, 76px) 0 clamp(18px, 3vw, 34px);
  margin-left: clamp(18px, 7vw, 94px);
  color: #fffdf5;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd08c;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  font-size: clamp(3rem, 7vw, 5.35rem);
  line-height: 0.95;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 253, 245, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.62;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 253, 245, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.1);
  color: rgba(255, 253, 245, 0.9);
  font-size: 0.86rem;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(22, 32, 29, 0.1);
  border-bottom: 1px solid rgba(22, 32, 29, 0.1);
  background: var(--paper-strong);
}

.quick-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px;
}

.quick-strip div + div {
  border-left: 1px solid rgba(22, 32, 29, 0.1);
}

.quick-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.quick-strip strong {
  color: var(--teal-dark);
  font-size: 1.3rem;
}

.section {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 60px);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.section-heading p:not(.eyebrow),
.split-section p,
.contact-section p,
.snapshot-teaser p,
.partner-teaser p {
  color: var(--muted);
  line-height: 1.7;
}

.section-plans {
  background: #fbf8f0;
}

.featured-deals {
  background: #fffaf1;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.deal-card {
  display: grid;
  gap: 12px;
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(22, 32, 29, 0.12);
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: 0 10px 28px rgba(22, 32, 29, 0.06);
}

.deal-card.highlight {
  border-color: rgba(15, 118, 110, 0.32);
  background: linear-gradient(180deg, #fffdf7, #eef7ef);
}

.deal-kicker {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--sky-soft);
  font-size: 0.74rem;
  font-weight: 820;
}

.deal-card h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.deal-card p {
  margin: 0;
  color: var(--muted);
}

.deal-card strong {
  color: var(--teal-dark);
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 0.95;
}

.plan-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 20px;
}

.catalog-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(420px, 100%);
  margin: 0 auto 18px;
  padding: 4px;
  border: 1px solid rgba(22, 32, 29, 0.14);
  border-radius: 8px;
  background: #fffdf7;
}

.catalog-tab {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 760;
}

.catalog-tab.active {
  color: #fffdf5;
  background: var(--teal);
}

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(22, 32, 29, 0.16);
  border-radius: 999px;
  color: var(--muted);
  background: #fffdf7;
  cursor: pointer;
}

.filter-button.active {
  color: #fffdf5;
  border-color: var(--teal);
  background: var(--teal);
}

.plan-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto 24px;
}

.search-box {
  display: grid;
  gap: 8px;
  width: min(420px, 100%);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.search-box input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(22, 32, 29, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: #fffdf7;
  outline: none;
}

.search-box input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.plan-count {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 0.92rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto 24px;
}

.destination-card {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(22, 32, 29, 0.14);
  border-radius: 8px;
  color: var(--ink);
  text-align: left;
  background: #fffdf7;
  box-shadow: 0 8px 22px rgba(22, 32, 29, 0.05);
  cursor: pointer;
}

.destination-card:hover,
.destination-card.active {
  border-color: var(--teal);
  box-shadow: 0 14px 32px rgba(15, 118, 110, 0.14);
}

.destination-name {
  font-weight: 780;
}

.destination-badge {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--sky-soft);
  font-size: 0.72rem;
  font-weight: 820;
  line-height: 1;
}

.destination-card strong {
  color: var(--teal-dark);
  font-size: 1.22rem;
}

.destination-card small {
  color: var(--muted);
}

.plans-view {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.selected-destination,
.selected-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(22, 32, 29, 0.12);
  border-radius: 8px;
  background: var(--green-soft);
}

.selected-destination span,
.selected-plan span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.selected-destination strong,
.selected-plan strong {
  display: block;
  line-height: 1.35;
}

.selected-destination p {
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}

.back-button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(22, 32, 29, 0.16);
  border-radius: 8px;
  color: var(--teal-dark);
  background: #fffdf7;
  cursor: pointer;
  font-weight: 760;
  white-space: nowrap;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 14px;
  width: 100%;
  margin: 0;
}

.plan-card {
  display: grid;
  min-height: 286px;
  padding: 18px;
  border: 1px solid rgba(22, 32, 29, 0.12);
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: 0 10px 28px rgba(22, 32, 29, 0.06);
}

.on-request-card {
  max-width: 560px;
}

.plan-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.plan-card h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.tag {
  align-self: start;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--sky-soft);
  font-size: 0.76rem;
  font-weight: 760;
  white-space: nowrap;
}

.plan-meta {
  display: grid;
  gap: 7px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.plan-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  align-self: end;
}

.price {
  display: grid;
  gap: 2px;
}

.price span {
  color: var(--muted);
  font-size: 0.78rem;
}

.price strong {
  color: var(--teal-dark);
  font-size: 1.72rem;
}

.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(22, 32, 29, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: var(--green-soft);
  font-weight: 760;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px dashed rgba(22, 32, 29, 0.22);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 253, 247, 0.66);
}

.info-band {
  background: var(--green-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.steps article,
.policy-list article {
  padding: 22px;
  border: 1px solid rgba(22, 32, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
}

.steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--coral);
  font-weight: 820;
}

.steps h3,
.policy-list h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.steps p,
.policy-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  background: #fffaf1;
}

.policy-list {
  display: grid;
  gap: 12px;
}

.contact-section {
  text-align: center;
  background: var(--paper);
}

.order-template {
  width: min(680px, 100%);
  margin: 0 auto 18px;
  padding: 16px;
  border: 1px solid rgba(22, 32, 29, 0.12);
  border-radius: 8px;
  background: #fffdf7;
}

.order-template span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.order-template p {
  margin: 0;
}

.contact-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.snapshot-teaser,
.partner-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 5vw, 72px);
}

.snapshot-teaser {
  background: var(--green-soft);
}

.partner-teaser {
  background: #fffaf1;
}

.snapshot-teaser div,
.partner-teaser div {
  width: min(720px, 100%);
}

.content-page {
  background: var(--paper);
}

.page-hero {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 60px);
  background: #fffaf1;
}

.page-hero-inner {
  width: min(960px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.content-card,
.comparison-note,
.partner-rule,
.script-card {
  padding: 22px;
  border: 1px solid rgba(22, 32, 29, 0.12);
  border-radius: 8px;
  background: #fffdf7;
}

.content-card h3,
.partner-rule h3,
.script-card h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.content-card p,
.partner-rule p,
.script-card p,
.comparison-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.comparison-table-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid rgba(22, 32, 29, 0.12);
  border-radius: 8px;
  background: #fffdf7;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(22, 32, 29, 0.1);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--teal-dark);
  background: var(--green-soft);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table strong {
  color: var(--teal-dark);
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.source-list a {
  padding: 8px 10px;
  border: 1px solid rgba(22, 32, 29, 0.12);
  border-radius: 999px;
  color: var(--teal-dark);
  background: #fffdf7;
  font-size: 0.86rem;
  font-weight: 760;
}

.partner-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.script-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.script-card code {
  display: block;
  white-space: pre-wrap;
  color: var(--ink);
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 60px);
  border-top: 1px solid rgba(22, 32, 29, 0.12);
  color: var(--muted);
  background: #fffaf1;
  font-size: 0.92rem;
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.not-found div {
  width: min(560px, 100%);
}

.not-found h1 {
  color: var(--ink);
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 1;
}

.not-found p:not(.eyebrow) {
  margin: 18px 0 26px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
    min-height: auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: clamp(560px, 70svh, 680px);
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(9, 20, 18, 0.78), rgba(9, 20, 18, 0.38));
  }

  .hero-inner {
    width: min(620px, calc(100% - 36px));
    margin-left: 18px;
  }

  .quick-strip,
  .steps,
  .split-section,
  .deal-grid,
  .content-grid,
  .partner-rules,
  .script-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(22, 32, 29, 0.1);
  }

  .plan-toolbar {
    display: grid;
    align-items: start;
  }

  .plan-count {
    margin: 0;
  }

  .site-footer {
    display: grid;
  }

  .selected-destination,
  .selected-plan {
    display: grid;
  }

  .selected-destination p {
    white-space: normal;
  }

  .snapshot-teaser,
  .partner-teaser {
    display: grid;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 0.95rem;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  .hero-actions a,
  .contact-actions a {
    width: 100%;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-bottom {
    align-items: stretch;
  }
}
