/* FusionCloud for Mac — isolated Phase 0 landing page styles */
:root {
  --forest: #1F6E5C;
  --forest-dark: #123F36;
  --forest-deep: #0D3029;
  --forest-pale: #DCE9E3;
  --sand: #C8A96B;
  --sand-dark: #A98645;
  --sand-pale: #E9DCC2;
  --paper: #F2EEE6;
  --paper-soft: #F8F5EF;
  --paper-deep: #E6DFD3;
  --ink: #17312B;
  --ink-soft: #52635E;
  --line: rgba(23, 49, 43, .16);
  --white: #FFFDF9;
  --radius-lg: 18px;
  --radius-md: 13px;
  --radius-sm: 8px;
  --shell: 1160px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 238, 230, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(140%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.brand-mark,
.mini-brand i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--paper-soft);
  background: var(--forest);
  font-weight: 760;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px 10px 10px 4px;
  font-size: 17px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  color: var(--forest-dark);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.brand-name small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid var(--forest);
  border-radius: var(--radius-sm);
  color: var(--forest-dark);
  background: transparent;
  font-size: 15px;
  font-weight: 720;
  line-height: 1;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 10px 13px;
  font-size: 13px;
}

.button-primary {
  color: var(--white);
  background: var(--forest);
}

.button-primary:hover {
  background: var(--forest-dark);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(200, 169, 107, .8);
  outline-offset: 3px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0 72px;
  background:
    radial-gradient(circle at 86% 4%, rgba(200, 169, 107, .26), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(31, 110, 92, .14);
  border-radius: 50%;
}

.hero::before {
  width: 270px;
  height: 270px;
  top: -150px;
  right: -98px;
}

.hero::after {
  width: 122px;
  height: 122px;
  right: 12%;
  bottom: -80px;
}

.hero-grid {
  display: grid;
  gap: 50px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  color: var(--forest);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
}

.hero h1 {
  max-width: 720px;
  color: var(--forest-dark);
  font-size: clamp(44px, 14vw, 76px);
  font-weight: 260;
  line-height: .99;
  letter-spacing: -.07em;
}

.hero h1 em {
  color: var(--forest);
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-top: 30px;
}

.hero-actions .button {
  min-height: 54px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--forest-dark);
  font-size: 14px;
  font-weight: 700;
}

.development-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 12px;
}

.development-note span {
  color: var(--sand-dark);
  font-size: 17px;
  line-height: 1.45;
}

.development-note strong {
  color: var(--ink);
}

.storage-visual {
  position: relative;
  min-width: 0;
  padding: 26px 22px 22px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--paper-soft);
  background: var(--forest-deep);
}

.storage-visual::after {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -94px;
  bottom: -112px;
  content: "";
  border: 1px solid rgba(255, 253, 249, .18);
  border-radius: 50%;
}

