﻿:root {
  --bg: #15130f;
  --bg-2: #211d18;
  --cream: #f1eadf;
  --ink: #18140f;
  --muted: #b9afa0;
  --muted-dark: #5e5549;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(24,20,15,.16);
  --accent: #c8a96e;
  --maxw: 1280px;
  --x: clamp(20px,5vw,64px);
  --y: clamp(44px,7vw,96px);
  --serif: "Cormorant Garamond", "Crimson Pro", "Iowan Old Style", Georgia, serif;
  --sans: "Geist", "Söhne", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: #f5f0e9;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss02", "kern";
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
em { color: var(--accent); font-style: italic; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px var(--x);
  background: rgba(21,19,15,.94);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}
.brand-mark img { width: 26px; height: 26px; object-fit: contain; }
.brand-name {
  color: #f5f0e9;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .12em;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 32px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--accent); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #f5f0e9;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}
.btn-outline:hover, .nav-cta:hover { background: rgba(255,255,255,.06); }
.btn-lg { min-height: 46px; padding-inline: 20px; }

.display, .display-md, .display-lg {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  line-height: .95;
  letter-spacing: 0;
  text-wrap: balance;
}
.display { font-size: clamp(48px,6.4vw,86px); }
.display-md { font-size: clamp(42px,6vw,84px); margin-bottom: 28px; }
.display-lg { font-size: clamp(46px,7vw,98px); margin-bottom: 24px; }
.lede {
  margin: 24px 0 28px;
  max-width: 45ch;
  color: #eee7dd;
  font: italic clamp(18px,1.5vw,22px)/1.4 var(--serif);
}

.hero-slider {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(24px,4vw,48px) var(--x);
}
.hero-slider-frame { position: relative; }
.ba-hero { height: 600px; }
.hero-slider-overlay {
  position: absolute;
  left: clamp(24px,4vw,56px);
  bottom: clamp(24px,4vw,56px);
  z-index: 3;
  max-width: 520px;
  padding: clamp(24px,3vw,40px);
  background: rgba(21,19,15,.86);
  border: 1px solid var(--line);
}
.hero-slider-overlay .display {
  font-size: clamp(42px,5vw,68px);
  line-height: 1;
}
.hero-slider-overlay .lede {
  margin: 20px 0 24px;
  font-size: clamp(17px,1.35vw,20px);
}

.ba-wrap { width: 100%; }
.gallery-feature .ba-wrap { height: 620px; }
.ba-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 8px;
  touch-action: pan-y;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-clip {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
}
.ba-clip .ba-img { width: var(--frame-w, 100%); max-width: none; }
.ba-tag {
  position: absolute;
  top: 16px;
  z-index: 2;
  padding: 5px 10px;
  background: rgba(21,19,15,.82);
  color: #f5f0e9;
  font-size: 10px;
}
.ba-tag-l { left: 16px; }
.ba-tag-r { right: 16px; color: var(--accent); border: 1px solid var(--accent); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle-line { flex: 1; width: 2px; background: rgba(255,255,255,.85); }
.ba-handle-knob {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111;
  border: 2px solid var(--accent);
  font-weight: 700;
}
.ba-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  color: var(--muted-dark);
  font-size: 11px;
  text-transform: uppercase;
}
.ba-style { color: #987842; }

.sect {
  padding: var(--y) var(--x);
  scroll-margin-top: 74px;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}
.sect-default { background: var(--bg); }
.sect-cream { background: var(--cream); color: var(--ink); }
.sect-cream-dark { background: #28231d; color: #f5f0e9; border-block: 1px solid var(--line); }
.sect-head { max-width: var(--maxw); margin: 0 auto 56px; }
.sect-sub { max-width: 56ch; margin: 0; color: var(--muted-dark); font-size: 18px; }
.sect-cream-dark .sect-sub, .sect-default .sect-sub { color: var(--muted); }

.gallery-feature { max-width: var(--maxw); margin: 0 auto 32px; }
.gallery-thumbs {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.gthumb {
  position: relative;
  padding: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.gthumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.72) saturate(.9); }
.gthumb-active { border-color: var(--accent); }
.gthumb-active img, .gthumb:hover img { filter: none; }
.gthumb-meta {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg,transparent,rgba(0,0,0,.76));
  color: rgba(255,255,255,.8);
  font-size: 10px;
}
.gthumb-active .gthumb-lbl { color: var(--accent); }

.steps, .feat-grid, .pricing-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: clamp(24px,3vw,48px);
}
.steps { grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--line); }
.step { padding: 48px 0; }
.step-thumb, .feat-tile-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 24px;
  background: var(--bg-2);
  border-radius: 8px;
}
.step-thumb img, .feat-tile-img img, .feat-lead-img img, .proof-strip img { width: 100%; height: 100%; object-fit: cover; }
.step-screen {
  border: 1px solid var(--line);
  background: #11100e;
}
.step-screen img {
  object-fit: contain;
  padding: 8px;
}
.step-wipe img { display: block; }
.step-wipe-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 100% 0 0);
  animation: stepWipeClip 4.8s ease-in-out infinite;
}
.step-wipe-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 0 0 1px rgba(200,169,110,.45);
  animation: stepWipeLine 4.8s ease-in-out infinite;
}
@keyframes stepWipeClip {
  0%, 12% { clip-path: inset(0 100% 0 0); }
  46%, 54% { clip-path: inset(0 0 0 0); }
  88%, 100% { clip-path: inset(0 100% 0 0); }
}
@keyframes stepWipeLine {
  0%, 12% { left: 0; }
  46%, 54% { left: 100%; }
  88%, 100% { left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .step-wipe-after, .step-wipe-line { animation: none; }
}
.step-thumb-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(21,19,15,.76);
  color: #f5f0e9;
  font-size: 11px;
  font-weight: 700;
}
.step-num { color: var(--accent); font-size: 11px; margin-bottom: 18px; }
.step-title, .feat-lead-title, .feat-tile-title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}
.step-title { font-size: clamp(30px,3vw,42px); }
.step-body, .feat-tile-body { margin: 0; color: var(--muted); }
.export-strip {
  max-width: var(--maxw);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.export-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21,19,15,.32);
}
.export-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
}
.export-icon svg { width: 100%; height: 100%; }
.export-dropbox svg { fill: #7aa0c9; }
.export-drive svg { fill: none; }
.export-drive .drive-y { fill: #d3a84f; }
.export-drive .drive-b { fill: #6fa7d8; }
.export-drive .drive-g { fill: #76aa68; }
.export-zip svg {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.export-item strong {
  display: block;
  color: #f5f0e9;
  font-size: 14px;
  line-height: 1.1;
}
.export-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.feat-lead-v2 {
  max-width: var(--maxw);
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px,6vw,84px);
  align-items: center;
}
.feat-lead-img { aspect-ratio: 4/5; overflow: hidden; background: var(--bg-2); border-radius: 8px; }
.feat-lead-img.feat-screen { aspect-ratio: 16/11; }
.feat-screen {
  border: 1px solid var(--line);
  background: #11100e;
}
.feat-screen img {
  object-fit: contain;
  padding: clamp(10px,1.5vw,18px);
}
.color-cycle { position: relative; }
.color-cycle img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}
.color-cycle img.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .color-cycle img { transition: none; }
}
.feat-lead-title { font-size: clamp(34px,4vw,58px); }
.founder-heading span,
.founder-heading em {
  display: block;
  white-space: nowrap;
}
.feat-lead-copy {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font: italic clamp(17px,1.4vw,20px)/1.55 var(--serif);
}
.feat-grid { grid-template-columns: repeat(2,1fr); }
.feat-tile-img { aspect-ratio: 16/10; }
.feat-tile-img.feat-screen { aspect-ratio: 4/3; }
.feat-tile-title { min-height: 2.2em; font-size: clamp(22px,2vw,27px); }

.pricing-grid { grid-template-columns: repeat(3,1fr); gap: 16px; }
.pricing-grid-single { max-width: 560px; grid-template-columns: 1fr; }
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 34px;
  border: 1px solid rgba(255,255,255,.24);
  background: linear-gradient(180deg,#41382d,#302920);
}
.tier-featured { background: var(--cream); color: var(--ink); border-color: var(--accent); }
.tier-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  padding: 6px 12px;
  background: var(--accent);
  color: #111;
  font-size: 10px;
  font-weight: 700;
}
.tier-name { font: 40px/1 var(--serif); margin-bottom: 8px; }
.tier-kicker { min-height: 36px; color: var(--muted); font-size: 13px; margin-bottom: 24px; }
.tier-featured .tier-kicker { color: var(--muted-dark); }
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid currentColor;
}
.tier-currency { font: 24px var(--serif); opacity: .65; }
.tier-amount { font: 72px/1 var(--serif); letter-spacing: 0; }
.tier-unit { color: inherit; opacity: .65; font-size: 14px; }
.tier-feats { flex: 1; display: grid; gap: 11px; padding: 0; margin: 0 0 28px; list-style: none; color: var(--muted); }
.tier-featured .tier-feats { color: var(--muted-dark); }
.tier-cta-row { display: flex; }
.pricing-foot {
  max-width: var(--maxw);
  margin: 32px auto 0;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}
