:root {
  --bg: #f7faf8;
  --bg-soft: #eef5f1;
  --surface: #ffffff;
  --surface-2: #e8f2ed;
  --forest: #14211d;
  --green: #2f9471;
  --mint: #69c9aa;
  --text: #14211d;
  --muted: #64736d;
  --line: rgba(20,33,29,.12);
  --dark-line: rgba(255,255,255,.14);
  --max: 1180px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 28px 70px rgba(20,33,29,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header,
.hero,
.brand-band,
.intro,
.feature-rail,
.towns,
.closing,
footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; width: 255px; max-width: 46vw; height: auto; }

.header-actions { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 14px; }
.header-actions a:hover { color: var(--forest); }
.language-toggle {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
  color: var(--forest);
  border-radius: 999px;
  min-width: 46px;
  min-height: 36px;
  cursor: pointer;
  font: inherit;
  font-weight: 650;
}
.language-toggle:hover { border-color: rgba(20,33,29,.28); }

.hero {
  min-height: 730px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 54px;
  padding: 72px 0 92px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 5% 48% 10% -18%;
  background: radial-gradient(circle at 50% 50%, rgba(105,201,170,.18), rgba(105,201,170,0) 72%);
}
.hero-copy { max-width: 650px; }
.launch-note {
  margin: 0 0 24px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: 13px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(58px, 7vw, 104px);
  line-height: .94;
  letter-spacing: -.06em;
  margin-bottom: 28px;
  max-width: 700px;
  color: var(--forest);
}
.hero-summary {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
  margin-bottom: 34px;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #395047;
  font-size: 14px;
  font-weight: 650;
}
.hero-status img { width: 34px; height: 34px; border-radius: 10px; box-shadow: 0 8px 20px rgba(20,33,29,.16); }

.phone-stage { display: flex; justify-content: center; position: relative; min-height: 600px; align-items: center; }
.phone-stage::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105,201,170,.26), rgba(105,201,170,0) 68%);
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.stage-mark {
  position: absolute;
  width: 420px;
  max-width: 92%;
  opacity: .08;
  transform: translate(65px,-55px) rotate(-7deg);
  filter: saturate(.85);
}
.phone-shell {
  width: min(340px, 78vw);
  aspect-ratio: 9 / 18.5;
  padding: 10px;
  border-radius: 48px;
  background: #08100d;
  border: 1px solid rgba(20,33,29,.12);
  box-shadow: var(--shadow);
  position: relative;
  transform: rotate(3deg);
}
.phone-topbar {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  top: 20px;
  display: flex;
  justify-content: space-between;
  color: #d8dfdb;
  font-size: 10px;
}
.phone-content {
  height: 100%;
  border-radius: 39px;
  background: linear-gradient(180deg, #f9fcfa 0%, #edf4f0 100%);
  color: var(--forest);
  padding: 58px 18px 18px;
  overflow: hidden;
}
.mini-brand-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-weight: 800; font-size: 13px; }
.mini-brand-row img { width: 28px; height: 28px; border-radius: 8px; }
.mini-town { display: flex; flex-direction: column; margin-bottom: 16px; }
.mini-town strong { font-size: 25px; letter-spacing: -.04em; }
.mini-label { text-transform: uppercase; letter-spacing: .12em; font-size: 8px; color: #6d7d75; }
.mini-search { background: #fff; padding: 13px 14px; border-radius: 14px; color: #6d7d75; font-size: 11px; box-shadow: 0 6px 18px rgba(30,58,46,.06); margin-bottom: 12px; }
.mini-weather { display: flex; gap: 10px; align-items: center; background: #daf1e7; border-radius: 18px; padding: 14px; margin-bottom: 12px; }
.mini-weather > span { font-size: 26px; }
.mini-weather div { display: flex; flex-direction: column; }
.mini-weather strong { font-size: 22px; line-height: 1; }
.mini-weather small { color: #557064; font-size: 9px; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.mini-grid div { min-height: 78px; background: #fff; border-radius: 15px; padding: 12px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 6px 18px rgba(30,58,46,.05); }
.mini-grid span { font-size: 20px; }
.mini-grid b { font-size: 10px; }
.mini-card { min-height: 105px; border-radius: 18px; padding: 16px; color: #f2fff9; background: linear-gradient(135deg, var(--forest), #245844); display: flex; flex-direction: column; justify-content: flex-end; }
.mini-card-tag { font-size: 7px; letter-spacing: .12em; margin-bottom: 7px; color: #bfe8d8; }
.mini-card strong { font-size: 14px; line-height: 1.25; }

.brand-band {
  min-height: 118px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 32px;
  border-radius: 26px;
  background: var(--forest);
  color: #fff;
  box-shadow: 0 18px 45px rgba(20,33,29,.12);
}
.brand-band > img { width: 62px; height: 62px; }
.brand-band > div:nth-child(2) { display: flex; flex-direction: column; gap: 2px; }
.brand-band strong { font-size: 27px; line-height: 1.05; letter-spacing: -.03em; }
.brand-band span { color: rgba(255,255,255,.72); }
.brand-swatches { display: flex; gap: 10px; }
.swatch { width: 28px; height: 28px; border-radius: 50%; display: block; border: 1px solid rgba(255,255,255,.28); }
.swatch.forest { background: #14211d; border-color: rgba(255,255,255,.5); }
.swatch.green { background: #2f9471; }
.swatch.mint { background: #69c9aa; }

.intro {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 120px 0 82px;
  border-top: 1px solid var(--line);
  margin-top: 110px;
}
.section-number { color: var(--green); font-size: 13px; letter-spacing: .18em; font-weight: 750; }
.intro h2,
.towns h2,
.closing h2 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
  max-width: 850px;
  margin-bottom: 24px;
}
.intro div > p,
.towns-copy > p:last-child,
.closing p { color: var(--muted); font-size: 19px; max-width: 740px; }

.feature-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-bottom: 130px;
  background: rgba(255,255,255,.4);
}
.feature-rail article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-icon { font-size: 28px; display: block; margin-bottom: 46px; filter: saturate(.72); }
.feature-rail h3 { font-size: 24px; letter-spacing: -.025em; margin-bottom: 12px; color: var(--forest); }
.feature-rail p { color: var(--muted); margin-bottom: 0; max-width: 290px; }

.towns {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  padding: 100px 0 130px;
  border-top: 1px solid var(--line);
}
.town-list { display: flex; flex-direction: column; justify-content: center; }
.town-card {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  min-height: 110px;
  border-bottom: 1px solid var(--line);
}
.town-card:first-child { border-top: 1px solid var(--line); }
.town-card span { color: var(--green); font-size: 12px; letter-spacing: .14em; font-weight: 750; }
.town-card strong { font-size: 26px; letter-spacing: -.03em; }
.town-card small { color: var(--muted); font-size: 13px; }

.closing {
  background: linear-gradient(135deg, var(--green), #45ae89 52%, var(--mint));
  color: #082019;
  padding: 70px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 90px;
  box-shadow: 0 24px 55px rgba(47,148,113,.18);
}
.closing h2 { max-width: 760px; }
.closing p { color: rgba(8,32,25,.68); margin-bottom: 0; }
.primary-link { flex: 0 0 auto; background: var(--forest); color: #fff; padding: 16px 22px; border-radius: 999px; font-weight: 750; font-size: 14px; }

footer {
  border-top: 1px solid var(--line);
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}
.footer-brand img { width: 210px; display: block; }

@media (max-width: 900px) {
  .header-actions a { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; min-height: unset; }
  .hero-copy { text-align: left; }
  .phone-stage { padding: 35px 0 20px; min-height: 560px; }
  .phone-shell { transform: rotate(2deg); }
  .brand-band { grid-template-columns: auto 1fr; }
  .brand-swatches { grid-column: 2; }
  .intro { grid-template-columns: 1fr; gap: 10px; }
  .feature-rail { grid-template-columns: 1fr 1fr; }
  .towns { grid-template-columns: 1fr; }
  .closing { flex-direction: column; align-items: flex-start; padding: 46px; }
  footer { grid-template-columns: 1fr; padding: 40px 0; gap: 14px; }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .brand-band,
  .intro,
  .feature-rail,
  .towns,
  .closing,
  footer { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 82px; }
  .brand-logo { width: 205px; max-width: 62vw; }
  h1 { font-size: clamp(52px, 16vw, 72px); }
  .hero { gap: 20px; padding: 56px 0 72px; }
  .hero-summary { font-size: 18px; }
  .phone-stage::before { width: 360px; height: 360px; }
  .stage-mark { width: 320px; transform: translate(35px,-35px) rotate(-7deg); }
  .brand-band { padding: 24px; gap: 16px; }
  .brand-band > img { width: 48px; height: 48px; }
  .brand-band strong { font-size: 23px; }
  .brand-band span { font-size: 14px; }
  .swatch { width: 24px; height: 24px; }
  .intro { padding: 80px 0 54px; margin-top: 80px; }
  .feature-rail { grid-template-columns: 1fr; margin-bottom: 90px; }
  .feature-rail article { min-height: 210px; }
  .towns { padding: 76px 0 90px; }
  .town-card { grid-template-columns: 48px 1fr; }
  .town-card small { grid-column: 2; }
  .closing { padding: 34px 26px; margin-bottom: 70px; }
  .closing h2 { font-size: 38px; }
  .footer-brand img { width: 195px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
