:root {
  --ivory: #faf7f2;
  --ivory-deep: #f0ebe3;
  --green: #1a2e2a;
  --green-soft: #29443e;
  --green-ink: #0f211e;
  --gold: #b8975a;
  --gold-light: #d3b77e;
  --ink: #263733;
  --muted: #687873;
  --line: rgba(184, 151, 90, 0.32);
  --shadow: 0 24px 70px rgba(26, 46, 42, 0.09);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection { background: var(--gold); color: var(--green-ink); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--green-ink);
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.94);
  border-color: rgba(184, 151, 90, 0.2);
  box-shadow: 0 8px 35px rgba(26, 46, 42, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name { color: var(--green); font-family: var(--serif); font-size: 2rem; font-weight: 600; letter-spacing: 0.01em; }
.brand-tagline { margin-top: 3px; color: var(--gold); font-family: var(--serif); font-size: 0.74rem; font-style: italic; letter-spacing: 0.08em; }

.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-nav a { color: var(--green); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; transition: color 0.2s ease; }
.desktop-nav a:hover { color: var(--gold); }

.header-cta {
  border-bottom: 1px solid var(--gold);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 52px;
  background:
    linear-gradient(90deg, rgba(184, 151, 90, 0.08) 1px, transparent 1px) 50% 0 / 25% 100%,
    var(--ivory);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--green);
}

.hero-orbit { position: absolute; border: 1px solid rgba(184, 151, 90, 0.22); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 620px; height: 620px; right: -290px; top: -210px; }
.hero-orbit-two { width: 420px; height: 420px; left: -310px; bottom: -140px; }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr 0.96fr; align-items: center; gap: clamp(52px, 8vw, 110px); }
.hero-copy { padding-top: 18px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span { width: 38px; height: 1px; background: currentColor; flex: 0 0 auto; }
.hero h1 { margin: 0; color: var(--green); font-family: var(--serif); font-size: clamp(6.5rem, 13vw, 11.5rem); font-weight: 500; letter-spacing: -0.06em; line-height: 0.62; }
.hero-tagline { margin: 34px 0 42px 9px; color: var(--gold); font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.6rem); font-style: italic; letter-spacing: 0.11em; }
.hero-value { max-width: 630px; margin: 0; color: var(--green); font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.55rem); line-height: 1.18; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 43px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 58px;
  padding: 0 28px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button span { font-size: 1.15rem; transition: transform 0.2s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translateX(4px); }