.pricing-foot-dot { color: var(--accent); }

.signup-card { max-width: 900px; margin: 0 auto; text-align: center; }
.signup-sub {
  max-width: 54ch;
  margin: 0 auto 42px;
  color: var(--muted);
  font: italic clamp(18px,1.8vw,22px)/1.5 var(--serif);
}
.signup-foot { margin: 48px 0 20px; color: var(--muted); font-size: 12px; }
.recaptcha-note {
  display: block;
  max-width: 58ch;
  margin: 10px auto 0;
  color: rgba(185,175,160,.78);
  font-size: 11px;
  line-height: 1.45;
}
.recaptcha-note a { color: var(--accent); }
.grecaptcha-badge { visibility: hidden; }
.email-capture {
  max-width: 560px;
  margin: 0 auto 24px;
}
.email-capture form {
  margin: 0;
}
.email-capture input[type="email"],
.email-capture input[type="text"] {
  min-height: 46px;
  border: 1px solid var(--line);
  background: #17140f;
  color: #f5f0e9;
}
.email-capture button,
.email-capture input[type="submit"] {
  min-height: 46px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
}
.signup-done {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border: 1px solid var(--accent);
  text-align: left;
}
.signup-done-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
}
.signup-done-title { font: 22px var(--serif); }
.signup-done-sub { color: var(--muted); font-size: 14px; }
.proof-strip {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 8px;
}
.proof-strip img { aspect-ratio: 4/3; border: 1px solid var(--line); border-radius: 8px; }

