:root {
  --bg: #f4f1ea;
  --bg-alt: #ebe5da;
  --surface: #fffdfa;
  --surface-alt: #f8f4ec;
  --ink: #132033;
  --ink-soft: #4f5d73;
  --line: rgba(19, 32, 51, 0.12);
  --line-strong: rgba(19, 32, 51, 0.18);
  --accent: #0f2036;
  --accent-soft: #c6922a;
  --accent-pale: #efe5cf;
  --shadow: 0 18px 50px rgba(27, 38, 59, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "SF Pro Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(244, 241, 234, 0.94)),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(19, 32, 51, 0.03) calc(100% - 1px)),
    var(--bg);
  background-size: auto, 48px 48px, auto;
}

.courier-body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(241, 238, 231, 0.96)),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(15, 32, 54, 0.035) calc(100% - 1px)),
    #f1eee7;
  background-size: auto, 48px 48px, auto;
}

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

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

.page-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.hero-copy,
.hero-panel,
.section-heading,
.market-copy,
.reference-board,
.topnav,
.brand-copy,
.panel-card,
.story-card,
.model-card,
.ticket-card,
.invest-note,
.roadmap-line article,
.cta-box,
.hero-panel-head > div {
  min-width: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 250, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo,
.hero-panel-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand-copy span,
.hero-panel-head span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.topnav a {
  position: relative;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--accent-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.topnav a:hover::after {
  transform: scaleX(1);
}

.hero,
.section,
.cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.9fr);
  gap: 28px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.courier-hero::before {
  background: linear-gradient(90deg, #0f2036, #c6922a, #0f2036);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-mini-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-mini-brand span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h1,
h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--accent);
}

h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.hero-text,
.market-copy p,
.story-card p,
.model-card p,
.ticket-card p,
.roadmap-line p,
.invest-note li,
.invest-note p,
.cta-box p,
.panel-card p,
.hero-metrics p {
  color: var(--ink-soft);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 34px;
}

.language-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-button {
  min-height: 38px;
  padding: 0 14px;
  max-width: 100%;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.language-button:hover {
  transform: translateY(-1px);
  color: var(--accent);
}

.language-button.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 16px rgba(15, 32, 54, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  max-width: 100%;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(15, 32, 54, 0.16);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: var(--surface-alt);
  color: var(--accent);
}

.hero-metrics,
.hero-panel-grid,
.story-grid,
.proof-strip,
.model-grid,
.ticket-grid {
  display: grid;
  gap: 16px;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.proof-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fffdfa, #f3ecdf);
}

.proof-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.proof-card img {
  aspect-ratio: 16 / 10;
}

.proof-copy {
  display: grid;
  gap: 4px;
  padding: 14px 16px 16px;
}

.proof-copy strong {
  color: var(--accent);
  font-size: 0.98rem;
}

.proof-copy span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.proof-card-blueprint img {
  object-fit: contain;
  padding: 10px;
  background: #f7f1e6;
}

.hero-metrics article,
.panel-card,
.story-card,
.reference-board article,
.model-card,
.ticket-card,
.invest-note,
.roadmap-line article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-alt);
}

.hero-metrics article {
  padding: 20px;
}

.hero-metrics span,
.projection-strip span,
.ticket-card span,
.roadmap-line span,
.card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: var(--accent);
}

.hero-metrics p {
  margin-bottom: 0;
}

.hero-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(239, 229, 207, 0.65), rgba(255, 253, 250, 0.96)),
    var(--surface);
}

.courier-panel {
  background:
    linear-gradient(180deg, rgba(241, 232, 208, 0.72), rgba(255, 253, 250, 0.96)),
    var(--surface);
}

.hero-panel-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.hero-panel-head strong {
  display: block;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.hero-visual-stack {
  margin-top: 18px;
}

.hero-visual-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.hero-panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-card {
  min-height: 208px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.panel-card-accent {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(15, 32, 54, 0.98), rgba(37, 59, 92, 0.92));
  border-color: transparent;
}

.panel-card-accent .card-kicker,
.panel-card-accent h2,
.panel-card-accent p {
  color: #fff;
}

.panel-card-accent .card-kicker {
  color: rgba(255, 214, 145, 0.92);
}

.panel-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 2.9vw, 2.6rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.panel-card p {
  margin-bottom: 0;
}

.section {
  margin-top: 24px;
  padding: 32px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-note {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fffdfa, #f4eee4);
}

.section-note-art {
  width: 100%;
  max-width: 112px;
  border-radius: 18px;
}

.section-note p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

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

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fffdfa, #f5efe5);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.visual-copy {
  padding: 18px 20px 20px;
}

.visual-copy h3 {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 1.18rem;
}

.visual-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.origin-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  margin-top: 24px;
}

