@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

:root {
  --ink: #0c362e;
  --ink-2: #164f42;
  --moss: #6b984a;
  --cream: #eaf3df;
  --paper: #f7f8ef;
  --gold: #e9a334;
  --white: #ffffff;
  --muted: #5d6e67;
  --line: rgba(12, 54, 46, 0.16);
  --shadow: 0 24px 70px rgba(12, 54, 46, 0.12);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 32px));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3rem, 8vw, 6.6rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.4rem); }
h3 { font-size: clamp(1.45rem, 2vw, 2rem); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 130px) 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--moss);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Domain sale banner */
.domain-sale-banner {
  position: relative;
  z-index: 9999;
  width: 100%;
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 50%, rgba(233, 163, 52, 0.32), transparent 34%),
    linear-gradient(100deg, #082d27 0%, #0c362e 58%, #174f42 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  font-family: Arial, Helvetica, sans-serif;
}
.domain-sale-banner__content {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.domain-sale-banner__text { display: grid; gap: 4px; line-height: 1.35; }
.domain-sale-banner__text strong { font-size: clamp(1rem, 2vw, 1.2rem); letter-spacing: -0.01em; }
.domain-sale-banner__text span { color: rgba(255, 255, 255, 0.74); font-size: 0.92rem; }
.domain-sale-banner__button {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 0 20px; color: #0c362e; background: #f1b64d;
  border: 1px solid #ffd276; border-radius: 999px; box-shadow: 0 8px 20px rgba(0,0,0,.2);
  font-size: 0.94rem; font-weight: 800; text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.domain-sale-banner__button:hover,
.domain-sale-banner__button:focus-visible {
  background: #ffd06d; box-shadow: 0 10px 26px rgba(0,0,0,.28);
  transform: translateY(-2px); outline: none;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(247, 248, 239, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.22rem; letter-spacing: -.03em; }
.brand img { width: 46px; height: 46px; }
.brand b { color: var(--ink); }
.menu-toggle { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); display: grid; place-content: center; gap: 5px; }
.menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--ink); }
.primary-nav {
  position: absolute; inset: 82px 16px auto;
  padding: 18px; display: none; gap: 8px;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow);
}
.primary-nav.is-open { display: grid; }
.primary-nav a { padding: 12px 14px; text-decoration: none; font-weight: 700; border-radius: 12px; }
.primary-nav a:hover { background: var(--cream); }
.primary-nav .nav-cta { background: var(--ink); color: var(--white); text-align: center; }

/* Hero */
.hero {
  overflow: hidden;
  padding: clamp(58px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(233,163,52,.15), transparent 28%),
    linear-gradient(180deg, #f7f8ef 0%, #edf3e4 100%);
}
.hero-grid { display: grid; gap: 54px; align-items: center; }
.hero-copy h1 { max-width: 930px; margin-bottom: 26px; }
.hero-lede { max-width: 650px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 42px; }
.button {
  min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: 999px; font-weight: 800; text-decoration: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--ink); color: var(--white); box-shadow: 0 14px 30px rgba(12,54,46,.2); }
