:root {
  --ink: #151613;
  --muted: #666b61;
  --paper: #fbfaf5;
  --card: #ffffff;
  --line: #e6e1d6;
  --deep: #073b3a;
  --teal: #0c6f68;
  --gold: #b69a58;
  --blush: #f2e7da;
  --danger: #7a2424;
  --shadow: 0 24px 70px rgba(7, 59, 58, 0.12);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(12,111,104,.10), transparent 30rem),
    radial-gradient(circle at 80% 10%, rgba(182,154,88,.12), transparent 24rem),
    var(--paper);
  line-height: 1.65;
}
a { color: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--deep);
  color: white;
  padding: .7rem 1rem;
  border-radius: 999px;
  z-index: 9999;
}
.skip-link:focus { left: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(251,250,245,.84);
  border-bottom: 1px solid rgba(230,225,214,.9);
}
.nav-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: .88rem 1.15rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1rem;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: 220px;
}
.brand img { width: 44px; height: 44px; }
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: .02em;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.1;
}
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .3rem;
}
.main-nav a,
.language-switch a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  font-size: .9rem;
  padding: .48rem .68rem;
  border-radius: 999px;
}
.main-nav a.active,
.main-nav a:hover,
.language-switch a.active,
.language-switch a:hover {
  color: var(--deep);
  background: rgba(12,111,104,.09);
}
.language-switch {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: .5rem .7rem;
  font-size: 1rem;
}
.hero-section {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7,59,58,.08), rgba(255,255,255,0) 48%),
    radial-gradient(circle at 78% 45%, rgba(182,154,88,.18), transparent 18rem),
    radial-gradient(circle at 26% 70%, rgba(12,111,104,.12), transparent 22rem);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1050px;
  padding: 6rem 1.4rem 5rem;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 1px solid rgba(182,154,88,.45);
  background: rgba(255,255,255,.58);
  color: var(--deep);
  border-radius: 999px;
  padding: .48rem .9rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 750;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin: 0;
}
h1 { font-size: clamp(3rem, 8vw, 7.4rem); max-width: 1050px; margin: 1rem auto; }
h2 { font-size: clamp(2rem, 4vw, 4.2rem); color: var(--deep); }
h3 { font-size: 1.35rem; color: var(--deep); }
.lead {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  color: #2b312d;
}
.hero-text,
.section-text {
  max-width: 850px;
  margin: 1rem auto 0;
  font-size: 1.08rem;
  color: var(--muted);
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .85rem;
}
.button,
button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: .9rem 1.2rem;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-size: .96rem;
}
.button:hover,
button:hover,
.mini-button:hover { transform: translateY(-1px); }
.button.primary { background: var(--deep); color: white; box-shadow: 0 16px 40px rgba(7,59,58,.22); }
.button.secondary { background: white; color: var(--deep); border: 1px solid var(--line); }
.button.ghost { background: rgba(255,255,255,.48); color: var(--deep); border: 1px solid rgba(12,111,104,.22); }
.content-section { padding: clamp(3.5rem, 7vw, 7rem) 1.25rem; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-heading { text-align: center; margin-bottom: 1.4rem; }
.notice {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.notice strong { color: var(--deep); font-size: 1.1rem; }
.notice p { margin: .35rem 0 0; color: var(--muted); }
.notice.safety { border-color: rgba(122,36,36,.24); background: #fff8f4; }
.notice.safety strong { color: var(--danger); }
.notice.premium { border-color: rgba(182,154,88,.35); background: #fffdf7; }
.feed-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}
.feed-card,
.info-card,
.price-card,
.admin-card {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 0 18px 50px rgba(7,59,58,.08);
}
.feed-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.feed-top span,
.feed-top b,
.status-pill,
.ribbon {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 780;
}
.feed-top span { color: var(--teal); }
.feed-top b,
.status-pill,
.ribbon { color: white; background: var(--teal); padding: .25rem .55rem; border-radius: 999px; }
.feed-card p,
.info-card p,
.price-card p,
.step p { color: var(--muted); }
.feed-meta {
  color: var(--gold);
  font-size: .85rem;
  font-weight: 700;
  margin: .8rem 0;
}
.feed-card button { width: 100%; background: var(--deep); color: white; padding: .75rem 1rem; }
.steps,
.card-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.step {
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.74);
  padding: 1.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.info-card { min-height: 190px; }
.quote-block {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: calc(var(--radius) * 1.2);
  background: var(--deep);
  color: white;
  box-shadow: var(--shadow);
}
.quote-block blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.12;
  margin: 0;
}
.quote-block figcaption { margin-top: 1rem; color: rgba(255,255,255,.68); }
.founder-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.2);
  padding: clamp(1.4rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}
.founder-mark {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep), var(--teal));
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  letter-spacing: .05em;
  box-shadow: 0 20px 60px rgba(7,59,58,.28);
}
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.2);
  padding: clamp(1.3rem, 4vw, 2.2rem);
  box-shadow: var(--shadow);
}
.form-intro p { color: var(--muted); }
form { display: grid; gap: 1rem; }
.field label { display: block; font-weight: 760; color: var(--deep); margin-bottom: .35rem; }
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffefa;
  border-radius: 18px;
  padding: .92rem 1rem;
  font: inherit;
  color: var(--ink);
}
textarea { min-height: 150px; resize: vertical; }
.checkbox { display: flex !important; gap: .65rem; align-items: flex-start; color: var(--muted) !important; font-weight: 650 !important; }
.checkbox input { width: auto; margin-top: .3rem; }
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; gap: .8rem; }
.price-card.highlighted { border-color: rgba(182,154,88,.55); box-shadow: 0 22px 70px rgba(182,154,88,.18); }
.price { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; color: var(--deep); }
.after { color: var(--gold) !important; font-weight: 760; }
.price-card ul { margin: .3rem 0 1rem; padding-left: 1.1rem; color: var(--muted); }
.ribbon { position: absolute; right: 1rem; top: 1rem; background: var(--gold); }
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  counter-reset: timeline;
}
.timeline li {
  counter-increment: timeline;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  position: relative;
}
.timeline li::before {
  content: counter(timeline);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--deep);
  color: white;
  font-weight: 800;
  margin-bottom: .8rem;
}
.timeline span { font-weight: 800; color: var(--deep); }
.map-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.2rem;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.2);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.map-visual {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(7,59,58,.06) 1px, transparent 1px),
    linear-gradient(rgba(7,59,58,.06) 1px, transparent 1px),
    #eef3ed;
  background-size: 44px 44px;
}
.zone { position: absolute; border-radius: 50%; border: 1px solid rgba(12,111,104,.35); background: rgba(12,111,104,.10); }
.zone-a { width: 230px; height: 230px; left: 12%; top: 18%; }
.zone-b { width: 280px; height: 280px; right: 10%; top: 24%; background: rgba(182,154,88,.13); border-color: rgba(182,154,88,.45); }
.zone-c { width: 170px; height: 170px; left: 45%; bottom: 10%; }
.pin { position: absolute; background: var(--deep); color: white; padding: .45rem .7rem; border-radius: 999px; font-size: .78rem; font-weight: 800; box-shadow: 0 10px 30px rgba(7,59,58,.22); }
.pin-a { left: 24%; top: 34%; }
.pin-b { right: 16%; top: 44%; background: var(--gold); }
.pin-c { left: 52%; bottom: 24%; background: var(--teal); }
.map-copy { padding: 1.3rem; color: var(--muted); }
.map-copy li { margin: .5rem 0; color: var(--deep); font-weight: 760; }
.legal-stack { max-width: 980px; margin: 0 auto; display: grid; gap: 1rem; }
.legal-stack article,
.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}
.legal-stack h2 { font-size: 1.45rem; }
.legal-stack p { color: var(--muted); }
.faq-list { max-width: 980px; margin: 0 auto; display: grid; gap: .9rem; }
.faq-list summary { cursor: pointer; font-weight: 800; color: var(--deep); }
.faq-list p { color: var(--muted); }
.site-footer {
  padding: 4rem 1.25rem 6rem;
  background: #0a2e2d;
  color: white;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; }