.origin-story-card,
.origin-media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fffdfa, #f4eee3);
}

.origin-story-card {
  padding: 24px;
}

.origin-story-card h3 {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 1.4rem;
}

.origin-story-card p {
  color: var(--ink-soft);
  line-height: 1.66;
}

.origin-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.origin-media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.origin-media-card {
  min-height: 210px;
}

.origin-media-card-tall {
  grid-row: span 2;
  min-height: 436px;
}

.story-card,
.model-card,
.ticket-card,
.roadmap-line article,
.reference-board article {
  padding: 22px;
}

.story-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--accent-pale);
  color: var(--accent);
  font-weight: 700;
}

.story-card h3,
.reference-board h3,
.model-card h3,
.ticket-card h3,
.invest-note h3,
.roadmap-line h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  color: var(--accent);
}

.market-layout,
.invest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.reference-board {
  display: grid;
  gap: 14px;
}

.reference-board article {
  background: linear-gradient(180deg, #fff, #f8f4ec);
}

.model-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.projection-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.projection-strip div {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #f7f3ea;
}

.projection-strip strong {
  display: block;
  color: var(--accent);
  font-size: 1.06rem;
}

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

.ticket-card {
  background: linear-gradient(180deg, #fffdfa, #f4efe5);
}

.courier-body .ticket-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.92rem;
}

.ticket-card span {
  font-size: 1rem;
}

.invest-note {
  padding: 22px;
  background: linear-gradient(180deg, rgba(15, 32, 54, 0.98), rgba(26, 44, 69, 0.96));
  color: #fff;
}

.invest-note h3,
.invest-note li,
.invest-note p {
  color: rgba(255, 255, 255, 0.88);
}

.invest-note h3 {
  color: #fff;
}

.invest-note ul {
  padding-left: 18px;
  margin: 0 0 18px;
}

.invest-disclaimer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.roadmap-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.roadmap-line article {
  position: relative;
  padding-top: 28px;
}

.roadmap-line article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.cta {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cta-box {
  padding: 38px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(15, 32, 54, 0.98), rgba(15, 32, 54, 0.92)),
    var(--accent);
  color: #fff;
}

.cta-box .eyebrow,
.cta-box h2,
.cta-box p {
  color: #fff;
}

.cta-box .eyebrow {
  color: rgba(255, 214, 145, 0.92);
}

.cta-box h2 {
  max-width: 15ch;
  margin: 0 auto 16px;
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
}

.cta-box p {
  max-width: 760px;
  margin: 0 auto 24px;
}

.cta-whatsapp {
  margin-top: 4px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.source-note {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .hero,
  .market-layout,
  .invest-layout {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .story-grid,
  .visual-grid,
  .proof-strip,
  .model-grid,
  .ticket-grid,
  .roadmap-line,
  .projection-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .origin-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1240px);
    padding-top: 10px;
  }

  .topbar,
  .hero,
  .section,
  .cta-box,
  .hero-panel {
    padding: 20px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: 100%;
  }

  .topnav {
    width: 100%;
  }

  .topnav,
  .hero-actions,
  .language-switch,
  .hero-mini-brand {
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-box .button {
    width: 100%;
  }

  .language-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    border-radius: 24px;
  }

  .language-button {
    width: 100%;
    min-width: 0;
    white-space: normal;
    line-height: 1.2;
    padding: 10px 12px;
  }

  .hero-panel-head {
    align-items: flex-start;
  }

  .hero-panel-grid,
  .hero-metrics,
  .story-grid,
  .visual-grid,
  .proof-strip,
  .model-grid,
  .ticket-grid,
  .roadmap-line,
  .projection-strip {
    grid-template-columns: 1fr;
  }

  .panel-card-accent {
    grid-column: span 1;
  }

  .section-note {
    grid-template-columns: 1fr;
  }

  .origin-media-grid {
    grid-template-columns: 1fr;
  }

  .origin-media-card-tall {
    grid-row: span 1;
    min-height: 260px;
  }

  .section-note-art {
    max-width: 96px;
  }

  h1,
  .section-heading h2,
  .cta-box h2 {
    max-width: none;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
    overflow-wrap: anywhere;
  }

  h2,
  h3,
  p,
  a,
  span,
  strong {
    overflow-wrap: anywhere;
  }
}