.button--ghost { border-color: var(--line); background: rgba(255,255,255,.6); }
.button--light { background: var(--cream); color: var(--ink); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; }
.hero-stats div { padding-top: 14px; border-top: 1px solid var(--line); }
.hero-stats dt { color: var(--gold); font-weight: 800; }
.hero-stats dd { margin: 4px 0 0; color: var(--muted); font-size: .9rem; }
.hero-visual { position: relative; margin: 0; }
.hero-visual::before {
  content: ""; position: absolute; inset: -18px 18px 18px -18px;
  border: 1px solid rgba(12,54,46,.2); border-radius: var(--radius); transform: rotate(-2deg);
}
.hero-visual img { position: relative; aspect-ratio: 9/6; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-visual figcaption {
  position: relative; width: min(82%, 420px); margin: -54px 18px 0 auto; padding: 18px 20px;
  display: grid; gap: 3px; background: var(--white); border-radius: 18px; box-shadow: var(--shadow);
}
.hero-visual figcaption span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.ticker { overflow: hidden; padding: 16px 0; background: var(--ink); color: var(--cream); }
.ticker-track { width: max-content; display: flex; gap: 24px; align-items: center; padding-inline: 16px; font-weight: 700; }
.ticker-track i { color: var(--gold); font-style: normal; font-size: .55rem; }

.section-heading { display: grid; gap: 22px; margin-bottom: 48px; }
.section-heading h2 { max-width: 820px; margin-bottom: 0; }
.section-heading > p { max-width: 520px; color: var(--muted); }

.solution-grid { display: grid; gap: 16px; }
.solution-card {
  min-height: 310px; padding: 28px; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
}
.solution-card--wide { background: var(--ink); color: var(--white); }
.card-number { margin-bottom: auto; color: var(--gold); font-weight: 800; }
.solution-card p { color: var(--muted); }
.solution-card--wide p { color: rgba(255,255,255,.7); }
.solution-card a { margin-top: 18px; color: var(--gold); font-weight: 800; text-decoration: none; }

.process-section { background: var(--cream); }
.process-grid { display: grid; gap: 46px; }
.process-intro p:last-child { color: var(--muted); font-size: 1.06rem; }
.process-list { margin: 0; padding: 0; list-style: none; display: grid; }
.process-list li {
  padding: 24px 0; display: grid; grid-template-columns: 54px 1fr; gap: 18px;
  border-top: 1px solid rgba(12,54,46,.18);
}
.process-list li > span { color: var(--gold); font-weight: 800; }
.process-list h3 { margin-bottom: 6px; }
.process-list p { margin-bottom: 0; color: var(--muted); }

.insight-card { padding: clamp(30px, 6vw, 70px); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.readiness-grid { display: grid; gap: 10px; margin-top: 34px; }
.readiness-grid span {
  padding: 15px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-weight: 700;
}
.cta-section { padding-top: 0; }
.cta-panel {
  padding: clamp(40px, 8vw, 90px); background: var(--ink); color: var(--white);
  border-radius: var(--radius); text-align: center;
  background-image: radial-gradient(circle at 80% 20%, rgba(233,163,52,.25), transparent 30%);
}
.cta-panel h2 { max-width: 850px; margin-inline: auto; }
.cta-panel .eyebrow { color: #efbc65; }

.page-hero { padding: clamp(70px, 10vw, 140px) 0; background: var(--cream); }
.page-hero-grid { display: grid; gap: 36px; align-items: end; }
.page-hero h1 { max-width: 900px; margin-bottom: 0; }
.page-hero-grid > p { max-width: 520px; color: var(--muted); font-size: 1.12rem; }
.page-hero--contact { background: linear-gradient(135deg, #eaf3df, #f6e4bd); }

.editorial-grid { display: grid; gap: 48px; }
.editorial-main { max-width: 760px; font-size: 1.1rem; }
.editorial-main .drop-cap::first-letter {
  float: left; margin: 8px 12px 0 0; color: var(--gold); font-family: "Fraunces", serif; font-size: 5rem; line-height: .7;
}
.editorial-main h2 { margin-top: 56px; }
.editorial-aside { align-self: start; padding: 30px; background: var(--ink); color: var(--white); border-radius: 24px; }
.aside-label { color: var(--gold); font-size: .76rem; letter-spacing: .15em; text-transform: uppercase; }
blockquote { margin: 20px 0 0; font-family: "Fraunces", serif; font-size: 2rem; line-height: 1.15; }

.values-section { background: var(--cream); }
.values-grid { display: grid; gap: 16px; }
.values-grid article { min-height: 290px; padding: 28px; background: var(--paper); border-radius: 24px; }
.values-grid article span { color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }
.values-grid article h3 { margin-top: 60px; }
.values-grid article p { color: var(--muted); }

.map-panel { display: grid; gap: 38px; }
.chain { display: grid; gap: 12px; }
.chain div { padding: 22px; display: grid; gap: 6px; border-left: 5px solid var(--gold); background: var(--white); }
.chain span { color: var(--muted); }

.contact-grid { display: grid; gap: 38px; }
.contact-sidebar ul { padding-left: 20px; color: var(--muted); }
.contact-sidebar li { margin-bottom: 10px; }
.contact-note { margin-top: 34px; padding: 24px; background: var(--cream); border-radius: 20px; }
.contact-note p { margin-bottom: 8px; color: var(--muted); }
.contact-note a { color: var(--ink); font-weight: 800; }
.project-form { padding: clamp(24px, 5vw, 50px); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-heading { margin-bottom: 28px; }
.form-heading span { color: var(--moss); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }
.form-heading h2 { margin: 8px 0 0; font-size: clamp(2rem, 4vw, 3.4rem); }
.field-grid { display: grid; gap: 18px; }
.project-form label { display: grid; gap: 8px; margin-bottom: 18px; font-weight: 700; }
.project-form input,
.project-form select,
.project-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; background: var(--paper);
  padding: 14px 15px; color: var(--ink); outline: none;
}
.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus { border-color: var(--moss); box-shadow: 0 0 0 4px rgba(107,152,74,.13); }
.check-row { grid-template-columns: auto 1fr; align-items: start; font-weight: 500 !important; }
.check-row input { width: 20px; height: 20px; margin-top: 2px; }
.form-submit { width: 100%; border: 0; }
.form-status { margin: 12px 0 0; color: var(--moss); font-weight: 700; }

.site-footer { padding: 70px 0 24px; background: #082d27; color: var(--white); }
.footer-grid { display: grid; gap: 38px; }
.brand--footer { color: var(--white); }
.footer-grid p { max-width: 360px; color: rgba(255,255,255,.65); }
.footer-grid h2 { font-family: "DM Sans", sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); }
.footer-grid div:not(:first-child) { display: grid; align-content: start; gap: 10px; }
.footer-grid a { text-decoration: none; }
.footer-grid span { color: rgba(255,255,255,.65); }
.footer-bottom {
  margin-top: 50px; padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.6); font-size: .88rem;
}

@media (max-width: 680px) {
  .domain-sale-banner__content { min-height: auto; padding: 14px 0; align-items: stretch; flex-direction: column; gap: 12px; }
  .domain-sale-banner__button { width: 100%; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.4rem); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div { display: grid; grid-template-columns: 44px 1fr; align-items: center; }
  .hero-stats dd { margin: 0; }
}

@media (min-width: 760px) {
  .section-heading { grid-template-columns: 1.4fr .6fr; align-items: end; }
  .solution-grid { grid-template-columns: 1.15fr .85fr; }
  .solution-card--wide { grid-row: span 2; min-height: 636px; }
  .process-grid { grid-template-columns: .85fr 1.15fr; }
  .readiness-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-grid { grid-template-columns: 1.35fr .65fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .field-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; }
}

@media (min-width: 960px) {
  .menu-toggle { display: none; }
  .primary-nav { position: static; padding: 0; display: flex; align-items: center; background: transparent; border: 0; box-shadow: none; }
  .primary-nav a { padding: 10px 13px; }
  .primary-nav .nav-cta { padding-inline: 20px; }
  .hero-grid { grid-template-columns: 1.02fr .98fr; }
  .hero-copy h1 { font-size: clamp(4rem, 6.4vw, 6.6rem); }
  .editorial-grid { grid-template-columns: 1.4fr .6fr; }
  .map-panel { grid-template-columns: .8fr 1.2fr; }
  .contact-grid { grid-template-columns: .65fr 1.35fr; align-items: start; }
}

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