.storage-heading,
.storage-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.storage-heading {
  color: rgba(255, 253, 249, .58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.storage-numbers {
  display: grid;
  grid-template-columns: 1fr 42px 1.35fr;
  align-items: end;
  gap: 5px;
  margin: 30px 0 24px;
}

.storage-numbers p {
  display: flex;
  align-items: flex-end;
  min-width: 0;
  gap: 6px;
}

.storage-numbers p:last-child {
  justify-content: flex-end;
}

.storage-numbers strong {
  font-size: clamp(42px, 13vw, 72px);
  font-weight: 190;
  font-variant-numeric: tabular-nums;
  line-height: .8;
  letter-spacing: -.075em;
}

.storage-numbers p:first-child strong {
  color: var(--sand-pale);
}

.storage-numbers p:last-child strong {
  color: var(--white);
}

.storage-numbers p > span {
  color: rgba(255, 253, 249, .58);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .08em;
}

.storage-arrow {
  position: relative;
  display: block;
  height: 12px;
  margin-bottom: 4px;
}

.storage-arrow::before,
.storage-arrow::after {
  position: absolute;
  left: 3px;
  right: 3px;
  height: 1px;
  content: "";
  background: rgba(255, 253, 249, .28);
}

.storage-arrow::before {
  top: 2px;
}

.storage-arrow::after {
  bottom: 2px;
}

.storage-arrow i::before,
.storage-arrow i::after {
  position: absolute;
  width: 5px;
  height: 5px;
  content: "";
  border-top: 1px solid rgba(255, 253, 249, .45);
  border-right: 1px solid rgba(255, 253, 249, .45);
}

.storage-arrow i::before {
  top: 0;
  right: 2px;
  transform: rotate(45deg);
}

.storage-arrow i::after {
  left: 2px;
  bottom: 0;
  transform: rotate(-135deg);
}

.storage-meter {
  position: relative;
  display: flex;
  height: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, .17);
  border-radius: 5px;
  background: rgba(255, 253, 249, .05);
}

.storage-meter::after {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(90deg, transparent 0, transparent calc(10% - 1px), rgba(13, 48, 41, .45) calc(10% - 1px), rgba(13, 48, 41, .45) 10%);
}

.meter-local {
  width: 12%;
  background: var(--sand);
}

.meter-cloud {
  width: 88%;
  background: rgba(220, 233, 227, .42);
}

.storage-caption {
  align-items: flex-start;
  margin-top: 12px;
  color: rgba(255, 253, 249, .62);
  font-size: 9px;
  line-height: 1.4;
}

.storage-caption span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.storage-caption i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
}

.legend-local {
  background: var(--sand);
}

.legend-cloud {
  background: rgba(220, 233, 227, .55);
}

.storage-footnote {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 253, 249, .13);
  color: rgba(255, 253, 249, .7);
  font-size: 11px;
}

.promise-band {
  padding: 40px 0;
  color: var(--paper-soft);
  background: var(--forest);
}

.promise-inner {
  display: grid;
  gap: 24px;
}

.promise-inner > p {
  color: rgba(255, 253, 249, .62);
  font-size: 13px;
  line-height: 1.6;
}

.promise-inner h2 {
  font-size: clamp(34px, 10vw, 58px);
  font-weight: 260;
  line-height: 1.1;
  letter-spacing: -.055em;
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-top: 14px;
  color: var(--forest-dark);
  font-size: clamp(38px, 11vw, 64px);
  font-weight: 250;
  line-height: 1.07;
  letter-spacing: -.06em;
}

.section-heading > p:last-child {
  max-width: 590px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}

.workflow {
  background: var(--paper-soft);
}

.mechanism-grid {
  display: grid;
  gap: 14px;
}