.site-footer a { color: white; opacity: .86; text-decoration: none; }
.site-footer a:hover { opacity: 1; text-decoration: underline; }
.site-footer p, .muted { color: rgba(255,255,255,.68); }
.site-footer .muted { color: rgba(255,255,255,.55); }
.footer-links { display: grid; gap: .45rem; }
.mini-button { background: white; color: var(--deep) !important; margin-top: .7rem; }
.mobile-bottom { display: none; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.admin-list { display: grid; gap: 1rem; }
.admin-card-head { display: flex; gap: .7rem; align-items: center; flex-wrap: wrap; }
.risk-tags { color: var(--danger); font-weight: 750; }
dl { display: grid; grid-template-columns: 180px 1fr; gap: .4rem .9rem; }
dt { font-weight: 800; color: var(--deep); }
dd { margin: 0; color: var(--muted); }
.admin-actions { display: flex; gap: .6rem; margin-top: 1rem; flex-wrap: wrap; }
.admin-actions button { background: var(--deep); color: white; padding: .55rem .85rem; }
@media (max-width: 1020px) {
  .nav-shell { grid-template-columns: auto auto 1fr; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: var(--shadow);
    justify-content: flex-start;
  }
  .main-nav.open { display: flex; }
  .language-switch { justify-self: end; }
  .feed-preview, .card-grid, .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps, .timeline { grid-template-columns: 1fr; }
  .form-shell, .map-panel, .founder-panel { grid-template-columns: 1fr; }
  .founder-mark { width: 120px; height: 120px; font-size: 2rem; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  body { padding-bottom: 72px; }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .hero-section { min-height: 68vh; }
  .hero-inner { padding-top: 4.3rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .feed-preview, .card-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .content-section { padding-left: 1rem; padding-right: 1rem; }
  .form-shell { padding: 1rem; border-radius: 22px; }
  .map-visual { min-height: 320px; }
  dl { grid-template-columns: 1fr; }
  .mobile-bottom {
    position: fixed;
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .25rem;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .35rem;
    box-shadow: 0 16px 50px rgba(7,59,58,.18);
    z-index: 120;
  }
  .mobile-bottom a {
    text-align: center;
    text-decoration: none;
    color: var(--deep);
    font-size: .72rem;
    font-weight: 800;
    padding: .45rem .2rem;
    border-radius: 999px;
  }
  .mobile-bottom .signal { background: var(--deep); color: white; }
}
