:root {
  --ink: #11222c;
  --muted: #5b6872;
  --paper: #fbf3e8;
  --paper-strong: #f1e5d5;
  --card: rgba(255, 251, 245, 0.8);
  --line: rgba(17, 34, 44, 0.1);
  --accent: #e36a2f;
  --teal: #1f7064;
  --gold: #b98e4b;
  --shadow: 0 28px 70px rgba(17, 27, 36, 0.1);
  --section-space: 24px;
  --grid-space: 20px;
  --cluster-space: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(227, 106, 47, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(31, 112, 100, 0.14), transparent 28%),
    linear-gradient(180deg, #fff9ef 0%, #f4ecdf 56%, #eadfce 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-feature-settings: "liga" 0, "calt" 0;
  font-variant-ligatures: none;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.topbar,
.hero,
.section-grid,
.contact-card,
.trust-band {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 30px;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(227, 106, 47, 0.22), transparent 35%),
    linear-gradient(145deg, #11222c 0%, #244050 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
}

.brand-name,
.hero h1,
.hero-panel h2,
.section-intro h2,
.contact-card h2,
.trust-card h3 {
  font-family: "Fraunces", Georgia, serif;
}

.brand-name {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.brand-subtitle {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  margin-top: var(--section-space);
  padding: 34px;
  border-radius: 38px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 34, 44, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 34, 44, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent);
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow,
.panel-eyebrow,
.point-label,
.timeline-label,
.trust-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.eyebrow,
.panel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}

.eyebrow::before,
.panel-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 0 0 5px rgba(227, 106, 47, 0.1);
}

.signal-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  line-height: 1.8;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 10.2ch;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.82;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.primary-cta {
  background: var(--accent);
  color: white;
  box-shadow: 0 18px 36px rgba(227, 106, 47, 0.24);
}

.secondary-cta {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 22px;
  margin-top: 52px;
}

.point-card,
.info-card,
.timeline-card,
.boundaries-card,
.trust-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  padding: 22px;
}

.point-card {
  padding: 24px 26px 26px;
}

.point-label,
.timeline-label,
.trust-label {
  color: var(--teal);
}

.point-card p:last-child,
.info-card p,
.timeline-card p:last-child,
.boundaries-card li,
.contact-card p,
.trust-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-panel {
  border-radius: 34px;
  padding: 24px;
  color: white;
  background:
    radial-gradient(circle at top left, rgba(227, 106, 47, 0.18), transparent 30%),
    linear-gradient(145deg, #11222c 0%, #214555 100%);
}

.hero-panel h2 {
  margin: 14px 0 18px;
  font-size: 2.9rem;
  line-height: 1;
}

.hero-panel ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.panel-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.trust-band,
.section-grid,
.contact-card {
  margin-top: var(--section-space);
  border-radius: 34px;
  padding: 30px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-space);
}

.resource-grid,
.logo-grid,
.swatch-grid {
  display: grid;
  gap: var(--grid-space);
  margin-top: 28px;
}

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

.logo-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

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

.resource-card,
.logo-card,
.swatch-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.resource-icon,
.motif-icon {
  display: block;
  width: 64px;
  height: 64px;
}

.resource-icon {
  margin-bottom: 14px;
}

.resource-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.resource-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.logo-card img {
  display: block;
  width: 100%;
  margin-top: 16px;
}

.logo-card-dark {
  background: linear-gradient(145deg, #11222c 0%, #214555 100%);
}

.logo-card-dark .trust-label {
  color: rgba(255, 255, 255, 0.72);
}

.swatch {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  border-radius: 18px;
  margin-bottom: 14px;
}

.swatch-card p:last-child {
  color: var(--muted);
  margin: 6px 0 0;
}

.motif-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.motif-card,
.notice-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  padding: 20px;
}

.motif-card h3,
.notice-card h3 {
  margin: 14px 0 10px;
  font-size: 1.35rem;
  font-family: "Fraunces", Georgia, serif;
}

.motif-card p,
.notice-card p {
  color: var(--muted);
  line-height: 1.8;
}

.notice-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(251, 243, 232, 0.82));
}

.body-copy {
  color: var(--muted);
  line-height: 1.8;
  max-width: 42rem;
}

.trust-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(252, 246, 238, 0.72));
}

.trust-card h3 {
  margin: 12px 0 10px;
  font-size: 1.5rem;
  line-height: 1.08;
}

.section-intro h2,
.contact-card h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.card-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-space);
  margin-top: 28px;
}

.info-card h3,
.timeline-card h3 {
  margin: 10px 0 8px;
  font-size: 1.3rem;
}

.boundaries-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.contact-card a {
  color: var(--teal);
  font-weight: 700;
}

.contact-card > p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 46rem;
}

.offer-hero h1 {
  max-width: 11ch;
}

.signature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  margin-top: 24px;
}

.signature-preview,
.signature-card {
  border-radius: 24px;
}

.signature-preview {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 20px;
}

.signature-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  margin-top: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
}

.signature-logo img {
  width: 72px;
  height: 72px;
}

.signature-name,
.signature-role,
.signature-brand,
.signature-copy,
.signature-links {
  margin: 0;
}

.signature-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}

.signature-role,
.signature-copy {
  color: var(--muted);
  line-height: 1.7;
}

.signature-brand {
  margin-top: 6px;
  font-weight: 700;
}

.signature-links {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--teal);
  font-weight: 700;
}

.signature-code {
  margin: 10px 0 0;
  border-radius: 18px;
  background: #11222c;
  color: #f6efe4;
  padding: 18px;
  overflow: auto;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: var(--section-space);
  padding: 0 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 52rem;
  }

  .signal-grid,
  .trust-band,
  .logo-grid,
  .swatch-grid,
  .signature-layout,
  .motif-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid {
    max-width: 42rem;
    margin-top: 56px;
  }
}

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

  .topbar,
  .hero,
  .section-grid,
  .contact-card,
  .trust-band {
    border-radius: 24px;
  }

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

  .brand-lockup {
    align-items: flex-start;
  }

  .card-grid,
  .timeline,
  .signal-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .section-grid,
  .contact-card,
  .trust-band {
    padding: 24px;
  }

  .footer {
    flex-direction: column;
  }
}