.mechanism-card {
  position: relative;
  min-width: 0;
  padding: 26px 24px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.mechanism-card::after {
  position: absolute;
  width: 100px;
  height: 100px;
  right: -50px;
  top: -54px;
  content: "";
  border-radius: 50%;
  background: var(--forest-pale);
  opacity: .58;
}

.card-number {
  color: var(--sand-dark);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .13em;
}

.mechanism-card h3 {
  margin-top: 24px;
  color: var(--forest-dark);
  font-size: 21px;
  line-height: 1.35;
}

.mechanism-card > p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.mechanism-card > small {
  display: block;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
}

.mechanism-icon {
  position: relative;
  width: 64px;
  height: 54px;
  margin-top: 28px;
}

.icon-folder i,
.icon-folder b {
  position: absolute;
  display: block;
  border: 1px solid var(--forest);
}

.icon-folder i {
  width: 52px;
  height: 37px;
  left: 2px;
  bottom: 0;
  border-radius: 5px 8px 8px 8px;
  background: var(--forest-pale);
}

.icon-folder i::before {
  position: absolute;
  width: 20px;
  height: 8px;
  left: -1px;
  top: -7px;
  content: "";
  border: 1px solid var(--forest);
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  background: var(--forest-pale);
}

.icon-folder b {
  width: 27px;
  height: 22px;
  right: 0;
  top: 2px;
  border-radius: 7px;
  background: var(--white);
}

.icon-folder b::before {
  position: absolute;
  width: 13px;
  height: 1px;
  left: 6px;
  top: 8px;
  content: "";
  background: var(--sand-dark);
  box-shadow: 0 5px 0 var(--sand-dark);
}

.icon-thumbs {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.icon-thumbs i {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--forest);
  border-radius: 5px;
  background: var(--sand-pale);
}

.icon-thumbs i:first-child {
  grid-row: 1 / 3;
  background: var(--forest-pale);
}

.icon-thumbs i::before {
  position: absolute;
  width: 20px;
  height: 20px;
  right: -5px;
  bottom: -11px;
  content: "";
  border: 1px solid var(--forest);
  transform: rotate(45deg);
}

.icon-cycle {
  border: 1px solid var(--forest);
  border-radius: 50%;
}

.icon-cycle::before,
.icon-cycle::after {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 1px solid var(--forest);
  border-right: 1px solid var(--forest);
  background: var(--white);
}

.icon-cycle::before {
  right: 0;
  top: 6px;
  transform: rotate(25deg);
}

.icon-cycle::after {
  left: 0;
  bottom: 5px;
  transform: rotate(205deg);
}

.icon-cycle i {
  position: absolute;
  width: 25px;
  height: 17px;
  left: 18px;
  top: 20px;
  border-radius: 4px;
  background: var(--sand);
}

.icon-cycle b {
  position: absolute;
  width: 15px;
  height: 9px;
  left: 23px;
  top: 25px;
  border: 1px solid var(--forest-dark);
  border-top: none;
}

.interface-section {
  overflow: hidden;
  background: var(--paper);
}

.interface-heading {
  max-width: none;
}

.mockup-stage {
  position: relative;
  display: grid;
  gap: 40px;
  padding: 30px 0 0;
}

.mockup-stage::before {
  position: absolute;
  z-index: 0;
  width: calc(100% + 80px);
  height: 65%;
  left: -40px;
  top: 0;
  content: "";
  border-radius: var(--radius-lg);
  background: var(--sand-pale);
}

.concept-figure {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.concept-figure figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--forest-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .04em;
}

.concept-figure figcaption span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper-soft);
  background: var(--forest);
  font-size: 9px;
}

.main-window-mock,
.menu-panel-mock {
  border: 1px solid rgba(23, 49, 43, .22);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.main-window-mock {
  width: min(100%, 360px);
  padding: 20px;
}

.mock-title-row,
.panel-topline,
.recent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-dark);
  font-size: 12px;
  font-weight: 760;
}

.mini-brand i {
  width: 24px;
  height: 24px;
  border-radius: 7px 7px 7px 3px;
  font-size: 11px;
  font-style: normal;
}

.status-pill {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--forest-pale);
  font-size: 9px;
  font-weight: 750;
}

.mock-total {
  margin-top: 30px;
}

.mock-total > span,
.reclaimed-block > span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 670;
}

.mock-total p,
.reclaimed-block p {
  color: var(--forest-dark);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.mock-total p {
  margin-top: 6px;
  font-size: 18px;
}

.mock-total p strong,
.reclaimed-block p strong {
  font-weight: 210;
  letter-spacing: -.06em;
}

.mock-total p strong {
  font-size: 54px;
}

.mock-total small {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 9px;
}

.mock-meter {
  display: flex;
  height: 9px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--paper-deep);
}

.mock-meter i {
  width: 18%;
  background: var(--sand);
}

.mock-meter b {
  width: 27%;
  background: var(--forest);
}

.mock-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 8px;
}

.mock-legend span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mock-legend i {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--sand);
}

.mock-legend span:last-child i {
  background: var(--forest);
}

.folder-cards {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.folder-card {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-soft);
}

.folder-glyph,
.tiny-folder {
  position: relative;
  display: block;
  border-radius: 3px 5px 5px 5px;
  background: var(--forest);
}