.foot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px var(--x) 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.foot-brand { margin-bottom: 10px; color: #f5f0e9; font-size: 18px; font-weight: 800; letter-spacing: .08em; }
.foot-tag { max-width: 32ch; margin-bottom: 20px; font-style: italic; }
.foot-meta, .foot-col-h { font-size: 11px; }
.foot-cols { display: grid; grid-template-columns: repeat(3,minmax(110px,auto)); gap: 16px 48px; }
.foot-col a { display: block; padding: 4px 0; }

.privacy-dialog {
  width: min(820px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: #f5f0e9;
}
.privacy-dialog::backdrop { background: rgba(0,0,0,.72); }
.privacy-panel {
  position: relative;
  max-height: inherit;
  overflow: auto;
  padding: clamp(24px,4vw,44px);
}
.privacy-close {
  float: right;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: #f5f0e9;
  cursor: pointer;
}
.privacy-panel h2 {
  margin: 0 0 10px;
  font: 300 clamp(38px,6vw,64px)/.95 var(--serif);
}
.privacy-panel h3 {
  margin: 30px 0 8px;
  font: 400 24px/1.1 var(--serif);
}
.privacy-panel p,
.privacy-panel li { color: var(--muted); }
.privacy-panel a { color: var(--accent); }
.privacy-updated { margin: 0 0 28px; color: var(--accent); font-size: 13px; }
.privacy-panel ul { padding-left: 20px; }

@media (max-width: 960px) {
  .steps, .pricing-grid, .feat-lead-v2 { grid-template-columns: 1fr; }
  .tier-featured { transform: none; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .brand { gap: 10px; }
  .hero-slider { padding-inline: 20px; }
  .ba-hero { height: 600px; }
  .hero-slider-overlay { left: 24px; right: 24px; bottom: 24px; max-width: none; }
  .gallery-feature .ba-wrap { height: 520px; }
  .gallery-thumbs { grid-template-columns: repeat(3,1fr); }
  .export-strip { grid-template-columns: 1fr; }
  .feat-grid, .proof-strip { grid-template-columns: repeat(2,1fr); }
  .foot-cols { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .nav { gap: 10px; padding-inline: 12px; }
  .brand { gap: 8px; }
  .brand-mark { width: 28px; height: 28px; }
  .brand-mark img { width: 22px; height: 22px; }
  .brand-name { font-size: clamp(13px,4.1vw,17px); letter-spacing: .07em; }
  .nav-cta { min-height: 36px; padding-inline: 12px; font-size: 12px; }
  .display { font-size: clamp(42px,12vw,58px); }
  .display-md, .display-lg { font-size: clamp(38px,12vw,56px); }
  .founder-heading { font-size: clamp(22px,6.6vw,34px); line-height: 1.24; }
  .hero-slider-overlay { padding: 24px; }
  .gallery-thumbs { grid-template-columns: repeat(2,1fr); }
  .feat-grid { grid-template-columns: 1fr; }
}
