:root {
  --ink: #102624;
  --muted: #526865;
  --brand: #0b6b60;
  --brand-dark: #073b37;
  --brand-deep: #052c29;
  --brand-light: #dff3ee;
  --accent: #79531b;
  --accent-dark: #5c3b0c;
  --accent-soft: #fff3d8;
  --paper: #fffdf8;
  --surface: #ffffff;
  --soft: #f0f7f5;
  --soft-warm: #f7f2e8;
  --line: #d9e5e2;
  --line-dark: #244d49;
  --success: #137b54;
  --warning: #9a6414;
  --danger: #a23c37;
  --shadow-sm: 0 10px 30px rgba(5, 44, 41, .08);
  --shadow: 0 26px 70px rgba(5, 44, 41, .14);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 { margin: 0 0 .8rem; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6.7vw, 6.2rem); font-weight: 760; }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.4rem); font-weight: 740; }
h3 { font-size: 1.3rem; font-weight: 720; }
em { color: var(--brand); font-style: normal; }
code { padding: .15em .35em; border-radius: 6px; background: #e7efed; color: var(--brand-dark); font-size: .9em; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.narrow { width: min(calc(100% - 40px), 880px); }
.section { padding: 60px 0; }
.muted-section { background: var(--soft); }
.section-head { margin-bottom: 28px; }
.section-head.center { max-width: 780px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.split { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; }
.section-head.split p { font-size: 1.08rem; margin-bottom: .5rem; }
.kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 24px; height: 2px; background: var(--accent); }
.icon { width: 22px; height: 22px; flex: 0 0 auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 10px 16px; border-radius: 8px; background: #fff; box-shadow: var(--shadow-sm); font-weight: 800; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid rgba(195, 139, 47, .65); outline-offset: 3px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 229, 226, .75);
  background: rgba(255, 253, 248, .91);
  backdrop-filter: blur(18px);
}
.nav-shell { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; font-weight: 820; letter-spacing: -.03em; }
.brand-symbol { width: 34px; height: 34px; display: block; object-fit: cover; border-radius: 22%; box-shadow: 0 8px 18px rgba(11,107,96,.2); }
.brand-word { font-size: 1.16rem; }
.primary-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.primary-nav a, .text-link { color: #324b48; font-size: .92rem; font-weight: 680; }
.primary-nav a { position: relative; display: inline-flex; align-items: center; min-height: 44px; white-space: nowrap; }
.primary-nav a:hover, .text-link:hover { color: var(--brand); }
.primary-nav a.is-current { color: var(--brand-dark); }
.primary-nav a.is-current::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; border-radius: 999px; background: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.menu-button { display: none; width: 44px; height: 44px; margin-left: auto; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 13px; background: #fff; cursor: pointer; }
.menu-button svg { width: 22px; }
.menu-close { display: none; }
.menu-button[aria-expanded="true"] .menu-open { display: none; }
.menu-button[aria-expanded="true"] .menu-close { display: block; }
#products, #audiences, #tour, #contact { scroll-margin-top: 100px; }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--brand);
  border-radius: 13px;
  background: var(--brand);
  color: #fff;
  font-size: .94rem;
  font-weight: 790;
  letter-spacing: -.01em;
  box-shadow: 0 8px 22px rgba(11,107,96,.18);
  cursor: pointer;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.button:hover { transform: translateY(-2px); background: #07594f; box-shadow: 0 13px 28px rgba(11,107,96,.24); }
.button:disabled { opacity: .6; cursor: wait; transform: none; }
.button svg { width: 18px; height: 18px; }
.button-sm { min-height: 42px; padding: 9px 16px; border-radius: 11px; font-size: .86rem; }
.button-lg { min-height: 56px; padding: 15px 24px; }
.button-secondary { border-color: var(--line); background: #fff; color: var(--brand-dark); box-shadow: none; }
.button-secondary:hover { border-color: var(--brand); background: var(--soft); color: var(--brand); box-shadow: none; }
.text-arrow, .card-link { display: inline-flex; align-items: center; gap: 9px; color: var(--brand); font-weight: 800; }
.text-arrow svg, .card-link svg { width: 18px; transition: transform .2s; }
.text-arrow:hover svg, .card-link:hover svg { transform: translateX(4px); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 84px 0 62px; background: radial-gradient(circle at 78% 10%, rgba(195,139,47,.13), transparent 28%), linear-gradient(145deg, #f8fcfa 0%, var(--paper) 58%, #f6f0e4 100%); }
.hero::before { content: ""; position: absolute; width: 560px; height: 560px; right: -320px; top: -160px; border: 1px solid rgba(11,107,96,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(11,107,96,.025), 0 0 0 140px rgba(11,107,96,.018); }
.hero-layout { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 70px; }
.announcement { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; padding: 8px 12px; border: 1px solid #cde4df; border-radius: 999px; background: rgba(255,255,255,.72); color: var(--brand-dark); font-size: .76rem; font-weight: 800; letter-spacing: .03em; }
.announcement i { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(19,123,84,.09); }
.hero-copy h1 { max-width: 760px; font-size: clamp(2.2rem, 4.6vw, 4.6rem); text-wrap: balance; text-wrap-style: balance; }
.hero-lede { max-width: 700px; margin: 18px 0 24px; font-size: clamp(1.1rem, 1.6vw, 1.32rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.proof-chips { display: flex; flex-wrap: wrap; gap: 15px 24px; margin-top: 22px; color: #405955; font-size: .84rem; font-weight: 700; }
.proof-chips span { display: inline-flex; align-items: center; gap: 7px; }
.proof-chips svg { width: 17px; color: var(--brand); }
.hero-product-stack { position: relative; min-height: 610px; display: flex; align-items: center; justify-content: center; }
.product-preview { width: 100%; overflow: hidden; border: 1px solid rgba(210,226,222,.9); border-radius: 25px; background: #fff; box-shadow: var(--shadow); }
.browser-bar { height: 43px; display: flex; align-items: center; gap: 7px; padding: 0 15px; border-bottom: 1px solid var(--line); background: #f8faf9; }
.browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: #d3dfdc; }
.browser-bar span:first-child { background: #d68e86; }
.browser-bar span:nth-child(2) { background: #ddb866; }
.browser-bar span:nth-child(3) { background: #7ebc99; }
.browser-bar b { margin-left: auto; margin-right: auto; transform: translateX(-18px); color: #49615e; font-size: .7rem; }
.preview-shell { min-height: 410px; display: grid; grid-template-columns: 62px 1fr; }
.preview-shell aside { padding: 18px 14px; background: var(--brand-dark); }
.preview-shell aside b { width: 30px; height: 30px; display: grid; place-items: center; margin-bottom: 32px; border-radius: 9px; background: #fff; color: var(--brand-dark); }
.preview-shell aside i { display: block; width: 27px; height: 7px; margin: 19px 0; border-radius: 10px; background: rgba(255,255,255,.18); }
.preview-shell aside i:nth-child(2) { background: rgba(255,255,255,.75); }
.preview-shell section { padding: 27px 28px; background: linear-gradient(180deg, #fff, #f7fbfa); }
.preview-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.preview-heading span { display: grid; }
.preview-heading small { color: #7d918e; font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; }
.preview-heading strong { font-size: 1.05rem; }
.preview-heading em { padding: 6px 10px; border-radius: 999px; background: var(--brand-light); color: var(--brand); font-size: .65rem; font-weight: 800; }
.preview-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 19px; }
.preview-kpis span { min-height: 72px; display: grid; align-content: center; padding: 12px; border: 1px solid #e1ece9; border-radius: 13px; background: #fff; color: #526865; font-size: .65rem; }
.preview-kpis b { display: block; color: var(--ink); font-size: 1.24rem; }
.preview-chart { height: 125px; display: flex; align-items: end; gap: 8px; padding: 16px 18px 0; border-radius: 15px; background: linear-gradient(180deg,#edf7f4,#f9fbfa); }
.preview-chart i { flex: 1; min-height: 20px; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg,var(--brand),#5aa69c); }
.preview-table, .rent-list { margin-top: 16px; display: grid; gap: 8px; }
.preview-table span, .rent-list span { display: flex; justify-content: space-between; align-items: center; padding: 9px 12px; border: 1px solid #e4eeec; border-radius: 10px; background: #fff; font-size: .68rem; }
.preview-table i, .rent-list i { color: #57706d; font-style: normal; }
.preview-table b, .rent-list b { color: var(--success); }
.preview-table b.warning, .rent-list b.warning { color: var(--warning); }
.phone-preview { position: absolute; right: -28px; bottom: -12px; width: 210px; min-height: 420px; padding: 13px 13px 19px; border: 7px solid #123532; border-radius: 34px; background: #f7faf9; box-shadow: 0 25px 55px rgba(5,44,41,.25); }
.phone-speaker { width: 65px; height: 5px; margin: 2px auto 17px; border-radius: 6px; background: #294b48; }
.phone-appbar { display: flex; align-items: center; gap: 9px; font-size: .72rem; }
.mini-logo { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: var(--brand); color: #fff; font-weight: 900; }
.phone-balance { margin-top: 15px; padding: 17px; border-radius: 18px; background: linear-gradient(145deg,var(--brand-dark),#0a756a); color: #fff; }
.phone-balance small, .phone-balance strong { display: block; }
.phone-balance small { opacity: .7; font-size: .58rem; }
.phone-balance strong { margin: 5px 0 11px; font-size: .86rem; }
.phone-balance button { padding: 7px 10px; border: 0; border-radius: 8px; background: #fff; color: var(--brand-dark); font-size: .6rem; font-weight: 900; }
.phone-actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin: 14px 0; }
.phone-actions span { display: grid; justify-items: center; gap: 5px; padding: 9px 2px; border-radius: 10px; background: #fff; color: #5f7471; font-size: .52rem; box-shadow: 0 4px 12px rgba(5,44,41,.06); }
.phone-actions svg { width: 15px; color: var(--brand); }
.phone-feed { display: grid; gap: 8px; }
.phone-feed span { display: grid; grid-template-columns: 9px 1fr; column-gap: 8px; padding: 9px; border: 1px solid #e4edeb; border-radius: 10px; background: #fff; }
.phone-feed i { grid-row: span 2; width: 8px; height: 8px; margin-top: 3px; border-radius: 50%; background: var(--accent); }
.phone-feed b { font-size: .58rem; }
.phone-feed small { color: #526865; font-size: .5rem; }
.guard-preview { position: absolute; left: -25px; bottom: 22px; display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 10px; min-width: 290px; padding: 13px 14px; border: 1px solid #d9e7e3; border-radius: 17px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); }
.guard-preview > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: var(--brand-light); color: var(--brand); }
.guard-preview > span svg { width: 19px; }
.guard-preview div { display: grid; }
.guard-preview small { color: #7a8d8a; font-size: .58rem; }
.guard-preview strong { font-size: .72rem; }
.guard-preview > b { padding: 7px 9px; border-radius: 8px; background: var(--brand); color: #fff; font-size: .58rem; }
.trust-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-band .container { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #526865; font-size: .76rem; font-weight: 760; }
.trust-band span { white-space: nowrap; }

/* Audience */
.audience-section { background: #fff; }
.audience-tabs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; }
.audience-tab { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #4c6561; font-size: .82rem; font-weight: 760; cursor: pointer; }
.audience-tab.active, .audience-tab[aria-pressed="true"] { border-color: var(--brand); background: var(--brand); color: #fff; }
.audience-panel { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 48px; min-height: 570px; padding: 45px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg,#f7fbfa,#edf6f3); }
.audience-copy h3 { max-width: 520px; font-size: clamp(2rem,3.4vw,3.4rem); }
.audience-copy > p { max-width: 550px; font-size: 1.05rem; }
.audience-visual { transition: opacity .2s var(--ease), transform .2s var(--ease); }
.audience-visual.changing { opacity: .2; transform: translateY(6px); }
.check-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: #3f5753; }
.check-list svg { width: 19px; margin-top: 2px; color: var(--brand); }
.check-list.compact { margin: 20px 0 0; gap: 8px; font-size: .9rem; }
.check-list.large { font-size: 1.03rem; }

/* Grids */
.outcomes-section { background: var(--brand-dark); color: #fff; }
.outcomes-section .kicker { color: #f2d48e; }
.outcomes-section .section-head p { color: #b8cfcb; }
.outcome-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.outcome-grid article { min-height: 270px; padding: 30px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.outcome-grid article > span { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 48px; border-radius: 14px; background: rgba(255,255,255,.09); color: #d6b265; }
.outcome-grid h3 { font-size: 1.35rem; }
.outcome-grid p { color: #b8cfcb; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.product-card { min-height: 400px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border .25s var(--ease); }
.product-card:hover { transform: translateY(-6px); border-color: #b7d4ce; box-shadow: var(--shadow-sm); }
.product-card.featured { background: linear-gradient(145deg,var(--brand-dark),#0b5a52); color: #fff; border-color: transparent; }
.product-card.featured p, .product-card.featured li { color: #bfd4d0; }
.product-card.featured .card-link { color: #fff; }
.product-card-top { min-height: 58px; display: flex; justify-content: space-between; align-items: flex-start; }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--soft); color: var(--brand); }
.featured .icon-box { background: rgba(255,255,255,.1); color: #fff; }
.tag { padding: 6px 9px; border-radius: 999px; background: var(--accent-soft); color: #765317; font-size: .62rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.product-card h3 { margin-top: 28px; font-size: 1.55rem; }
.product-card ul { padding-left: 18px; color: var(--muted); font-size: .86rem; }
.product-card .card-link { margin-top: auto; padding-top: 22px; }
.capability-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.capability-grid article { min-height: 235px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.capability-grid article > span { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 30px; border-radius: 13px; background: var(--brand-light); color: var(--brand); }
.capability-grid h3 { font-size: 1.2rem; }
.capability-grid p { font-size: .92rem; }
.compact-grid article { min-height: 180px; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 80px; }

/* Tour */
.tour-section { overflow: hidden; background: #f4f0e7; }
.tour-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 55px; }
.tour-controls { display: grid; gap: 7px; margin-top: 30px; }
.tour-tab { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 8px; padding: 12px 14px; border: 1px solid transparent; border-radius: 12px; background: transparent; color: #5b6c69; text-align: left; cursor: pointer; }
.tour-tab b { color: var(--accent-dark); font-size: .7rem; }
.tour-tab span { font-weight: 740; }
.tour-tab.active { border-color: #d7ccb8; background: rgba(255,255,255,.65); color: var(--ink); }
.tour-play { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding: 0; border: 0; background: transparent; color: var(--brand); font-size: .82rem; font-weight: 780; cursor: pointer; }
.tour-play svg { width: 16px; }
.tour-stage { position: relative; min-height: 655px; padding: 32px; border-radius: var(--radius-lg); background: var(--brand-dark); color: #fff; box-shadow: var(--shadow); }
.tour-stage .product-preview { margin-top: 10px; box-shadow: none; }
.tour-progress { height: 3px; margin-bottom: 20px; overflow: hidden; border-radius: 5px; background: rgba(255,255,255,.13); }
.tour-progress i { display: block; width: 0; height: 100%; background: #ddb767; }
.tour-caption { padding: 24px 4px 0; }
.tour-caption span { color: #d9b96e; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.tour-caption h3 { margin-top: 8px; font-size: 1.55rem; }
.tour-caption p { color: #b8cfcb; }

/* Preview variants */
.bed-map { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.bed-tile { display: grid; padding: 13px; border: 1px solid #7bc9a0; border-radius: 11px; background: #eff9f3; color: #245c40; font-size: .7rem; font-weight: 800; }
.bed-tile small { color: #668175; font-size: .54rem; font-weight: 600; }
.bed-tile.occupied { border-color: #e5bd78; background: #fff7e9; color: #77531b; }
.service-preview { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.service-preview span { display: grid; justify-items: start; gap: 8px; padding: 18px 14px; border: 1px solid #e0ebe8; border-radius: 13px; background: #fff; }
.service-preview svg { width: 22px; color: var(--brand); }
.service-preview b { font-size: .7rem; }
.service-preview small { color: #728784; font-size: .55rem; }
.health-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.health-grid span { padding: 22px 15px; border-radius: 13px; font-size: .72rem; font-weight: 820; }
.health-good { background: #e8f7ee; color: #26704b; }
.health-watch { background: #fff5de; color: #846019; }
.health-risk { background: #feeceb; color: #9b4039; }
.migration-preview { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.migration-preview span { display: grid; place-items: center; padding: 17px 6px; border-radius: 12px; background: #edf7f4; }
.migration-preview b { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; font-size: .7rem; }
.migration-preview small { margin-top: 7px; color: #607773; font-size: .52rem; }
.validation-line { margin-top: 15px; padding: 14px; border-radius: 12px; background: #fff; box-shadow: 0 4px 14px rgba(5,44,41,.06); }
.validation-line b { display: block; color: var(--success); font-size: 1.3rem; }
.validation-line span { color: #6d817e; font-size: .58rem; }

/* Proof / security */
.proof-section { background: #fff; }
.proof-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 70px; }
.proof-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.proof-grid article { min-height: 200px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.proof-grid b, .principle-grid b { color: var(--accent); font-size: .75rem; }
.proof-grid h3 { margin-top: 24px; }
.security-highlight { background: var(--soft); }
.security-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 70px; }
.security-card { min-height: 430px; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; border-radius: var(--radius-lg); background: linear-gradient(145deg,var(--brand-dark),#0c5c54); color: #fff; box-shadow: var(--shadow); }
.security-card > span { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: auto; border-radius: 18px; background: rgba(255,255,255,.1); color: #e0bd72; }
.security-card small { color: #b7d0cb; text-transform: uppercase; letter-spacing: .11em; }
.security-card strong { max-width: 520px; margin: 10px 0 25px; font-size: 1.75rem; line-height: 1.25; }
.security-card a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 800; }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.timeline article { position: relative; min-height: 190px; padding: 26px; border-top: 3px solid var(--brand); background: #fff; }
.timeline b { color: var(--accent); }
.timeline h3 { margin-top: 30px; }
.product-timeline article { min-height: 155px; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; }
.accordion { display: grid; gap: 10px; }
.accordion details { border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.accordion summary { padding: 20px 22px; font-weight: 780; cursor: pointer; }
.accordion p { padding: 0 22px 20px; margin: 0; }

/* Forms and conversion */
.conversion-section { background: var(--brand-dark); }
.conversion-panel { display: grid; grid-template-columns: .78fr 1.22fr; gap: 54px; align-items: center; padding: 55px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.conversion-copy h2 { font-size: clamp(2rem,3vw,3.3rem); }
.lead-form { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
[data-quick-lead-form] { box-shadow: none; background: #f8fbfa; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label, .proposal-builder label { display: block; margin-bottom: 15px; color: #304a46; font-size: .77rem; font-weight: 780; }
.lead-form input, .lead-form select, .lead-form textarea, .proposal-builder input, .proposal-builder select, .proposal-builder textarea {
  width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #cbdcd8; border-radius: 11px; background: #fff; color: var(--ink); transition: border .2s, box-shadow .2s;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus, .proposal-builder input:focus, .proposal-builder select:focus, .proposal-builder textarea:focus { border-color: var(--brand); outline: 0; box-shadow: 0 0 0 4px rgba(11,107,96,.1); }
.consent { display: flex !important; gap: 9px; align-items: flex-start; color: var(--muted) !important; font-weight: 520 !important; }
.consent input { width: auto; margin: 4px 0 0; }
.consent a { color: var(--brand); text-decoration: underline; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-submit-row { display: flex; align-items: center; gap: 16px; margin-top: 6px; }
.form-note { color: #526865; font-size: .72rem; }
.form-status { min-height: 24px; margin-top: 12px; color: var(--muted); font-size: .8rem; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.form-heading { margin-bottom: 24px; }
.form-heading h2 { font-size: 2rem; }

/* Product pages */
.product-hero { overflow: hidden; padding: 96px 0 88px; background: linear-gradient(145deg,#f3faf8,var(--paper)); }
.product-hero-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 65px; }
.product-hero h1, .simple-hero h1 { font-size: clamp(3rem,5.6vw,5.6rem); }
.back-link { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 24px; color: #687e7a; font-size: .8rem; font-weight: 740; }
.back-link svg { width: 16px; transform: rotate(180deg); }
.role-chips, .inline-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.role-chips span, .inline-links a { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.8); color: #526a66; font-size: .7rem; font-weight: 760; }
.product-outcomes { background: #fff; }
.product-proof { background: var(--soft-warm); }
.platform-map { position: relative; min-height: 420px; display: grid; grid-template-columns: repeat(3,1fr); place-content: center; gap: 14px; padding: 44px; border-radius: var(--radius-lg); background: var(--brand-dark); }
.platform-map span { padding: 16px 10px; border: 1px solid var(--line-dark); border-radius: 13px; color: #bad0cc; text-align: center; font-size: .75rem; }
.platform-map strong { grid-column: 1/-1; padding: 24px; border-radius: 15px; background: #fff; color: var(--brand-dark); text-align: center; font-size: 1.35rem; }

/* Content pages */
.simple-hero { padding: 100px 0 80px; text-align: center; background: radial-gradient(circle at 50% 0,rgba(195,139,47,.13),transparent 34%), linear-gradient(180deg,#f4faf8,var(--paper)); }
.simple-hero .hero-lede { margin-left: auto; margin-right: auto; }
.simple-hero .hero-actions { justify-content: center; }
.demo-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 55px; }
.expect-list { display: grid; gap: 18px; margin: 30px 0; }
.expect-list article { display: grid; grid-template-columns: 42px 1fr; column-gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.expect-list b { grid-row: span 2; color: var(--accent); }
.expect-list h3 { margin-bottom: 4px; font-size: 1.05rem; }
.expect-list p { margin: 0; font-size: .88rem; }
.security-principles { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.security-principles article { padding: 35px; border-left: 3px solid var(--brand); background: #fff; box-shadow: var(--shadow-sm); }
.security-principles span { color: var(--accent); font-weight: 900; }
.callout { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 44px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.implementation-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.implementation-grid article { min-height: 350px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.implementation-grid b { color: var(--accent); }
.implementation-grid h2 { margin-top: 40px; font-size: 1.55rem; }
.implementation-grid ul { padding-left: 18px; color: var(--muted); }
.metric-list { display: grid; gap: 11px; }
.metric-list span { display: grid; padding: 18px; border-radius: 14px; background: #fff; }
.metric-list small { color: #71837f; }
.support-journey { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 55px; }
.sla-card { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 30px; border-radius: var(--radius); background: var(--brand-dark); color: #fff; }
.sla-card span { display: grid; text-align: center; }
.sla-card small { color: #adc7c2; }
.sla-card i { width: 40px; height: 2px; background: #557a75; }
.integration-flow { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 50px; padding: 26px; border-radius: var(--radius); background: var(--brand-dark); color: #fff; }
.integration-flow span { padding: 11px 14px; border: 1px solid var(--line-dark); border-radius: 10px; background: rgba(255,255,255,.04); font-size: .78rem; font-weight: 780; }
.integration-flow svg { width: 18px; color: #d8b76c; }
.integration-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.integration-grid article { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.integration-grid article > span { color: var(--brand); }
.integration-grid small { color: #8b6b34; font-size: .67rem; font-weight: 760; }
.about-story { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.about-story p { font-size: 1.15rem; }
.principle-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.principle-grid article { min-height: 230px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.principle-grid h3 { margin-top: 28px; }
.metric-framework { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.metric-framework article { padding: 28px; border-radius: var(--radius); background: var(--brand-dark); color: #fff; }
.metric-framework span { color: #d8b96d; font-size: .7rem; text-transform: uppercase; letter-spacing: .11em; }
.metric-framework p { color: #b5ceca; }
.evidence-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.status-shell { max-width: 960px; }
.status-summary { display: flex; gap: 18px; align-items: center; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.status-summary h2 { font-size: 1.4rem; }
.status-dot { width: 14px; height: 14px; flex: 0 0 auto; border-radius: 50%; background: #899a97; box-shadow: 0 0 0 7px rgba(137,154,151,.12); }
.status-dot.operational { background: var(--success); box-shadow: 0 0 0 7px rgba(19,123,84,.12); }
.status-components { display: grid; gap: 9px; margin: 20px 0; }
.status-components article { display: flex; justify-content: space-between; padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.status-components b { color: #728582; font-size: .8rem; }
.release-list { display: grid; gap: 18px; max-width: 960px; }
.release-list article { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.release-list time { color: var(--accent); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.release-list h2 { margin-top: 10px; font-size: 1.8rem; }
.release-list span { color: var(--brand); font-size: .72rem; font-weight: 800; }
.table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; min-width: 720px; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.comparison-table th, .comparison-table td { padding: 18px; border-bottom: 1px solid var(--line); text-align: left; }
.comparison-table thead th { background: var(--brand-dark); color: #fff; }
.comparison-table tbody th { width: 42%; }
.table-note { margin-top: 15px; font-size: .78rem; }
.proposal-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 35px; align-items: start; }
.proposal-builder, .proposal-preview { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.proposal-preview { position: sticky; top: 100px; box-shadow: var(--shadow-sm); }
.proposal-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 25px 0; }
.proposal-facts span { display: grid; padding: 14px; border-radius: 12px; background: var(--soft); }
.proposal-facts small { color: #6d817d; }
.proposal-preview li { margin: 8px 0; }
.legal-content { max-width: 840px; }
.legal-content h2 { margin-top: 36px; font-size: 1.6rem; }
.legal-note { margin-top: 40px; padding: 18px; border-left: 3px solid var(--accent); background: var(--soft-warm); }

/* Plans and offers */
.plans-section { background: linear-gradient(180deg,#fff 0%,#f5f8f7 100%); }
.plans-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; align-items: stretch; }
.plan-card { width: 100%; min-width: 0; display: flex; flex-direction: column; min-height: 590px; height: 100%; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 34px rgba(7,59,55,.06); }
.plan-card.featured { border-color: transparent; background: linear-gradient(150deg,var(--brand-dark),#0c5c54); color: #fff; box-shadow: var(--shadow); }
.plan-card-head { min-height: 58px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.plan-card-head > div { min-width: 0; }
.plan-label { color: var(--accent-dark); font-size: .68rem; font-weight: 820; text-transform: uppercase; letter-spacing: .12em; }
.plan-card.featured .plan-label { color: #e5c77e; }
.plan-card h3 { margin: 8px 0 0; font-size: 1.85rem; overflow-wrap: anywhere; }
.plan-badge { padding: 7px 10px; border-radius: 999px; background: #f4e7c7; color: #6f531b; font-size: .66rem; font-weight: 840; white-space: nowrap; }
.plan-audience { min-height: 48px; margin: 22px 0 10px; color: var(--ink); font-weight: 780; }
.plan-card > p:not(.plan-audience) { color: var(--muted); }
.plan-card.featured .plan-audience { color: #fff; }
.plan-card.featured > p:not(.plan-audience), .plan-card.featured .check-list li { color: #bfd4d0; }
.plan-card .check-list { margin: 22px 0 28px; }
.plan-card .check-list li { align-items: flex-start; }
.plan-card .plan-actions { margin-top: auto; }
.plan-card .plan-actions .button { width: 100%; justify-content: center; }
.plan-card.featured .button { border-color: #fff; background: #fff; color: var(--brand-dark); }
.plan-strip-section { padding-top: 0; }
.plan-strip { display: grid; grid-template-columns: minmax(0,1.45fr) auto; align-items: center; gap: 34px; padding: 36px 40px; border: 1px solid #d9e6e3; border-radius: var(--radius); background: var(--soft); }
.plan-strip h2 { margin: 6px 0 10px; font-size: clamp(1.65rem,3vw,2.35rem); }
.plan-strip p { margin: 0; }
.plan-strip-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 12px; }
.addon-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.addon-grid article { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.addon-grid article > span { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 13px; background: var(--soft); color: var(--brand); }
.addon-grid article svg { width: 22px; }
.addon-grid h3 { font-size: 1.15rem; }
.addon-grid p { color: var(--muted); font-size: .86rem; }

/* Footer */
.site-footer { padding: 72px 0 26px; background: var(--brand-deep); color: #fff; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(4,1fr); gap: 38px; }
.footer-main h2 { margin-bottom: 18px; color: #d8b96d; font-size: .75rem; text-transform: uppercase; letter-spacing: .11em; }
.footer-main > div:not(.footer-brand) a { display: block; margin: 9px 0; color: #a9c1bd; font-size: .82rem; }
.footer-main a:hover { color: #fff; }
.footer-brand p { max-width: 340px; margin: 18px 0 22px; color: #a9c1bd; font-size: .88rem; }
.footer-brand .brand-symbol { background: #fff; color: var(--brand-dark); box-shadow: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 55px; padding-top: 22px; border-top: 1px solid #244943; color: #819e99; font-size: .72rem; }

@media (max-width: 1080px) {
  .primary-nav { gap: 18px; }
  .hero-layout, .product-hero-layout { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-product-stack { min-height: 550px; }
  .phone-preview { right: -10px; transform: scale(.9); transform-origin: bottom right; }
  .guard-preview { left: -8px; }
  .product-grid, .capability-grid, .implementation-grid, .integration-grid, .principle-grid, .addon-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .plans-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .plans-grid > .plan-card:last-child:nth-child(odd) { grid-column: 1 / -1; width: min(100%, calc((100% - 20px) / 2)); justify-self: center; }
  .outcome-grid, .metric-framework { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1.4fr repeat(2,minmax(0,1fr)); }
  .footer-brand { grid-row: span 2; }
}

@media (max-width: 1060px) {
  .nav-shell { min-height: 70px; flex-wrap: wrap; gap: 0; }
  .brand, .menu-button { margin-top: 13px; margin-bottom: 13px; }
  .menu-button { display: inline-flex; }
  .primary-nav, .nav-actions { display: none; }
  .site-header.menu-open { background: var(--paper); box-shadow: var(--shadow-sm); }
  .site-header.menu-open .nav-shell { padding-bottom: 16px; }
  .site-header.menu-open .primary-nav {
    position: static;
    order: 3;
    display: flex;
    flex: 0 0 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }
  .site-header.menu-open .primary-nav a { min-height: 48px; padding: 11px 8px; border-radius: 10px; }
  .site-header.menu-open .primary-nav a:hover,
  .site-header.menu-open .primary-nav a.is-current { background: var(--soft); color: var(--brand); }
  .site-header.menu-open .primary-nav a.is-current::after { display: none; }
  .site-header.menu-open .nav-actions {
    position: static;
    order: 4;
    display: grid;
    flex: 0 0 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .site-header.menu-open .nav-actions a { width: 100%; min-height: 46px; text-align: center; }
  .site-header.menu-open .login-link { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--brand-dark); }
}

@media (max-width: 900px) {
  .hero-layout, .product-hero-layout, .audience-panel, .tour-layout, .proof-layout, .security-layout, .faq-layout, .conversion-panel, .demo-layout, .support-journey, .about-story, .evidence-box, .proposal-layout, .two-column, .plan-strip { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-product-stack { min-height: 610px; max-width: 760px; margin: auto; }
  .trust-band .container { overflow-x: auto; justify-content: flex-start; }
  .section-head.split { grid-template-columns: 1fr; gap: 14px; }
  .plan-strip-actions { justify-content: flex-start; }
  .tour-stage { min-height: 620px; }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: repeat(2,1fr); }
  .footer-brand { grid-column: 1/-1; grid-row: auto; }
  .proposal-preview { position: static; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 54px 0; }
  h1 { letter-spacing: -.045em; }
  .hero { padding: 72px 0 55px; }
  .hero-layout { gap: 30px; }
  .hero-product-stack { min-height: 470px; }
  .product-preview { border-radius: 18px; }
  .preview-shell { grid-template-columns: 42px 1fr; min-height: 330px; }
  .preview-shell aside { padding: 12px 8px; }
  .preview-shell aside b { width: 26px; height: 26px; }
  .preview-shell aside i { width: 22px; }
  .preview-shell section { padding: 18px 14px; }
  .preview-kpis { gap: 5px; }
  .preview-kpis span { min-height: 60px; padding: 8px; }
  .preview-kpis b { font-size: .95rem; }
  .preview-chart { height: 95px; }
  .phone-preview { width: 160px; min-height: 335px; right: -3px; bottom: -5px; transform: scale(.87); }
  .guard-preview { left: 0; bottom: 12px; min-width: 220px; transform: scale(.83); transform-origin: bottom left; }
  .trust-band .container { overflow: auto; justify-content: flex-start; }
  .section-head { margin-bottom: 22px; }
  .audience-panel, .conversion-panel, .tour-stage, .security-card, .callout { padding: 27px; border-radius: 22px; }
  .audience-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .audience-tab { flex: 0 0 auto; }
  .outcome-grid, .product-grid, .capability-grid, .proof-grid, .implementation-grid, .integration-grid, .principle-grid, .metric-framework, .timeline, .footer-main, .security-principles, .plans-grid, .addon-grid { grid-template-columns: 1fr; }
  .form-row, .proposal-facts { grid-template-columns: 1fr; }
  .form-submit-row, .footer-bottom, .callout, .plan-strip-actions { flex-direction: column; align-items: flex-start; }
  .plan-card { min-height: auto; }
  .plans-grid > .plan-card:last-child:nth-child(odd) { grid-column: auto; width: 100%; }
  .plan-strip { padding: 28px; }
  .plan-strip-actions .button { width: 100%; justify-content: center; }
  .tour-stage { min-height: auto; }
  .tour-stage .preview-shell { min-height: 300px; }
  .service-preview { grid-template-columns: 1fr; }
  .bed-map { grid-template-columns: repeat(2,1fr); }
  .integration-flow { align-items: stretch; flex-direction: column; }
  .integration-flow svg { margin: auto; transform: rotate(90deg); }
  .sla-card { align-items: stretch; flex-direction: column; }
  .sla-card i { width: 2px; height: 24px; margin: auto; }
  .status-components article { gap: 12px; flex-direction: column; }
}

@media (max-width: 480px) {
  .site-header.menu-open .nav-actions { grid-template-columns: 1fr; }
  .site-header.menu-open .nav-actions a { justify-content: center; }
}

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

@media print {
  .site-header, .site-footer, .no-print, .conversion-section, .hero-actions { display: none !important; }
  body { background: #fff; }
  .section, .simple-hero { padding: 20px 0; }
  .proposal-preview { border: 0; box-shadow: none; }
}
