:root {
  --ink: #06131e;
  --ink-2: #0b1d2b;
  --ink-3: #102a3b;
  --paper: #f5f2e9;
  --paper-2: #ebe7dc;
  --white: #fffefa;
  --mint: #11cfaa;
  --mint-2: #80efd7;
  --sky: #75cfff;
  --amber: #ffcc72;
  --rose: #ff8f9f;
  --text: #10202b;
  --muted: #5e6a70;
  --line: rgba(7, 24, 36, .14);
  --line-dark: rgba(255, 255, 255, .12);
  --shadow: 0 24px 80px rgba(7, 24, 36, .14);
  --shadow-soft: 0 12px 34px rgba(7, 24, 36, .08);
  --radius: 22px;
  --radius-sm: 13px;
  --wrap: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 2%, rgba(17, 207, 170, .10), transparent 27rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
.skip-link {
  position: fixed; z-index: 1000; left: 16px; top: -80px;
  padding: 10px 14px; border-radius: 10px; background: var(--white); color: var(--ink);
  box-shadow: var(--shadow-soft); font-weight: 750;
}
.skip-link:focus { top: 16px; }
.wrap { width: var(--wrap); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }
.muted { color: var(--muted); }
.kicker {
  margin: 0 0 12px; color: #087e6a; font-size: .75rem; font-weight: 850;
  letter-spacing: .16em; line-height: 1.3; text-transform: uppercase;
}
.on-dark .kicker, .dark-section .kicker { color: var(--mint-2); }
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 7vw, 6.7rem); font-weight: 820; }
h2 { font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 800; }
h3 { font-size: clamp(1.12rem, 2vw, 1.45rem); font-weight: 780; letter-spacing: -.02em; }
.on-dark h1, .on-dark h2, .on-dark h3, .dark-section h2, .dark-section h3 { color: var(--white); }
.lede { max-width: 730px; margin: 22px 0 0; font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); }
.on-dark .lede, .dark-section .lede { color: #b9c9d2; }
.fine { font-size: .82rem; color: var(--muted); }

/* Header */
.site-header {
  position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(6, 19, 30, .91); color: #eaf5f3; backdrop-filter: blur(18px);
}
.nav-row { min-height: 72px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 830; letter-spacing: -.02em; }
.brand img { width: 35px; height: 35px; border-radius: 10px; }
.brand small { margin-left: 3px; color: #8ea2ad; font-size: .62rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.main-nav a { padding: 10px 12px; border-radius: 9px; color: #bac9cf; font-size: .9rem; font-weight: 680; text-decoration: none; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: white; background: rgba(255,255,255,.07); }
.nav-cta { color: var(--ink) !important; background: var(--mint) !important; }
.nav-cta:hover { background: var(--mint-2) !important; }
.menu-button { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line-dark); border-radius: 11px; color: white; background: transparent; cursor: pointer; }

/* Buttons */
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 19px; border: 1px solid transparent; border-radius: 12px; background: var(--ink);
  color: white; font-size: .92rem; font-weight: 780; text-decoration: none; box-shadow: 0 8px 24px rgba(7,24,36,.13);
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--mint); color: var(--ink); }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.45); color: var(--ink); box-shadow: none; }
.on-dark .button.secondary { border-color: var(--line-dark); background: rgba(255,255,255,.05); color: white; }
.app-static-label { align-self: center; padding: 11px 0; color: var(--muted); font-size: .92rem; font-weight: 780; }
.on-dark .app-static-label { color: #aebdc5; }
.text-link { color: #087e6a; font-weight: 780; text-underline-offset: 4px; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(70px, 10vw, 132px) 0 clamp(74px, 10vw, 126px); background: var(--ink); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(117,207,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(117,207,255,.045) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.hero::after { content: ""; position: absolute; width: 720px; height: 720px; border-radius: 50%; right: -260px; top: -320px; background: radial-gradient(circle, rgba(17,207,170,.28), transparent 67%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); align-items: center; gap: clamp(38px, 7vw, 92px); }
.hero h1 { max-width: 800px; }
.hero h1 em { color: var(--mint); font-style: normal; }
.hero-note { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 24px; color: #9fb2bc; font-size: .82rem; }
.hero-note span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--mint); }

/* Truthful architecture visual — deliberately not styled as app UI */
.storage-visual { position: relative; margin: 0; padding: clamp(22px, 4vw, 36px); border: 1px solid rgba(128,239,215,.22); border-radius: 26px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.storage-visual figcaption { display: flex; align-items: start; justify-content: space-between; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); color: white; }
.storage-visual figcaption strong, .storage-visual figcaption span { display: block; }
.storage-visual figcaption strong { font-size: 1rem; }
.storage-visual figcaption span { max-width: 180px; color: #89a0ab; font-size: .68rem; text-align: right; }
.storage-flow { display: grid; grid-template-columns: minmax(0,1fr) 70px minmax(0,1fr) 70px minmax(0,1fr); align-items: center; gap: 10px; padding: 28px 0 20px; }
.flow-node { min-height: 174px; display: flex; flex-direction: column; justify-content: center; padding: 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; color: #dfe9ed; background: rgba(5,17,27,.82); }
.flow-node.encrypt-node { border-color: rgba(117,207,255,.3); background: rgba(9,35,52,.88); }
.flow-node.drive-node { border-color: rgba(128,239,215,.28); background: rgba(6,39,44,.78); }
.flow-node b, .flow-node small, .flow-backup b, .flow-backup small { display: block; }
.flow-node b { margin: 7px 0 8px; font-size: 1rem; }
.flow-node small { color: #91a6b0; line-height: 1.45; }
.flow-kicker { color: var(--mint-2); font-size: .62rem; font-weight: 850; letter-spacing: .11em; }
.flow-arrow { position: relative; height: 2px; background: linear-gradient(90deg, var(--mint), var(--sky)); }
.flow-arrow::after { content: ""; position: absolute; right: -1px; top: -5px; width: 10px; height: 10px; border-top: 2px solid var(--sky); border-right: 2px solid var(--sky); transform: rotate(45deg); }
.flow-signal { position: absolute; left: 0; top: -5px; width: 12px; height: 12px; border: 2px solid #06131e; border-radius: 50%; background: var(--mint-2); box-shadow: 0 0 0 4px rgba(128,239,215,.12), 0 0 18px rgba(128,239,215,.65); animation: protected-transfer 2.8s ease-in-out infinite; }
.flow-signal-delay { animation-delay: .7s; }
.flow-return { display: flex; align-items: center; gap: 12px; margin: 0 0 14px; color: #a7bac3; font-size: .72rem; }
.flow-return span { position: relative; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(117,207,255,.1), rgba(117,207,255,.65), rgba(128,239,215,.1)); }
.flow-return span::before { content: ""; position: absolute; left: 0; top: -4px; width: 8px; height: 8px; border-bottom: 1px solid var(--sky); border-left: 1px solid var(--sky); transform: rotate(45deg); }
.flow-return b { max-width: 480px; font-weight: 650; }
.flow-backup { padding: 17px 18px; border: 1px solid rgba(255,204,114,.26); border-radius: 15px; background: rgba(255,204,114,.07); }
.flow-backup span { color: var(--amber); font-size: .64rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.flow-backup b { margin-top: 5px; color: #f2f5f5; font-size: .86rem; }
.flow-backup small { margin-top: 4px; color: #91a6b0; line-height: 1.45; }
@keyframes protected-transfer { 0%, 12% { transform: translateX(0); opacity: 0; } 22% { opacity: 1; } 78% { opacity: 1; } 90%, 100% { transform: translateX(58px); opacity: 0; } }
.format-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.format-strip span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.45); font-size: .72rem; font-weight: 780; }
.trial-flow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 30px; }
.trial-flow > div { min-height: 178px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, #fff, #edf8f4); }
.trial-flow span { display: inline-grid; width: 34px; height: 34px; margin-bottom: 22px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--mint); font-size: .68rem; font-weight: 900; letter-spacing: .06em; }
.trial-flow b, .trial-flow small { display: block; }
.trial-flow b { margin-bottom: 8px; color: var(--ink); font-size: 1rem; }
.trial-flow small { color: var(--muted); font-size: .78rem; line-height: 1.55; }
.trial-flow-note { margin-top: 13px; }

/* Real product screenshots */
.hero-product-shot { width: min(440px, 100%); margin: 0; justify-self: end; }
.hero-product-shot .product-shot-frame { overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid rgba(128,239,215,.28); border-radius: 30px; background: white; box-shadow: 0 34px 90px rgba(0,0,0,.36); }
.product-shot-frame picture { display: block; width: 100%; height: 100%; }
.hero-product-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-product-shot figcaption { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-top: 16px; color: white; }
.hero-product-shot figcaption strong { font-size: .84rem; }
.hero-product-shot figcaption span { max-width: 245px; color: #8fa5b0; font-size: .72rem; line-height: 1.5; text-align: right; }
.screenshot-section { overflow: hidden; }
.product-gallery { display: grid; grid-auto-columns: minmax(270px, 30%); grid-auto-flow: column; gap: 20px; overflow-x: auto; padding: 5px 3px 24px; scroll-snap-type: x mandatory; scrollbar-color: #8aa29f transparent; scrollbar-width: thin; }
.product-gallery:focus-visible { border-radius: 18px; outline-offset: 6px; }
.product-shot { min-width: 0; margin: 0; scroll-snap-align: start; }
.product-shot-frame { overflow: hidden; aspect-ratio: 1280 / 2772; border: 1px solid rgba(7,24,36,.13); border-radius: 27px; background: white; box-shadow: 0 20px 50px rgba(7,24,36,.13); }
.product-shot img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-shot figcaption { display: grid; gap: 4px; margin-top: 14px; padding-inline: 4px; }
.product-shot figcaption strong { color: var(--ink); font-size: .9rem; }
.product-shot figcaption span { color: var(--muted); font-size: .76rem; line-height: 1.5; }
.product-gallery.desktop-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-columns: auto; grid-auto-flow: row; overflow: visible; padding-bottom: 0; scroll-snap-type: none; }
.desktop-gallery .product-shot { scroll-snap-align: none; }
.desktop-shot .product-shot-frame { aspect-ratio: auto; border-radius: 20px; }
.desktop-shot .product-shot-frame img { height: auto; object-fit: contain; object-position: top left; }
.desktop-gallery .featured-desktop-shot { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(260px, .35fr); gap: clamp(24px, 4vw, 52px); align-items: center; padding: clamp(18px, 2.2vw, 30px); border: 1px solid var(--line); border-radius: 28px; background: rgba(255,254,250,.72); box-shadow: var(--shadow-soft); }
.desktop-gallery .featured-desktop-shot figcaption { gap: 10px; margin-top: 0; padding: 0; }
.desktop-gallery .featured-desktop-shot figcaption strong { font-size: 1.15rem; }
.desktop-gallery .featured-desktop-shot figcaption span { font-size: .86rem; }
.dark-section .product-shot-frame { border-color: rgba(128,239,215,.22); box-shadow: 0 26px 60px rgba(0,0,0,.3); }
.dark-section .product-shot figcaption strong { color: white; }
.dark-section .product-shot figcaption span { color: #91a6b0; }
.screenshot-subhead { margin-top: 74px; }
.product-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 440px); align-items: center; gap: clamp(38px, 8vw, 100px); }
.compact-shot { width: min(420px, 100%); justify-self: end; }

/* Sections and grids */
.section { padding: clamp(72px, 9vw, 122px) 0; }
.section.tight { padding-block: 62px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 42px; }
.section-head p { max-width: 520px; margin: 0; color: var(--muted); }
.dark-section { background: var(--ink); color: #c3d0d6; }
.dark-section .section-head > p { color: #b9c9d2; }
.soft-section { background: var(--paper-2); }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { padding: clamp(22px, 3vw, 32px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,254,250,.72); box-shadow: var(--shadow-soft); }
.card p { margin: 12px 0 0; color: var(--muted); }
.dark-section .card { border-color: var(--line-dark); background: rgba(255,255,255,.045); box-shadow: none; }
.dark-section .card p { color: #aebec6; }
.number { display: block; margin-bottom: 28px; color: #087e6a; font-size: .72rem; font-weight: 850; letter-spacing: .14em; }
.dark-section .number { color: var(--mint-2); }
.feature-icon { display: grid; width: 46px; height: 46px; margin-bottom: 25px; place-items: center; border: 1px solid rgba(17,207,170,.3); border-radius: 13px; color: #087e6a; background: rgba(17,207,170,.09); font-size: 1.05rem; font-weight: 900; }
.dark-section .feature-icon { color: var(--mint-2); }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px 28px; margin: 23px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 20px; color: var(--muted); font-size: .92rem; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: .68em; width: 8px; height: 8px; border-radius: 3px; background: var(--mint); }
.dark-section .feature-list li { color: #b5c4cb; }
.statement { padding: clamp(34px, 6vw, 72px); border-radius: 30px; background: var(--ink-2); color: white; box-shadow: var(--shadow); }
.statement h2, .statement h3 { color: var(--white); }
.statement p { max-width: 830px; margin: 20px 0 0; color: #b7c6cd; font-size: 1.08rem; }
.proof-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; overflow: hidden; margin-top: 36px; border: 1px solid var(--line-dark); border-radius: 15px; background: var(--line-dark); }
.proof-row div { padding: 20px; background: var(--ink); }
.proof-row b { display: block; color: var(--mint-2); font-size: 1.05rem; }
.proof-row span { display: block; margin-top: 4px; color: #8fa5b0; font-size: .74rem; }

/* Page heroes */
.page-hero { padding: clamp(68px, 9vw, 112px) 0 78px; border-bottom: 1px solid var(--line-dark); background: var(--ink); }
.page-hero h1 { max-width: 940px; font-size: clamp(2.7rem, 6vw, 5.4rem); }
.page-hero .lede { max-width: 820px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: #8ca1ac; font-size: .78rem; }
.breadcrumbs a { color: var(--mint-2); text-decoration: none; }

/* Documentation */
.doc-layout { display: grid; grid-template-columns: 238px minmax(0, 760px); gap: clamp(36px, 7vw, 90px); align-items: start; padding: 68px 0 110px; }
.toc { position: sticky; top: 100px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,254,250,.6); }
.toc b { display: block; margin-bottom: 10px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.toc a { display: block; padding: 6px 0; color: var(--muted); font-size: .83rem; text-decoration: none; }
.toc a:hover { color: #087e6a; }
.doc-body h2 { margin: 52px 0 17px; padding-top: 12px; font-size: clamp(1.55rem,3vw,2.25rem); }
.doc-body h2:first-child { margin-top: 0; }
.doc-body h3 { margin: 32px 0 10px; }
.doc-body p { margin: 0 0 18px; }
.doc-body ul, .doc-body ol { margin: 0 0 22px; padding-left: 22px; }
.doc-body li { margin: 7px 0; }
.doc-body a { color: #087e6a; font-weight: 700; text-underline-offset: 3px; }
.doc-body blockquote { margin: 30px 0; padding: 20px 22px; border: 1px solid rgba(17,207,170,.28); border-left: 4px solid var(--mint); border-radius: 12px; color: #36505c; background: rgba(17,207,170,.07); }
.callout { margin: 26px 0; padding: 20px 22px; border: 1px solid rgba(17,207,170,.28); border-left: 4px solid var(--mint); border-radius: 12px; background: rgba(17,207,170,.07); }
.callout.warning { border-color: rgba(255,177,79,.38); border-left-color: #f4a846; background: rgba(255,177,79,.09); }
.callout strong { display: block; margin-bottom: 5px; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 26px; color: #96a9b3; font-size: .82rem; }
.table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.5); }
table { width: 100%; border-collapse: collapse; font-size: .88rem; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--ink); background: rgba(7,24,36,.045); font-size: .76rem; letter-spacing: .04em; }
tr:last-child td { border-bottom: 0; }
code { padding: 2px 6px; border-radius: 6px; color: var(--text); background: rgba(7,24,36,.055); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: .86em; }

/* Search content system */
.content-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.content-card { display: flex; min-height: 270px; flex-direction: column; padding: clamp(24px, 3vw, 34px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,254,250,.78); box-shadow: var(--shadow-soft); }
.content-card h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2.6vw, 2rem); }
.content-card h3 a { color: var(--ink); text-decoration: none; }
.content-card h3 a:hover { color: #087e6a; }
.content-card p { margin: 0 0 24px; color: var(--muted); }
.content-card .text-link { margin-top: auto; }
.directory-subhead { margin-top: 78px; }
.directory-actions { margin-top: 34px; }
.content-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 26px; color: #96a9b3; font-size: .78rem; }
.content-page-shot { padding-bottom: 28px; background: linear-gradient(var(--ink) 0 38%, var(--paper) 38%); }
.content-page-shot .product-shot { width: min(1120px, 100%); margin-inline: auto; }
.content-page-shot .product-shot-frame { box-shadow: 0 28px 70px rgba(7,24,36,.22); }
.content-article { padding-top: 46px; }
.related-content { border-top: 1px solid var(--line); }
.content-system-note { margin-top: 32px; }

/* Help */
.search-panel { margin-top: -28px; position: relative; z-index: 3; }
.search-box { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: var(--shadow-soft); }
.search-box input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; }
.help-card { display: flex; min-height: 210px; flex-direction: column; text-decoration: none; transition: transform .18s ease, border-color .18s ease; }
.help-card:hover { transform: translateY(-3px); border-color: rgba(17,207,170,.55); }
.help-card .arrow { margin-top: auto; padding-top: 24px; color: #087e6a; font-weight: 850; }
.steps { list-style: none !important; counter-reset: steps; padding: 0 !important; }
.steps li { position: relative; min-height: 56px; padding: 0 0 22px 56px; counter-increment: steps; }
.steps li::before { content: counter(steps); position: absolute; left: 0; top: 0; display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; color: var(--ink); background: var(--mint); font-size: .8rem; font-weight: 850; }
.status-badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border-radius: 99px; color: #087866; background: #dff7f0; font-size: .75rem; font-weight: 800; }
.status-badge.is-planned { color: #805b16; background: #fff0cc; }
.platform-card-title { margin-top: 22px; font-size: 2rem; }
.roadmap-card-title { margin-top: 20px; }
.address-title { font-size: 2rem; }
.status-badge::before { content:""; width:7px; height:7px; border-radius:50%; background:#0ba989; }

/* Pricing */
.price-card { position: relative; display: flex; min-height: 410px; flex-direction: column; }
.price-card.featured { border-color: rgba(17,207,170,.65); box-shadow: 0 20px 58px rgba(17,207,170,.14); }
.plan-label { font-size: .75rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.price { margin: 20px 0 4px; color: var(--ink); font-size: 2.6rem; font-weight: 850; letter-spacing: -.05em; line-height: 1; }
.price small { color: var(--muted); font-size: .88rem; font-weight: 650; letter-spacing: 0; }
.plan-note { min-height: 48px; color: var(--muted); font-size: .85rem; }
.price-card ul { margin: 22px 0 28px; padding: 0; list-style: none; }
.price-card li { margin: 9px 0; padding-left: 19px; position: relative; font-size: .87rem; }
.price-card li::before { content: "+"; position: absolute; left: 0; color: #087e6a; font-weight: 900; }
.price-card .button { margin-top: auto; }
.badge-top { position: absolute; right: 18px; top: 18px; padding: 5px 9px; border-radius: 99px; color: #087866; background: #dff7f0; font-size: .65rem; font-weight: 850; }
.compact-price-card { min-height: 284px; }
.compact-price-card .price { margin-top: 24px; }
.compact-price-card p { min-height: 66px; }
.price-detail { display: block; margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--line); color: #55707a; font-size: .72rem; font-weight: 720; }
.pricing-disclaimer, .pricing-longer-plan-note, .referral-release-note { margin-top: 22px; }
.checkout-support { margin-top: 24px; }
.checkout-query-note { margin-top: 20px; }
.pricing-summary-note { margin: 20px 0 24px; }
.audit-status-card { border-color: rgba(255,177,79,.42); background: rgba(255,177,79,.08); }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { padding: 20px 4px; cursor: pointer; color: var(--ink); font-weight: 780; }
details p { margin: -5px 4px 22px; color: var(--muted); }

/* CTA & footer */
.cta { overflow: hidden; position: relative; padding: 58px; border-radius: 30px; background: var(--mint); }
.cta::after { content:""; position:absolute; width:360px; height:360px; right:-150px; top:-180px; border:70px solid rgba(6,19,30,.08); border-radius:50%; }
.cta h2 { max-width: 720px; font-size: clamp(2rem,4vw,3.6rem); }
.cta p { max-width: 690px; color: #174b43; }
.cta .actions { position: relative; z-index: 2; }
.site-footer { padding: 64px 0 30px; color: #aebdc5; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4,1fr); gap: 36px; }
.app-footer-grid { grid-template-columns: 1.5fr repeat(2,1fr); }
.footer-brand p { max-width: 310px; color: #8397a2; font-size: .85rem; }
.footer-col b { display: block; margin-bottom: 14px; color: white; font-size: .77rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; margin: 8px 0; color: #99abb4; font-size: .83rem; text-decoration: none; }
.footer-col a:hover { color: var(--mint-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 52px; padding-top: 23px; border-top: 1px solid var(--line-dark); color: #718792; font-size: .75rem; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-product-shot { width: min(520px, 100%); margin: 20px auto 0; justify-self: center; }
  .storage-visual { width: min(680px,100%); margin: 20px auto 0; }
  .product-gallery { grid-auto-columns: minmax(260px, 44%); }
  .product-gallery.desktop-gallery { grid-template-columns: 1fr; }
  .desktop-gallery .featured-desktop-shot { grid-column: auto; grid-template-columns: 1fr; }
  .desktop-gallery .featured-desktop-shot figcaption { margin-top: 14px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .content-card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2,1fr); }
  .doc-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
}
@media (max-width: 760px) {
  :root { --wrap: min(100% - 28px, 1180px); }
  .nav-row { min-height: 64px; }
  .brand small { display: none; }
  .menu-button { display: inline-grid; place-items: center; }
  .main-nav { position: absolute; display: none; left: 14px; right: 14px; top: 69px; padding: 12px; border: 1px solid var(--line-dark); border-radius: 16px; background: #0a1d2a; box-shadow: var(--shadow); }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 12px; }
  .hero { padding-top: 66px; }
  .hero-grid { gap: 28px; }
  .hero-product-shot figcaption { display: grid; gap: 4px; }
  .hero-product-shot figcaption span { max-width: none; text-align: left; }
  .product-gallery { grid-auto-columns: minmax(250px, 82vw); }
  .trial-flow { grid-template-columns: 1fr; }
  .trial-flow > div { min-height: 0; }
  .product-split { grid-template-columns: 1fr; }
  .compact-shot { width: min(440px, 100%); margin-top: 18px; justify-self: center; }
  .storage-flow { grid-template-columns: 1fr; }
  .flow-arrow { width: 2px; height: 48px; margin: 0 auto; background: linear-gradient(var(--mint), var(--sky)); }
  .flow-arrow::after { right: -5px; top: auto; bottom: 0; transform: rotate(135deg); }
  .flow-signal { left: -5px; top: 0; animation-name: protected-transfer-vertical; }
  .flow-return { align-items: start; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 16px; }
  .feature-list { grid-template-columns: 1fr; }
  .proof-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta { padding: 34px 25px; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.65rem; }
  .button { width: 100%; }
  .actions { display: grid; }
  .storage-visual figcaption { display: block; }
  .storage-visual figcaption span { margin-top: 5px; max-width: none; text-align: left; }
  .proof-row, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .flow-signal { left: 50%; animation: none; opacity: 1; transform: translateX(-50%); }
}
@keyframes protected-transfer-vertical { 0%, 12% { transform: translateY(0); opacity: 0; } 22% { opacity: 1; } 78% { opacity: 1; } 90%, 100% { transform: translateY(36px); opacity: 0; } }
@media print {
  .site-header, .site-footer, .toc, .actions, .cta { display: none !important; }
  .flow-signal { display: none; }
  body { background: white; color: black; font-size: 11pt; }
  .page-hero { padding: 24px 0; background: white; border-bottom: 1px solid #bbb; }
  .on-dark h1, .on-dark .lede, .breadcrumbs { color: black; }
  .doc-layout { display: block; padding: 20px 0; }
  a { color: black; text-decoration: underline; }
}