.folder-glyph {
  width: 29px;
  height: 22px;
}

.folder-glyph::before,
.tiny-folder::before {
  position: absolute;
  left: 0;
  top: -4px;
  width: 42%;
  height: 5px;
  content: "";
  border-radius: 3px 3px 0 0;
  background: inherit;
}

.folder-glyph.sand,
.tiny-folder.sand {
  background: var(--sand);
}

.tiny-folder.pale {
  background: #A8B8B2;
}

.folder-card p {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.35;
}

.folder-card p b {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.folder-card p small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.folder-card > strong {
  color: var(--forest-dark);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.mock-window-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 8px;
}

.mock-window-foot span {
  color: var(--ink-soft);
}

.mock-window-foot b {
  color: var(--forest);
}

.menu-panel-mock {
  width: min(100%, 328px);
  margin-left: auto;
  padding: 18px;
  background: var(--forest-dark);
  border-color: rgba(255, 253, 249, .24);
}

.menu-panel-mock .mini-brand {
  color: var(--white);
}

.menu-panel-mock .mini-brand i {
  color: var(--forest-dark);
  background: var(--sand-pale);
}

.panel-dots {
  color: rgba(255, 253, 249, .55);
  font-size: 11px;
  letter-spacing: 2px;
}

.reclaimed-block {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--sand-pale);
}

.reclaimed-block p {
  margin-top: 5px;
  font-size: 14px;
}

.reclaimed-block p strong {
  font-size: 42px;
}

.reclaimed-block small {
  display: block;
  margin-top: 6px;
  color: rgba(23, 49, 43, .65);
  font-size: 8px;
}

.panel-folders {
  margin-top: 18px;
}

.panel-folders > div {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 253, 249, .1);
}

.panel-folders > div > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: rgba(255, 253, 249, .82);
  font-size: 9px;
}

.tiny-folder {
  width: 14px;
  height: 10px;
}

.switch {
  position: relative;
  width: 24px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 253, 249, .18);
}

.switch::after {
  position: absolute;
  width: 10px;
  height: 10px;
  left: 2px;
  top: 2px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 253, 249, .66);
}

.switch.on {
  background: var(--sand);
}

.switch.on::after {
  left: 12px;
  background: var(--white);
}

.recent-head {
  margin-top: 19px;
  color: rgba(255, 253, 249, .78);
  font-size: 9px;
}

.recent-head small {
  color: var(--sand-pale);
  font-size: 8px;
}

.filmstrip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 9px;
}

.film-frame {
  min-width: 0;
}

.film-frame i {
  position: relative;
  display: block;
  aspect-ratio: 1.25;
  overflow: hidden;
  border-radius: 5px;
  background: var(--paper-deep);
}

.film-frame i::before,
.film-frame i::after {
  position: absolute;
  content: "";
}

