:root {
  --black: #080808;
  --soft-black: #10100f;
  --ink: #171715;
  --white: #ffffff;
  --paper: #f4f2ec;
  --paper-bright: #faf9f5;
  --line: #d8d4ca;
  --line-dark: #292927;
  --muted: #9b9992;
  --gold: #c8a76a;
  --gold-bright: #dfc17e;
  --gold-deep: #8f7040;
  --page: min(1460px, calc(100vw - 72px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--black); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--page);
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}
.brand { display: inline-flex; align-items: center; width: 214px; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 36px; font-size: 12px; letter-spacing: .04em; }
.primary-nav > a { color: rgba(255, 255, 255, .7); transition: color .2s ease; }
.primary-nav > a:hover, .primary-nav > a:focus-visible { color: var(--white); }
.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
}
.nav-status span, .preview-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(223, 193, 126, .1);
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 960px;
  height: max(100vh, 960px);
  padding: 170px max(36px, calc((100vw - 1460px) / 2)) 80px;
  display: grid;
  grid-template-columns: minmax(390px, .78fr) minmax(660px, 1.22fr);
  align-items: center;
  gap: clamp(44px, 6vw, 105px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 40%, rgba(200, 167, 106, .08), transparent 26%),
    linear-gradient(125deg, #070707 0%, #0b0b0a 58%, #050505 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 74%);
}
.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 40%;
  right: 12%;
  border: 1px solid rgba(200, 167, 106, .12);
  border-radius: 50%;
  box-shadow: 0 0 160px 35px rgba(200, 167, 106, .05), inset 0 0 100px rgba(200, 167, 106, .025);
  transform: translate(50%, -50%);
}
.hero-copy { position: relative; z-index: 2; align-self: center; padding-top: 26px; }
.eyebrow {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow > span { width: 34px; height: 1px; background: var(--gold); }
.eyebrow.dark { color: #77746c; }
.hero h1, .section-heading h2, .principles-intro h2, .preview-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero h1 { max-width: 650px; font-size: clamp(68px, 6.2vw, 112px); line-height: .91; }
.hero h1 em, .section-heading h2 em { color: var(--gold-bright); font-weight: 400; }
.hero-lede {
  max-width: 590px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, .61);
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions { margin-top: 41px; display: flex; align-items: center; gap: 18px; }
.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.button-primary { background: var(--white); border-color: var(--white); color: var(--black); }
.button-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-2px); }
.button-quiet { color: rgba(255,255,255,.72); }
.button-quiet:hover { color: var(--white); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.hero-proof { margin: 45px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 11px 23px; color: rgba(255,255,255,.56); font-size: 10px; letter-spacing: .07em; list-style: none; text-transform: uppercase; }
.hero-proof li { display: flex; align-items: center; gap: 12px; }
.hero-proof li:not(:last-child)::after { content: ""; width: 2px; height: 2px; border-radius: 50%; background: var(--gold); }

.hero-product { position: relative; z-index: 2; perspective: 1600px; transform-style: preserve-3d; }
.product-aura { position: absolute; inset: -13%; background: radial-gradient(circle, rgba(200,167,106,.1), transparent 64%); filter: blur(25px); }
.app-window {
  position: relative;
  width: 100%;
  max-width: 940px;
  aspect-ratio: 1.38;
  margin-left: auto;
  overflow: hidden;
  color: #e8e8e4;
  background: #141413;
  border: 1px solid rgba(255,255,255,.17);
  box-shadow: 0 50px 90px rgba(0,0,0,.5), 0 3px 0 rgba(255,255,255,.03) inset;
  transform: rotateY(-5deg) rotateX(2deg);
  transform-origin: center left;
}
.app-titlebar { height: 47px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; border-bottom: 1px solid #2d2d2a; background: #111110; }
.app-identity { display: flex; align-items: center; gap: 10px; font-size: 10px; color: #d6d5cf; }
.app-identity img { width: 18px; }
.app-identity small { color: #77756f; }
.window-controls { display: flex; gap: 16px; }
.window-controls i { width: 8px; height: 8px; border: 1px solid #55534e; }
.app-shell { height: calc(100% - 72px); display: grid; grid-template-columns: 102px 1fr 174px; }
.app-sidebar { padding: 17px 10px; background: #111110; border-right: 1px solid #292927; }
.side-item { min-height: 49px; padding: 0 9px; display: flex; align-items: center; gap: 9px; border-left: 1px solid transparent; color: #6e6c67; font-size: 8px; }
.side-item b { font-size: 7px; font-weight: 500; color: #474641; }
.side-item.is-active { color: #f4f2ec; background: #1b1b19; border-left-color: var(--gold); }
.side-item.is-active b { color: var(--gold); }
.sidebar-rule { height: 1px; margin: 11px 7px 17px; background: #292927; }
.sidebar-micro { display: flex; gap: 7px; padding-left: 7px; }
.sidebar-micro i { width: 12px; height: 12px; border: 1px solid #343431; }
.app-canvas { min-width: 0; display: flex; flex-direction: column; background: #e9e7e0; }
.canvas-toolbar { height: 43px; flex: 0 0 auto; padding: 0 13px; display: flex; align-items: center; justify-content: space-between; color: #5e5b55; background: #f7f6f2; border-bottom: 1px solid #cecbc2; font-size: 8px; }
.tool-pills { display: flex; gap: 6px; }
.tool-pills i { width: 17px; height: 17px; border: 1px solid #d0cdc4; background: #fff; }
.tool-pills i.on { border-color: #9d7e49; background: #d9c08d; }
.view-toggle { padding: 3px; display: flex; align-items: center; background: #e8e5dd; }
.view-toggle b, .view-toggle i { padding: 4px 8px; font-style: normal; font-weight: 500; }
.view-toggle b { background: #fff; color: #161614; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.plan-stage { position: relative; flex: 1; min-height: 0; overflow: hidden; background: #f4f2ec; }
.floor-plan { width: 100%; height: 100%; }
.dimension-lines { color: #9c9990; stroke-width: 1; }
.plan-walls { color: #181816; stroke-width: 12; stroke-linejoin: miter; }
.openings { color: #191917; stroke-width: 1.4; }
.furniture { color: #77736a; stroke-width: 1.25; }
.room-labels { color: #69665f; font-size: 8px; letter-spacing: 1.8px; text-anchor: middle; }
.measure-labels { color: #8c887e; font-size: 7px; letter-spacing: .7px; text-anchor: middle; }
.plan-cursor { fill: rgba(200,167,106,.45); stroke: #8f7040; stroke-width: 2; }
.zoom-control { position: absolute; right: 13px; bottom: 13px; height: 25px; display: flex; align-items: center; color: #6d6962; background: rgba(255,255,255,.9); border: 1px solid #d3d0c8; font-size: 7px; }
.zoom-control span, .zoom-control b { min-width: 25px; text-align: center; font-weight: 500; }
.zoom-control b { padding: 0 7px; border-left: 1px solid #dfdcd4; border-right: 1px solid #dfdcd4; }
.inspector { padding: 15px 13px; background: #151514; border-left: 1px solid #2b2b29; }
.inspector-heading { display: flex; justify-content: space-between; color: #bab8b1; font-size: 8px; letter-spacing: .08em; }
.inspector-heading i { color: #605e59; font-style: normal; }
.inspector-preview { margin: 18px 0 14px; padding: 13px; display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px; background: #1d1d1b; border: 1px solid #2c2c29; }
.inspector-preview span, .inspector-preview small { display: block; grid-column: 2; font-size: 7px; }
.inspector-preview small { margin-top: -8px; color: #65635e; }
.cube { position: relative; grid-row: 1 / 3; width: 28px; height: 28px; border: 1px solid #86704a; transform: rotate(30deg) skew(-5deg); }
.cube::before { content: ""; position: absolute; left: 8px; top: -8px; width: 27px; height: 8px; border: 1px solid #86704a; transform: skew(-60deg); }
.field { min-height: 41px; padding: 10px 0; border-top: 1px solid #2b2b29; }
.field span, .field b { display: block; font-size: 7px; font-weight: 500; }
.field span { margin-bottom: 5px; color: #62605b; }
.field b { color: #c7c5be; }
.field .status-dot { color: #cdb47c; }
.inspector button { width: 100%; height: 28px; margin-top: 7px; color: #171714; background: var(--gold-bright); border: 0; font-size: 7px; font-weight: 700; }
.app-statusbar { height: 25px; padding: 0 14px 0 119px; display: flex; align-items: center; justify-content: flex-end; gap: 22px; background: #111110; color: #5f5d58; border-top: 1px solid #2a2a28; font-size: 7px; }
.app-statusbar span:first-child { margin-right: auto; display: flex; align-items: center; gap: 6px; }
.app-statusbar i { width: 5px; height: 5px; border-radius: 50%; background: #79a57b; }
.app-statusbar b { color: #a6a39b; font-weight: 500; }
.floating-note { position: absolute; z-index: 3; min-width: 160px; padding: 13px 16px; background: rgba(22,22,20,.93); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 18px 40px rgba(0,0,0,.35); backdrop-filter: blur(12px); }
.floating-note span, .floating-note b { display: block; font-size: 8px; }
.floating-note span { margin-bottom: 6px; color: #73716b; text-transform: uppercase; letter-spacing: .1em; }
.floating-note b { color: #e8e6df; font-weight: 500; }
.floating-note b i { display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: var(--gold-bright); }
.note-one { left: -26px; bottom: 13%; }
.note-two { right: -20px; top: 13%; }
.scroll-cue { position: absolute; bottom: 34px; left: max(36px, calc((100vw - 1460px) / 2)); display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.28); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue span { position: relative; width: 1px; height: 28px; overflow: hidden; background: rgba(255,255,255,.15); }
.scroll-cue span::after { content: ""; position: absolute; left: 0; top: -60%; width: 1px; height: 60%; background: var(--gold); animation: scrollCue 2.1s ease-in-out infinite; }

.statement { padding: 135px max(36px, calc((100vw - 1320px) / 2)); display: grid; grid-template-columns: 220px 1fr; gap: 55px; background: var(--paper); border-bottom: 1px solid var(--line); }
.statement-kicker { padding-top: 12px; color: #68655e; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.statement p { max-width: 1050px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 4.2vw, 70px); line-height: 1.1; letter-spacing: -.035em; }
.section-pad { padding: 145px max(36px, calc((100vw - 1320px) / 2)); }
.section-heading { display: grid; grid-template-columns: minmax(270px, .8fr) 1fr; grid-template-rows: auto auto; column-gap: 80px; align-items: end; }
.section-heading .eyebrow { grid-column: 1; align-self: start; }
.section-heading h2 { grid-column: 1; font-size: clamp(52px, 5vw, 78px); line-height: .99; }
.section-heading > p:last-child { grid-column: 2; margin: 0 0 8px; max-width: 480px; color: #737069; font-size: 15px; line-height: 1.75; }

.workspace-section { background: var(--paper-bright); }
.feature-stage { margin-top: 85px; display: grid; grid-template-columns: 1.55fr .8fr; gap: 18px; }
.feature-panel { position: relative; overflow: hidden; background: #eeece6; border: 1px solid #d9d5cb; }
.feature-panel-main { min-height: 700px; }
.panel-index { position: absolute; z-index: 2; top: 24px; left: 25px; color: #7d7a72; font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.isometric { height: 520px; display: grid; place-items: center; background-image: linear-gradient(rgba(15,15,14,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(15,15,14,.04) 1px, transparent 1px); background-size: 28px 28px; }
.isometric svg { width: 79%; }
.iso-grid { fill: none; stroke: #cbc7bd; stroke-width: 1; }
.house-base { fill: #d5c49f; stroke: #171715; stroke-width: 1.3; }
.house-walls { fill: #f9f7f0; fill-opacity: .88; stroke: #171715; stroke-width: 1.4; }
.house-rooms { fill: none; stroke: #262622; stroke-width: 2; }
.house-furniture { fill: #c7b07e; fill-opacity: .42; stroke: #816a3f; stroke-width: 1; }
.iso-points { fill: var(--gold-deep); }
.panel-copy { padding: 30px 34px 35px; display: grid; grid-template-columns: 180px 1fr; gap: 30px; border-top: 1px solid #d6d2c8; }
.panel-copy span { font-family: Georgia, "Times New Roman", serif; font-size: 24px; }
.panel-copy p { margin: 0; color: #77746d; font-size: 13px; line-height: 1.7; }
.feature-side { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.compact { min-height: 340px; padding: 82px 30px 32px; }
.compact h3 { max-width: 300px; margin: 30px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 29px; font-weight: 400; letter-spacing: -.025em; }
.compact p { margin: 0; color: #625f58; font-size: 12px; line-height: 1.7; }
.context-lines { width: 150px; height: 50px; display: flex; align-items: flex-end; gap: 5px; }
.context-lines i { display: block; width: 24px; border: 1px solid #9e9a91; background: rgba(255,255,255,.35); }
.context-lines i:nth-child(1) { height: 24px; }.context-lines i:nth-child(2) { height: 42px; }.context-lines i:nth-child(3) { height: 32px; }.context-lines i:nth-child(4) { height: 48px; }.context-lines i:nth-child(5) { height: 20px; }
.gold-panel { color: #f6f2e8; background: #161613; border-color: #272620; }
.gold-panel .panel-index { color: #7d7669; }
.gold-panel h3 { color: #fff; }
.gold-panel p { color: #858078; }
.control-mark { position: relative; width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid #4d4434; }
.control-mark::before, .control-mark::after, .control-mark span::before, .control-mark span::after { content: ""; position: absolute; width: 8px; height: 8px; }
.control-mark::before { left: -1px; top: -1px; border-left: 1px solid var(--gold); border-top: 1px solid var(--gold); }
.control-mark::after { right: -1px; bottom: -1px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.control-mark svg { width: 30px; fill: none; stroke: var(--gold-bright); stroke-width: 1.4; }

.workflow-section { color: var(--white); background: #0b0b0a; }
.section-heading.light .eyebrow { color: #77746f; }
.section-heading.light h2 { color: var(--white); }
.workflow-grid { margin-top: 95px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.workflow-card { min-height: 425px; padding: 25px 27px 30px; border-right: 1px solid var(--line-dark); transition: background .35s ease; }
.workflow-card:first-child { border-left: 1px solid var(--line-dark); }
.workflow-card:hover { background: #11110f; }
.workflow-no { color: #67645e; font-size: 9px; letter-spacing: .12em; }
.workflow-icon { position: relative; width: 78px; height: 78px; margin: 60px 0 50px; border: 1px solid #44413b; }
.workflow-icon::before { content: ""; position: absolute; inset: 10px; border: 1px solid #656158; }
.workflow-icon span { position: absolute; display: block; background: var(--gold); }
.workflow-icon span:nth-child(1) { left: 22px; top: 23px; width: 32px; height: 1px; }
.workflow-icon span:nth-child(2) { left: 22px; top: 36px; width: 21px; height: 1px; }
.workflow-icon span:nth-child(3) { left: 22px; top: 49px; width: 27px; height: 1px; }
.draw-icon::before { inset: 15px 12px; transform: rotate(-10deg); }
.draw-icon span:nth-child(1) { top: 27px; left: 18px; width: 40px; transform: rotate(-31deg); }
.draw-icon span:nth-child(2) { top: 49px; left: 45px; width: 15px; transform: rotate(88deg); }
.review-icon { border-radius: 50%; }
.review-icon::before { inset: 14px; border-radius: 50%; }
.review-icon span:nth-child(1) { left: 26px; top: 38px; width: 12px; transform: rotate(45deg); }
.review-icon span:nth-child(2) { left: 34px; top: 34px; width: 23px; transform: rotate(-48deg); }
.export-icon span:nth-child(1) { left: 38px; top: 20px; width: 1px; height: 29px; }
.export-icon span:nth-child(2) { left: 30px; top: 40px; width: 12px; transform: rotate(45deg); }
.export-icon span:nth-child(3) { left: 37px; top: 40px; width: 12px; transform: rotate(-45deg); }
.workflow-card h3 { margin: 0 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: 29px; font-weight: 400; }
.workflow-card p { min-height: 74px; margin: 0; color: #88857e; font-size: 12px; line-height: 1.7; }
.workflow-card small { display: block; margin-top: 28px; color: #96918a; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

.principles-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; background: var(--paper); }
.principles-intro h2 { max-width: 490px; font-size: clamp(50px, 5vw, 75px); line-height: 1; }
.principles-list { border-top: 1px solid #c9c5bc; }
.principle { padding: 34px 0 32px; display: grid; grid-template-columns: 52px minmax(190px, .7fr) 1fr; gap: 22px; border-bottom: 1px solid #c9c5bc; }
.principle > span { padding-top: 4px; color: var(--gold-deep); font-size: 9px; letter-spacing: .1em; }
.principle h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 400; }
.principle p { margin: 0; color: #747169; font-size: 12px; line-height: 1.7; }

.preview-section { position: relative; min-height: 610px; padding: 120px max(36px, calc((100vw - 1320px) / 2)); display: flex; align-items: center; overflow: hidden; color: var(--white); background: #0a0a09; }
.preview-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg, transparent, black); }
.preview-mark { position: absolute; right: 4%; bottom: -22%; width: min(610px, 52vw); opacity: .035; }
.preview-copy { position: relative; z-index: 2; max-width: 720px; }
.preview-copy h2 { font-size: clamp(60px, 6vw, 92px); line-height: .96; }
.preview-copy > p:not(.eyebrow) { max-width: 590px; margin: 30px 0 0; color: #8c8982; font-size: 14px; line-height: 1.75; }
.preview-state { max-width: 590px; margin-top: 45px; padding: 18px 20px; display: grid; grid-template-columns: 8px 150px 1fr; align-items: center; gap: 13px; border: 1px solid #2e2d29; color: #8c8982; font-size: 10px; }
.preview-state span { color: #d8d4ca; font-weight: 700; letter-spacing: .06em; }
.preview-state b { font-weight: 400; text-align: right; }

.site-footer { padding: 70px max(36px, calc((100vw - 1320px) / 2)) 42px; display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 50px; background: var(--paper-bright); }
.footer-brand { width: 190px; }
.site-footer > p { margin: 0; text-align: right; color: #6e6b64; font-family: Georgia, "Times New Roman", serif; font-size: 18px; }
.footer-meta { grid-column: 1 / -1; padding-top: 28px; display: flex; align-items: center; gap: 25px; border-top: 1px solid var(--line); color: #68655e; font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.footer-meta a { margin-left: auto; transition: color .2s ease; }
.footer-meta a:hover { color: var(--black); }

.privacy-page { min-height: 100vh; color: var(--white); background: var(--black); }
.privacy-page .site-header { position: relative; left: auto; margin: 0 auto; transform: none; }
.privacy-main { width: min(820px, calc(100vw - 48px)); margin: 0 auto; padding: 110px 0 150px; }
.privacy-main h1 { margin: 0 0 30px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 8vw, 92px); font-weight: 400; letter-spacing: -.04em; }
.privacy-main .updated { margin-bottom: 60px; color: var(--gold); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.privacy-main section { padding: 35px 0; border-top: 1px solid #2c2c29; }
.privacy-main h2 { margin: 0 0 16px; font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 400; }
.privacy-main p { margin: 0; color: #95928b; font-size: 14px; line-height: 1.8; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--ease), transform .85s var(--ease); transition-delay: calc(var(--delay, 0) * 90ms); }
.reveal[data-delay="1"] { --delay: 1; }.reveal[data-delay="2"] { --delay: 2; }.reveal[data-delay="3"] { --delay: 3; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes scrollCue { 0% { transform: translateY(0); } 75%, 100% { transform: translateY(270%); } }

@media (max-width: 1180px) {
  :root { --page: calc(100vw - 48px); }
  .hero { min-height: auto; height: auto; padding: 170px 24px 120px; grid-template-columns: minmax(0, 1fr); gap: 90px; }
  .hero-copy { min-width: 0; max-width: 760px; }
  .hero-product { width: min(940px, 92vw); margin: 0 auto; }
  .app-window { transform: none; }
  .note-one { left: -12px; }.note-two { right: -12px; }
  .scroll-cue { display: none; }
  .section-heading { grid-template-columns: 1fr 1fr; }
  .feature-stage { grid-template-columns: 1.35fr .8fr; }
  .principles-section { grid-template-columns: 1fr; gap: 70px; }
  .principles-intro h2 { max-width: 760px; }
}

@media (max-width: 860px) {
  :root { --page: calc(100vw - 36px); }
  .site-header { left: 18px; right: 18px; width: auto; height: 82px; transform: none; }
  .brand { width: 182px; }
  .nav-toggle { width: 42px; height: 42px; padding: 0; display: grid; place-content: center; gap: 7px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.18); }
  .nav-toggle span:not(.sr-only) { width: 17px; height: 1px; display: block; background: currentColor; transition: transform .25s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; z-index: -1; padding: 130px 28px 40px; display: flex; flex-direction: column; align-items: stretch; gap: 0; color: var(--white); background: rgba(8,8,8,.985); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility 0s linear .25s; }
  .primary-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .primary-nav > a { padding: 19px 0; border-bottom: 1px solid #292927; font-family: Georgia, "Times New Roman", serif; font-size: 28px; letter-spacing: -.02em; }
  .primary-nav .nav-status { margin-top: 26px; padding: 16px; justify-content: center; border: 1px solid #32322f; font-family: inherit; font-size: 10px; letter-spacing: .08em; }
  .privacy-page .site-header { left: auto; right: auto; width: calc(100vw - 36px); margin: 0 auto; transform: none; }
  .privacy-page .site-header .button { width: auto; min-height: 42px; padding-inline: 14px; }
  .hero { padding: 140px 18px 90px; gap: 70px; }
  .hero h1 { font-size: clamp(58px, 17vw, 92px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-proof { gap: 10px 15px; }
  .hero-product { width: 112vw; margin-left: 1vw; }
  .app-shell { grid-template-columns: 78px 1fr 145px; }
  .side-item { padding: 0 5px; gap: 5px; }.app-statusbar { padding-left: 90px; }
  .floating-note { display: none; }
  .statement { padding: 95px 24px; grid-template-columns: 1fr; gap: 30px; }
  .section-pad { padding: 100px 24px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .eyebrow, .section-heading h2, .section-heading > p:last-child { grid-column: 1; }
  .section-heading > p:last-child { margin-top: 28px; }
  .feature-stage { margin-top: 60px; grid-template-columns: 1fr; }
  .feature-panel-main { min-height: 590px; }
  .isometric { height: 420px; }
  .feature-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-card:nth-child(2) { border-right: 1px solid var(--line-dark); }
  .workflow-card:nth-child(3), .workflow-card:nth-child(4) { border-top: 1px solid var(--line-dark); }
  .principle { grid-template-columns: 40px 1fr; }
  .principle p { grid-column: 2; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > p { text-align: left; }
}

@media (max-width: 580px) {
  .hero { overflow: hidden; }
  .hero h1 { font-size: 57px; }
  .hero-lede { font-size: 14px; }
  .hero-proof li::after { display: none; }
  .hero-product { width: 170vw; margin-left: -3vw; }
  .app-shell { grid-template-columns: 80px 1fr; }
  .inspector { display: none; }
  .app-statusbar { padding-left: 95px; }
  .note-one, .note-two { display: none; }
  .statement p { font-size: 38px; }
  .section-heading h2, .principles-intro h2 { font-size: 50px; }
  .feature-panel-main { min-height: 500px; }
  .isometric { height: 330px; }
  .isometric svg { width: 105%; }
  .panel-copy { grid-template-columns: 1fr; }
  .feature-side { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-card { min-height: 360px; border-left: 1px solid var(--line-dark); border-top: 1px solid var(--line-dark); }
  .workflow-card:first-child { border-top: 0; }
  .workflow-icon { margin: 42px 0 35px; }
  .principle { grid-template-columns: 32px 1fr; }
  .preview-section { padding: 90px 24px; }
  .preview-copy h2 { font-size: 52px; }
  .preview-state { grid-template-columns: 8px 1fr; }
  .preview-state b { grid-column: 2; text-align: left; }
  .site-footer { padding: 55px 24px 35px; }
  .footer-meta { flex-wrap: wrap; }
  .footer-meta a { margin-left: 0; }
  .privacy-main { padding-top: 75px; }
}

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