.button-gold { background: var(--gold); color: var(--green-ink); box-shadow: 0 14px 35px rgba(184, 151, 90, 0.2); }
.button-gold:hover { background: var(--gold-light); box-shadow: 0 18px 45px rgba(184, 151, 90, 0.28); }
.text-link { color: var(--green); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.text-link span { color: var(--gold); margin-left: 8px; }

.hero-visual { position: relative; padding: 22px; }
.logo-frame { position: relative; max-width: 530px; margin-left: auto; padding: 13px; background: var(--green-ink); box-shadow: 0 35px 85px rgba(15, 33, 30, 0.25); }
.logo-frame::before, .logo-frame::after { content: ""; position: absolute; pointer-events: none; }
.logo-frame::before { inset: -14px 14px 14px -14px; border: 1px solid var(--gold); }
.logo-frame::after { inset: 0; border: 1px solid rgba(211, 183, 126, 0.38); }
.logo-frame-line { position: absolute; width: 1px; height: 90px; right: -26px; top: 40px; background: var(--gold); }
.logo-frame img { width: 100%; height: auto; }
.visual-caption { display: flex; justify-content: flex-end; gap: 23px; margin: 27px 4px 0 0; color: var(--muted); font-size: 0.61rem; letter-spacing: 0.15em; text-transform: uppercase; }
.visual-caption span + span::before { content: "·"; color: var(--gold); margin-right: 23px; }

.hero-foot { position: relative; z-index: 1; display: flex; align-items: center; gap: 18px; margin-top: 58px; color: var(--muted); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }
.hero-foot-line { height: 1px; background: var(--line); flex: 1; }

.section { padding: clamp(92px, 12vw, 160px) 0; }
.editorial-grid { display: grid; grid-template-columns: 0.95fr 0.75fr; gap: clamp(70px, 11vw, 150px); }
.section-heading h2, .center-heading h2, .atelier-copy h2, .journey-copy h2, .security-heading h2, .final-cta h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.3vw, 4.85rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.problem { background: #fffdfa; }
.problem-body { padding-top: 50px; }
.lead { color: var(--green); font-family: var(--serif); font-size: clamp(1.45rem, 2.5vw, 2rem); line-height: 1.35; }
.problem-body > p:not(.lead), .atelier-copy > p:not(.eyebrow):not(.lead), .journey-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.fine-list { margin-top: 48px; border-top: 1px solid var(--line); }
.fine-list > div { display: grid; grid-template-columns: 44px 1fr; align-items: start; gap: 15px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.fine-list span { color: var(--gold); font-family: var(--serif); font-size: 1.08rem; }
.fine-list p { margin: 0; color: var(--green); font-size: 0.83rem; line-height: 1.55; }

.hera-intro { background: var(--ivory); }
.center-heading { max-width: 820px; margin: 0 auto 70px; text-align: center; }
.center-heading > p:last-child { max-width: 680px; margin: 30px auto 0; color: var(--muted); }
.eyebrow-center { justify-content: center; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar-card { position: relative; min-height: 445px; padding: 38px 34px 31px; border: 1px solid rgba(184, 151, 90, 0.32); background: rgba(255, 253, 250, 0.76); box-shadow: 0 14px 40px rgba(26, 46, 42, 0.035); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.pillar-card:hover { transform: translateY(-7px); border-color: var(--gold); box-shadow: var(--shadow); }
.card-number { position: absolute; top: 30px; right: 28px; color: rgba(184, 151, 90, 0.5); font-family: var(--serif); font-size: 1.05rem; }
.line-icon { position: relative; width: 62px; height: 62px; margin-bottom: 65px; border: 1px solid var(--gold); border-radius: 50%; }
.line-icon::before { content: ""; position: absolute; width: 27px; height: 18px; left: 17px; top: 18px; border-bottom: 1px solid var(--gold); border-radius: 50%; transform: rotate(-12deg); }
.icon-dot { position: absolute; width: 6px; height: 6px; right: 14px; top: 14px; background: var(--gold); border-radius: 50%; }
.icon-hand { position: absolute; width: 20px; height: 1px; left: 21px; bottom: 16px; background: var(--gold); transform: rotate(-24deg); }
.line-icon-talk::before { width: 28px; height: 21px; left: 16px; top: 15px; border: 1px solid var(--gold); border-radius: 50%; transform: none; }
.line-icon-talk span { position: absolute; width: 8px; height: 8px; left: 20px; top: 32px; border-left: 1px solid var(--gold); transform: rotate(35deg); }
.line-icon-talk i, .line-icon-talk b { position: absolute; width: 2px; height: 2px; top: 25px; background: var(--gold); border-radius: 50%; }
.line-icon-talk i { left: 26px; box-shadow: 6px 0 0 var(--gold); }
.line-icon-talk b { left: 38px; }
.line-icon-radar::before, .line-icon-radar span, .line-icon-radar i { position: absolute; border: 1px solid var(--gold); border-radius: 50%; }
.line-icon-radar::before { content: ""; inset: 9px; transform: none; width: auto; height: auto; }
.line-icon-radar span { inset: 18px; }
.line-icon-radar i { width: 5px; height: 5px; left: 28px; top: 28px; background: var(--gold); }
.line-icon-radar b { position: absolute; width: 24px; height: 1px; left: 30px; top: 30px; background: var(--gold); transform: rotate(-42deg); transform-origin: left; }
.pillar-card h3 { max-width: 270px; margin: 0 0 18px; color: var(--green); font-family: var(--serif); font-size: 2rem; font-weight: 600; line-height: 1.05; }
.pillar-card p { margin: 0 0 35px; color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.card-foot { position: absolute; bottom: 27px; left: 34px; color: var(--gold); font-size: 0.63rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

.manifesto { position: relative; padding: clamp(110px, 15vw, 190px) 0; background: var(--green); color: var(--ivory); overflow: hidden; }
.manifesto::before, .manifesto::after { content: ""; position: absolute; border: 1px solid rgba(184, 151, 90, 0.16); border-radius: 50%; }
.manifesto::before { width: 540px; height: 540px; left: -290px; top: -220px; }
.manifesto::after { width: 620px; height: 620px; right: -350px; bottom: -400px; }
.manifesto-mark { position: absolute; right: 5%; top: -19%; color: rgba(250, 247, 242, 0.025); font-family: var(--serif); font-size: 33rem; line-height: 1; }
.manifesto-inner { position: relative; z-index: 1; max-width: 1030px; }
.eyebrow-light { color: var(--gold-light); }
.manifesto blockquote { margin: 0; color: var(--ivory); font-family: var(--serif); font-size: clamp(2.5rem, 5.3vw, 4.9rem); font-weight: 500; line-height: 1.08; text-align: center; }
.manifesto-signature { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 45px; color: var(--gold-light); }
.manifesto-signature span { width: 60px; height: 1px; background: currentColor; }
.manifesto-signature p { margin: 0; font-family: var(--serif); font-size: 1.15rem; font-style: italic; letter-spacing: 0.08em; }

.atelier { background: #fffdfa; overflow: hidden; }
.atelier-grid { display: grid; grid-template-columns: 0.74fr 1.26fr; align-items: center; gap: clamp(50px, 7vw, 90px); }
.atelier-copy .lead { margin-bottom: 4px; }
.feature-list { margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.feature-list li > span { color: var(--gold); font-family: var(--serif); }
.feature-list strong { display: block; color: var(--green); font-family: var(--serif); font-size: 1.25rem; line-height: 1.2; }
.feature-list p { margin: 5px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.6; }

.atelier-demo { position: relative; width: 820px; max-width: 100%; }
.atelier-demo::before { content: ""; position: absolute; z-index: 0; width: 270px; height: 270px; right: -80px; top: -90px; border: 1px solid var(--line); border-radius: 50%; }
.demo-shell { position: relative; z-index: 1; padding: 22px; background: #f8f5ef; border: 1px solid rgba(184, 151, 90, 0.24); box-shadow: 0 35px 90px rgba(26, 46, 42, 0.16); font-size: 10px; line-height: 1.4; }
.demo-topbar { display: flex; align-items: center; justify-content: space-between; padding: 4px 6px 17px; border-bottom: 1px solid rgba(184, 151, 90, 0.2); }
.demo-topbar > div { display: flex; align-items: baseline; gap: 7px; }
.demo-brand { color: var(--green); font-family: var(--serif); font-size: 24px; font-weight: 600; }
.demo-topbar small { color: var(--gold); font-family: var(--serif); font-style: italic; letter-spacing: 0.1em; }
.demo-avatar { display: grid; width: 30px; height: 30px; place-items: center; background: var(--green); color: var(--ivory); border-radius: 50%; font-size: 8px; }
.demo-greeting { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 27px 6px 17px; }
.demo-greeting small, .demo-stats small, .table-title small, .care-card > small { color: var(--gold); font-size: 7px; font-weight: 600; letter-spacing: 0.14em; }
.demo-greeting h3 { margin: 3px 0 0; color: var(--green); font-family: var(--serif); font-size: 25px; font-weight: 600; }
.status-pill { padding: 6px 10px; border: 1px solid rgba(52, 105, 86, 0.22); color: #346956; border-radius: 20px; font-size: 7px; text-transform: uppercase; letter-spacing: 0.08em; }
.status-pill i { display: inline-block; width: 5px; height: 5px; margin-right: 4px; background: #5b9b7d; border-radius: 50%; }
.demo-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.demo-stats > div { position: relative; padding: 13px 14px 10px; background: #fff; border: 1px solid rgba(26, 46, 42, 0.08); }
.demo-stats strong { display: block; margin: 4px 0 0; color: var(--green); font-family: var(--serif); font-size: 26px; line-height: 1; }
.demo-stats span { position: absolute; right: 11px; bottom: 11px; color: var(--muted); font-size: 7px; }
.demo-stats .accent-stat { background: var(--green); }
.demo-stats .accent-stat strong { color: var(--ivory); }
.demo-stats .accent-stat span { color: var(--gold-light); }
.demo-content { display: grid; grid-template-columns: 1.5fr 0.72fr; gap: 10px; margin-top: 10px; }
.demo-table, .care-card { background: #fff; border: 1px solid rgba(26, 46, 42, 0.08); }
.demo-table { padding: 15px; }
.table-title { display: flex; align-items: center; justify-content: space-between; padding-bottom: 9px; }
.table-title h4 { margin: 2px 0 0; color: var(--green); font-family: var(--serif); font-size: 14px; }
.table-title button { padding: 4px 7px; border: 1px solid var(--line); background: transparent; color: var(--green); font-size: 7px; }
.patient-row { display: grid; grid-template-columns: 25px 1fr auto; align-items: center; gap: 8px; padding: 9px 0; border-top: 1px solid rgba(26, 46, 42, 0.07); }
.patient-initial { display: grid; width: 24px; height: 24px; place-items: center; background: var(--ivory); color: var(--green); border-radius: 50%; font-family: var(--serif); font-size: 8px; }
.patient-row strong { display: block; color: var(--green); font-size: 8px; }
.patient-row small { display: block; color: var(--muted); font-size: 6px; }
.adherence { padding: 3px 6px; border-radius: 10px; font-size: 6px; }
.adherence.good { background: #e7f1eb; color: #42745f; }
.adherence.attention { background: #f5ead6; color: #976f29; }
.care-card { padding: 16px; text-align: center; }
.care-monogram { display: grid; width: 37px; height: 37px; margin: 12px auto 5px; place-items: center; background: #f2e8d6; color: var(--green); border-radius: 50%; font-family: var(--serif); font-size: 12px; }
.care-card h4 { margin: 0; color: var(--green); font-family: var(--serif); font-size: 14px; }
.care-card p { margin: 8px 0; color: var(--muted); font-size: 7px; line-height: 1.5; }
.care-time { display: block; color: var(--gold); font-size: 6px; }
.care-card button { width: 100%; margin-top: 11px; padding: 6px; border: 0; background: var(--green); color: var(--ivory); font-size: 7px; }
.demo-note { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 20px; color: var(--gold); font-family: var(--serif); font-size: 1rem; font-style: italic; }
.demo-note span { width: 42px; height: 1px; background: var(--gold); }

.implementation { background: var(--ivory); }
.implementation .center-heading { margin-bottom: 62px; }
.implementation-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.implementation-step { min-height: 310px; padding: 40px 34px 35px; border-right: 1px solid var(--line); }
.implementation-step:last-child { border-right: 0; }
.implementation-number { display: block; margin-bottom: 72px; color: var(--gold); font-family: var(--serif); font-size: 1.12rem; }
.implementation-step h3 { margin: 0 0 17px; color: var(--green); font-family: var(--serif); font-size: 2rem; font-weight: 600; line-height: 1.08; }
.implementation-step p { margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.7; }
.implementation-closing { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 36px 0 0; color: var(--green); font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.75rem); font-style: italic; text-align: center; }
.implementation-closing span { width: 32px; height: 1px; background: var(--gold); }

.journey { background: var(--ivory-deep); }
.journey-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: clamp(60px, 12vw, 150px); }
.journey-phone { position: relative; }
.journey-phone::before { content: ""; position: absolute; width: 430px; height: 430px; max-width: 100%; left: -40px; top: 80px; border: 1px solid var(--line); border-radius: 50%; }
.phone-frame { position: relative; z-index: 1; width: 310px; max-width: 86%; margin: auto; padding: 9px; background: #111c1a; border: 1px solid #3d4f4b; border-radius: 37px; box-shadow: 0 35px 75px rgba(26, 46, 42, 0.25); overflow: hidden; }
.phone-speaker { position: absolute; z-index: 3; width: 80px; height: 18px; top: 6px; left: 50%; transform: translateX(-50%); background: #111c1a; border-radius: 0 0 13px 13px; }
.phone-header { display: flex; align-items: center; gap: 9px; padding: 23px 14px 12px; background: var(--green); color: var(--ivory); border-radius: 28px 28px 0 0; }
.phone-avatar { display: grid; width: 34px; height: 34px; place-items: center; background: var(--gold); color: var(--green); border-radius: 50%; font-family: var(--serif); font-size: 20px; }
.phone-header strong, .phone-header small { display: block; }
.phone-header strong { font-family: var(--serif); font-size: 15px; }
.phone-header small { color: #a8b9b3; font-size: 7px; }
.phone-chat { min-height: 500px; padding: 18px 12px; background: #eae6de; }
.chat-date { display: table; margin: 0 auto 18px; padding: 3px 9px; background: rgba(255,255,255,0.8); color: var(--muted); border-radius: 9px; font-size: 6px; letter-spacing: 0.1em; }
.message { position: relative; width: 82%; margin-bottom: 10px; padding: 9px 10px 15px; border-radius: 8px; color: #344440; font-size: 9px; line-height: 1.5; box-shadow: 0 2px 4px rgba(26,46,42,.08); }
.message small { position: absolute; right: 7px; bottom: 4px; color: #83908c; font-size: 5px; }
.patient-message { width: 48%; margin-left: auto; background: #dcecdf; }
.hera-message { background: #fff; }
.journey-preview { width: 90%; margin: 18px auto 0; padding: 18px 16px; background: var(--ivory); border: 1px solid rgba(184, 151, 90, 0.35); text-align: center; }
.preview-label { color: var(--gold); font-size: 6px; font-weight: 600; letter-spacing: 0.16em; }
.journey-preview strong { display: block; margin: 6px 0 14px; color: var(--green); font-family: var(--serif); font-size: 18px; font-weight: 600; }
.timeline-line { position: relative; display: flex; justify-content: space-between; margin: 8px 10px 10px; }
.timeline-line::before { content: ""; position: absolute; height: 1px; left: 3px; right: 3px; top: 3px; background: #d1ccc3; }
.timeline-line i { position: relative; z-index: 1; width: 7px; height: 7px; background: #d1ccc3; border-radius: 50%; }
.timeline-line i.done { background: var(--green-soft); }
.timeline-line i.active { background: var(--gold); box-shadow: 0 0 0 4px rgba(184, 151, 90, 0.16); }
.journey-preview > small { display: block; color: var(--muted); font-size: 7px; }
.journey-preview button { margin-top: 15px; padding: 7px 18px; border: 0; background: var(--green); color: var(--ivory); font-size: 7px; letter-spacing: 0.06em; text-transform: uppercase; }
.journey-copy { max-width: 520px; }
.journey-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 37px; }
.journey-points span { padding: 7px 13px; border: 1px solid var(--line); color: var(--green); font-size: 0.67rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.security { background: #fffdfa; }
.security-heading { display: grid; grid-template-columns: 1.05fr 0.72fr; align-items: end; gap: clamp(50px, 10vw, 130px); padding-bottom: 52px; border-bottom: 1px solid var(--line); }
.security-heading > p { margin: 0 0 8px; color: var(--muted); }
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.security-item { min-height: 270px; padding: 42px 28px 30px; border-right: 1px solid var(--line); }
.security-item:last-child { border-right: 0; }
.security-item > span { display: grid; width: 45px; height: 45px; margin-bottom: 45px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: 0.95rem; }
.security-item h3 { margin: 0 0 12px; color: var(--green); font-family: var(--serif); font-size: 1.55rem; line-height: 1.1; }
.security-item p { margin: 0; color: var(--muted); font-size: 0.8rem; line-height: 1.65; }
.security-note { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 24px 0 0; padding: 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.75rem; text-align: center; }
.security-note > span { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }

.benefits { background: var(--ivory); }
.benefit-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-item { position: relative; min-height: 220px; padding: 32px 28px; border-right: 1px solid var(--line); }
.benefit-item:last-child { border-right: 0; }
.benefit-item span { color: var(--gold); font-family: var(--serif); font-size: 1.15rem; }
.benefit-item p { position: absolute; left: 28px; right: 28px; bottom: 30px; margin: 0; color: var(--green); font-family: var(--serif); font-size: 1.6rem; line-height: 1.15; }

.final-cta { position: relative; padding: clamp(110px, 15vw, 180px) 0; background: var(--green-ink); color: var(--ivory); overflow: hidden; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 1px; top: 0; bottom: 0; background: rgba(184, 151, 90, 0.16); }
.final-cta::before { left: 18%; }
.final-cta::after { right: 18%; }
.final-cta-glow { position: absolute; width: 600px; height: 600px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(184,151,90,.13); border-radius: 50%; box-shadow: 0 0 100px rgba(184,151,90,.05) inset; }
.final-cta-inner { position: relative; z-index: 1; max-width: 900px; text-align: center; }
.final-cta h2 { color: var(--ivory); }
.final-cta p { max-width: 620px; margin: 27px auto 37px; color: #b8c1be; }
.final-cta .button { max-width: 100%; }
.final-cta small { display: block; margin-top: 24px; color: #788a85; font-size: 0.65rem; letter-spacing: 0.08em; }

.hera-footer { padding: 64px 0 28px; background: var(--green); color: var(--ivory); border-top: 1px solid rgba(184, 151, 90, 0.55); }
.hera-footer__top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 48px; padding-bottom: 42px; }
.hera-footer__brand { display: flex; flex-direction: column; line-height: 1; }
.hera-footer__brand strong { color: var(--ivory); font-family: var(--serif); font-size: 2.5rem; font-weight: 600; }
.hera-footer__brand span { margin-top: 8px; color: var(--gold); font-family: var(--serif); font-size: 1rem; font-style: italic; letter-spacing: 0.06em; }
.hera-footer__info { text-align: center; }
.hera-footer__info p { margin: 0 0 10px; color: rgba(250, 247, 242, 0.72); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.11em; text-transform: uppercase; }
.hera-footer__info p span { margin: 0 5px; color: var(--gold); }
.hera-footer__info a { color: var(--ivory); font-size: 0.75rem; letter-spacing: 0.08em; transition: color 0.2s ease; }
.hera-footer__info a:hover { color: var(--gold); }
.hera-footer__links { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.hera-footer__links a { color: rgba(250, 247, 242, 0.8); border-bottom: 1px solid transparent; font-size: 0.72rem; letter-spacing: 0.07em; transition: color 0.2s ease, border-color 0.2s ease; }
.hera-footer__links a:hover { color: var(--ivory); border-color: var(--gold); }
.hera-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 26px; border-top: 1px solid rgba(184, 151, 90, 0.25); }
.hera-footer__bottom p, .hera-footer__bottom > span { margin: 0; color: rgba(250, 247, 242, 0.52); font-size: 0.61rem; letter-spacing: 0.09em; text-transform: uppercase; }

.legal-main { padding: 150px 0 110px; background: var(--ivory); }
.legal-hero { max-width: 850px; padding: 60px 0 55px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin: 0; color: var(--green); font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 500; line-height: 1; }
.legal-hero p { max-width: 650px; margin: 24px 0 0; color: var(--muted); }
.legal-document { max-width: 850px; padding-top: 35px; }
.legal-section { display: grid; grid-template-columns: 60px 1fr; gap: 25px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.legal-section > span { color: var(--gold); font-family: var(--serif); font-size: 1.05rem; }
.legal-section h2 { margin: 0 0 12px; color: var(--green); font-family: var(--serif); font-size: 2rem; font-weight: 600; line-height: 1.15; }
.legal-section p { margin: 0; color: var(--muted); }
.legal-back { display: inline-flex; align-items: center; gap: 9px; margin-top: 42px; color: var(--green); border-bottom: 1px solid var(--gold); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em; padding-bottom: 5px; text-transform: uppercase; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.75,.3,1); }
.js .reveal[data-delay="1"] { transition-delay: 0.12s; }
.js .reveal[data-delay="2"] { transition-delay: 0.22s; }
.js .reveal[data-delay="3"] { transition-delay: 0.32s; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .hero { min-height: auto; padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr 0.82fr; gap: 50px; }
  .hero h1 { font-size: clamp(6rem, 15vw, 9rem); }
  .atelier-grid { grid-template-columns: 1fr; }
  .atelier-copy { max-width: 680px; }
  .atelier-demo { margin: 30px auto 0; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .security-item:nth-child(2) { border-right: 0; }
  .security-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .benefit-list { grid-template-columns: repeat(2, 1fr); }
  .benefit-item:nth-child(2) { border-right: 0; }
  .benefit-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 74px; }
  .brand-name { font-size: 1.7rem; }
  .brand-tagline { font-size: 0.62rem; }
  .header-cta { font-size: 0.64rem; letter-spacing: 0.06em; }
  .hero { padding: 122px 0 40px; background: var(--ivory); }
  .hero-grid { grid-template-columns: 1fr; gap: 62px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero h1 { font-size: clamp(7.3rem, 36vw, 10rem); }
  .hero-tagline { margin: 31px 0 32px; }
  .hero-value { font-size: 1.95rem; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { padding: 8px 13px; }
  .logo-frame { margin: 0 auto; }
  .visual-caption { justify-content: center; gap: 12px; margin-right: 0; }
  .visual-caption span + span::before { margin-right: 12px; }
  .hero-foot { margin-top: 50px; }
  .section { padding: 92px 0; }
  .editorial-grid, .journey-grid, .security-heading { grid-template-columns: 1fr; gap: 42px; }
  .problem-body { padding-top: 0; }
  .center-heading { margin-bottom: 50px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .implementation-grid { grid-template-columns: 1fr; }
  .implementation-step { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .implementation-step:last-child { border-bottom: 0; }
  .implementation-number { margin-bottom: 38px; }
  .implementation-closing { flex-direction: column; gap: 9px; }
  .pillar-card { min-height: 390px; }
  .line-icon { margin-bottom: 50px; }
  .manifesto { padding: 110px 0; }
  .manifesto blockquote { font-size: 2.65rem; }
  .atelier-copy h2, .journey-copy h2, .security-heading h2, .section-heading h2, .center-heading h2, .final-cta h2 { font-size: 3.05rem; }
  .atelier-demo { width: 720px; margin-left: -8px; max-width: calc(100% + 16px); }
  .demo-shell { padding: 10px; }
  .demo-greeting { padding: 17px 2px 12px; }
  .demo-greeting h3 { font-size: 19px; }
  .status-pill { display: none; }
  .demo-stats { gap: 5px; }
  .demo-stats > div { padding: 9px 8px; }
  .demo-stats span { display: none; }
  .demo-stats strong { font-size: 21px; }
  .demo-content { grid-template-columns: 1fr; }
  .care-card { display: none; }
  .journey-phone { order: 2; margin-top: 20px; }
  .journey-copy { order: 1; }
  .journey-phone::before { width: 340px; height: 340px; left: 50%; transform: translateX(-50%); }
  .security-heading { align-items: start; }
  .security-grid { grid-template-columns: 1fr; }
  .security-item, .security-item:nth-child(2) { display: grid; grid-template-columns: 54px 1fr; min-height: 0; gap: 0 15px; padding: 29px 4px; border-right: 0; border-bottom: 1px solid var(--line); }
  .security-item > span { grid-row: 1 / 3; margin: 0; }
  .security-item h3, .security-item p { grid-column: 2; }
  .security-item h3 { margin-top: 1px; }
  .benefit-list { grid-template-columns: 1fr; }
  .benefit-item, .benefit-item:nth-child(2) { min-height: 155px; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-item p { font-size: 1.45rem; }
  .final-cta .button { padding-inline: 20px; }
  .hera-footer__top { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hera-footer__brand, .hera-footer__links { align-items: center; }
  .hera-footer__bottom { flex-direction: column; gap: 9px; text-align: center; }
  .legal-section { grid-template-columns: 42px 1fr; gap: 14px; }
}

@media (max-width: 480px) {
  .security-grid, .benefit-list { grid-template-columns: 1fr; }
  .section-heading h2, .center-heading h2, .atelier-copy h2, .journey-copy h2, .security-heading h2, .final-cta h2 { font-size: clamp(2.45rem, 12vw, 3rem); line-height: 1.02; }
  .hero h1 { font-size: clamp(6.8rem, 34vw, 8.5rem); }
  .atelier-demo { width: 100%; max-width: 100%; margin-left: 0; }
  .demo-shell { width: 100%; overflow: hidden; }
  .phone-frame { width: min(310px, 94%); max-width: 94%; }
  .desktop-nav { display: none; }
  .header-inner { gap: 14px; }
  .header-cta { max-width: 120px; font-size: 0.6rem; line-height: 1.25; text-align: right; }
  .implementation-step { padding-inline: 22px; }
  .legal-main { padding-top: 105px; }
  .legal-hero { padding-top: 45px; }
  .legal-hero h1 { font-size: 3.2rem; }
  .legal-section { grid-template-columns: 1fr; }
  .legal-section > span { margin-bottom: -10px; }
}

@media (max-width: 420px) {
  .header-cta { max-width: 112px; text-align: right; line-height: 1.25; }
  .hero h1 { font-size: 7.4rem; }
  .hero-value { font-size: 1.72rem; }
  .hero-actions .button { padding-inline: 18px; }
  .visual-caption { font-size: 0.5rem; }
  .hero-foot { gap: 10px; font-size: 0.5rem; }
  .atelier-copy h2, .journey-copy h2, .security-heading h2, .section-heading h2, .center-heading h2, .final-cta h2 { font-size: 2.7rem; }
  .journey-points { gap: 7px; }
  .journey-points span { font-size: 0.58rem; }
}

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

@media print {
  .site-header { position: static; }
  .hero { min-height: auto; }
  .button, .header-cta { border: 1px solid var(--gold); }
  .reveal { opacity: 1 !important; transform: none !important; }
}