.frame-one i {
  background: linear-gradient(145deg, #D9CCAF 0 38%, #57796D 38% 61%, #1D433A 61%);
}

.frame-one i::after {
  width: 18px;
  height: 18px;
  right: 6px;
  bottom: 5px;
  border-radius: 50%;
  border: 2px solid rgba(255, 253, 249, .55);
}

.frame-two i {
  background: linear-gradient(180deg, #B4C5BF 0 48%, #D7C39C 48% 67%, #6B5641 67%);
}

.frame-two i::before {
  width: 19px;
  height: 32px;
  left: 50%;
  top: 15px;
  background: rgba(31, 67, 58, .7);
  transform: translateX(-50%);
}

.frame-three i {
  background: repeating-radial-gradient(circle at 20% 20%, #879B90 0 3px, #BCC8BF 4px 9px, #E1D8C5 10px 15px);
}

.film-frame span {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: rgba(255, 253, 249, .55);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.privacy-strip {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--forest-pale);
}

.privacy-inner {
  display: grid;
  gap: 18px;
}

.privacy-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
}

.privacy-mark i {
  position: relative;
  width: 18px;
  height: 20px;
  border: 1px solid var(--white);
  border-radius: 9px 9px 11px 11px;
}

.privacy-mark i::before {
  position: absolute;
  width: 8px;
  height: 7px;
  left: 4px;
  top: -6px;
  content: "";
  border: 1px solid var(--white);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}

.privacy-inner h2 {
  margin-top: 8px;
  color: var(--forest-dark);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.privacy-inner > p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.pricing-section {
  background: var(--paper-soft);
}

.pricing-heading {
  max-width: 750px;
}

.pricing-grid {
  display: grid;
  gap: 14px;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 355px;
  flex-direction: column;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.featured-price {
  color: var(--paper-soft);
  border-color: var(--forest);
  background: var(--forest-dark);
}

.preference-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--forest-dark);
  background: var(--sand-pale);
  font-size: 9px;
  font-weight: 750;
}

.plan-name {
  color: var(--forest);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .08em;
}

.featured-price .plan-name {
  color: var(--sand-pale);
}

.plan-price {
  margin-top: 20px;
  color: var(--forest-dark);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.featured-price .plan-price {
  color: var(--white);
}

.plan-price strong {
  font-size: 50px;
  font-weight: 220;
  letter-spacing: -.06em;
}

.plan-price span {
  color: var(--ink-soft);
  font-size: 13px;
}

.featured-price .plan-price span,
.featured-price .plan-note {
  color: rgba(255, 253, 249, .62);
}

.plan-note {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 12px;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 28px 0 26px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.featured-price ul {
  border-color: rgba(255, 253, 249, .15);
}

.price-card li {
  position: relative;
  padding-left: 17px;
  color: var(--ink-soft);
  font-size: 12px;
}

.featured-price li {
  color: rgba(255, 253, 249, .72);
}

.price-card li::before {
  position: absolute;
  width: 5px;
  height: 5px;
  left: 1px;
  top: .7em;
  content: "";
  border-radius: 50%;
  background: var(--sand);
}

.price-button {
  width: 100%;
  margin-top: auto;
}

.featured-price .price-button {
  color: var(--forest-dark);
  border-color: var(--sand-pale);
  background: var(--sand-pale);
}

.featured-price .price-button:hover {
  background: var(--white);
}

.pricing-footnote {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 11px;
  text-align: center;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  gap: 2px;
}

.faq-heading {
  margin-bottom: 30px;
}

.faq-heading h2 {
  font-size: clamp(36px, 10vw, 54px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: var(--forest-dark);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  left: 6px;
  right: 6px;
  top: 11px;
  height: 1px;
  content: "";
  background: var(--forest);
}

.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform .16s ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 38px 22px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-list details p a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.final-cta {
  padding: 76px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.final-cta-inner {
  position: relative;
}

.final-cta-inner::after {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -155px;
  top: -120px;
  content: "";
  border: 1px solid rgba(255, 253, 249, .18);
  border-radius: 50%;
}

.final-cta .section-kicker {
  color: var(--sand-pale);
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  font-size: clamp(44px, 13vw, 70px);
  font-weight: 230;
  line-height: 1.03;
  letter-spacing: -.065em;
}

.button-sand {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 32px;
  color: var(--forest-dark);
  border-color: var(--sand-pale);
  background: var(--sand-pale);
}

.button-sand:hover {
  background: var(--white);
}

.final-cta-inner > p:last-child {
  margin-top: 14px;
  color: rgba(255, 253, 249, .64);
  font-size: 10px;
}

.site-footer {
  padding: 28px 0 100px;
  background: var(--forest-deep);
  color: rgba(255, 253, 249, .62);
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-brand .brand-mark {
  color: var(--forest-dark);
  background: var(--sand-pale);
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-name small {
  color: rgba(255, 253, 249, .48);
}

.footer-inner > p {
  font-size: 11px;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 11px;
}

.footer-inner nav a:hover {
  color: var(--white);
}

.mobile-dock {
  position: fixed;
  z-index: 60;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 9px 9px 14px;
  border: 1px solid rgba(255, 253, 249, .18);
  border-radius: var(--radius-md);
  color: var(--white);
  background: rgba(13, 48, 41, .96);
  backdrop-filter: blur(16px);
}

.mobile-dock > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.2;
}

.mobile-dock b {
  font-size: 12px;
}

.mobile-dock small {
  margin-top: 3px;
  color: rgba(255, 253, 249, .58);
  font-size: 9px;
}

.mobile-dock .button {
  flex: 0 0 auto;
  min-height: 38px;
  color: var(--forest-dark);
  border-color: var(--sand-pale);
  background: var(--sand-pale);
}

@media (min-width: 560px) {
  .shell {
    width: min(100% - 56px, var(--shell));
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .button {
    min-width: 190px;
  }

  .text-link {
    justify-content: flex-start;
  }

  .storage-visual {
    padding: 34px 32px 28px;
  }

  .storage-caption,
  .storage-numbers p > span {
    font-size: 10px;
  }

  .promise-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .promise-inner h2 {
    text-align: right;
  }

  .mechanism-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mechanism-card:last-child,
  .price-card:last-child {
    grid-column: 1 / -1;
  }

  .mockup-stage {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    align-items: end;
    gap: 24px;
    padding: 40px 26px 0;
  }

  .main-window-mock,
  .menu-panel-mock {
    width: 100%;
  }

  .privacy-inner {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .privacy-inner > p {
    grid-column: 2;
  }

  .button-sand {
    width: auto;
    min-width: 210px;
  }
}

@media (min-width: 760px) {
  .nav-inner {
    min-height: 72px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
  }

  .desktop-nav a {
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 650;
  }

  .desktop-nav a:hover {
    color: var(--forest);
  }

  .hero {
    padding: 96px 0 104px;
  }

  .hero-grid {
    gap: 70px;
  }

  .section {
    padding: 112px 0;
  }

  .mechanism-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mechanism-card:last-child,
  .price-card:last-child {
    grid-column: auto;
  }

  .interface-heading {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
    gap: 40px;
  }

  .interface-heading > p:last-child {
    margin: 0 0 4px;
  }

  .mockup-stage {
    gap: 60px;
    padding: 52px 8% 0;
  }

  .privacy-inner {
    grid-template-columns: auto minmax(280px, .9fr) minmax(300px, 1fr);
    gap: 28px;
  }

  .privacy-inner > p {
    grid-column: auto;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .price-card {
    min-height: 380px;
  }

  .faq-layout {
    grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: 70px;
  }

  .faq-heading {
    position: sticky;
    top: 105px;
    margin-bottom: 0;
  }

  .final-cta {
    padding: 104px 0;
  }

  .final-cta-inner {
    text-align: center;
  }

  .final-cta-inner::after {
    width: 360px;
    height: 360px;
    right: -60px;
    top: -220px;
  }

  .site-footer {
    padding: 36px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .mobile-dock {
    display: none;
  }
}

@media (min-width: 980px) {
  .nav-inner {
    gap: 28px;
  }

  .desktop-nav {
    gap: 30px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
    align-items: center;
    gap: 76px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .storage-visual {
    padding: 38px 34px 30px;
  }

  .storage-numbers strong {
    font-size: 68px;
  }

  .promise-band {
    padding: 50px 0;
  }

  .mechanism-card {
    min-height: 390px;
    padding: 30px 28px 26px;
  }

  .mockup-stage {
    grid-template-columns: minmax(360px, .95fr) minmax(328px, .75fr);
    justify-content: center;
    gap: 100px;
    padding: 62px 13% 0;
  }

  .main-window-mock {
    width: 360px;
    margin-inline: auto;
  }

  .menu-panel-mock {
    width: 328px;
    margin-inline: auto;
  }
}

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

  .button,
  .faq-list summary span::after {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
