:root{
  --site-max:1200px;
  --site-narrow:1040px;
  --hero-glow:rgba(192, 146, 88, 0.18);
  --hero-glow-deep:rgba(27, 44, 61, 0.16);
  --site-border:rgba(112, 90, 63, 0.10);
  --site-border-strong:rgba(86, 66, 44, 0.14);
  --site-shadow:0 34px 110px rgba(17, 25, 34, 0.12);
  --site-shadow-soft:0 18px 46px rgba(16, 24, 32, 0.06);
  --glass-fill:rgba(255,255,255,0.58);
  --glass-fill-strong:rgba(255,255,255,0.72);
  --ink-soft:#6a6256;
}

.marketing-page{
  min-height:100vh;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 10% 0%, var(--hero-glow), transparent 24%),
    radial-gradient(circle at 94% 10%, var(--hero-glow-deep), transparent 24%),
    linear-gradient(180deg, #f8f4ec 0%, #f1eade 42%, #ece2d3 100%);
}

.page-shell{
  width:min(var(--site-max), calc(100vw - 40px));
  margin:0 auto;
}

.page-shell.page-shell-narrow{
  width:min(var(--site-narrow), calc(100vw - 40px));
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(248, 244, 236, 0.66);
  backdrop-filter:blur(24px) saturate(120%);
  border-bottom:1px solid rgba(124, 105, 82, 0.08);
}

.mobile-sticky-bar{
  display:none;
}

.site-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:84px;
}

.site-brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--text);
  text-decoration:none;
}

.brand-mark{
  width:46px;
  height:46px;
  border-radius:8px;
  display:grid;
  place-items:center;
  padding:3px;
  overflow:hidden;
  background:rgba(10,18,27,0.72);
  border:1px solid rgba(132,151,167,0.18);
}

.site-brand-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.site-brand-copy strong{
  font-family:"Space Grotesk", "Segoe UI", sans-serif;
  font-size:1.08rem;
  letter-spacing:-0.04em;
}

.site-brand-copy span{
  color:var(--muted);
  font-size:0.9rem;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px;
  border-radius:999px;
  background:rgba(255,255,255,0.38);
  border:1px solid rgba(124, 105, 82, 0.06);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.32);
}

.site-nav a{
  padding:10px 14px;
  border-radius:999px;
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  transition:background-color .2s ease, color .2s ease, transform .2s ease;
}

.site-nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,0.7);
}

.site-nav a.is-current{
  color:#f7f0e7;
  background:linear-gradient(135deg, #13202c 0%, #31485f 100%);
  box-shadow:0 10px 20px rgba(18, 29, 39, 0.18);
}

.site-nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.language-switcher{
  display:inline-flex;
  align-items:center;
  gap:3px;
  padding:4px;
  border-radius:999px;
  border:1px solid rgba(132,151,167,0.22);
  background:rgba(10,17,25,0.72);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.04);
}

.language-switcher button{
  min-width:34px;
  height:30px;
  padding:0 9px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:#9aacba;
  font:700 0.76rem "IBM Plex Sans", "Segoe UI", sans-serif;
  cursor:pointer;
  transition:background-color .2s ease, color .2s ease;
}

.language-switcher button:hover{
  color:#edf5fb;
  background:rgba(255,255,255,0.06);
}

.language-switcher button.is-active{
  color:#101923;
  background:linear-gradient(180deg, #d5b06a, #a77b37);
}

.language-switcher-compact{
  padding:2px;
  border-radius:4px;
  background:#edf1f4;
  border-color:#aeb8c2;
}

.language-switcher-compact button{
  min-width:30px;
  height:26px;
  border-radius:3px;
  color:#52606d;
  font-size:0.68rem;
  letter-spacing:0.08em;
}

.language-switcher-compact button:hover{
  color:#172535;
  background:#dbe3ea;
}

.language-switcher-compact button.is-active{
  color:#f4f7fa;
  background:#172535;
}

.nav-soon{
  position:relative;
  display:flex;
  align-items:center;
}

.nav-soon summary{
  list-style:none;
  cursor:pointer;
  user-select:none;
  padding:10px 14px;
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  outline:none;
  transition:background-color .2s ease, color .2s ease;
}

.nav-soon summary::-webkit-details-marker{
  display:none;
}

.nav-soon summary:hover,
.nav-soon[open] summary{
  color:var(--text);
  background:rgba(255,255,255,0.7);
}

.nav-soon-popover{
  position:absolute;
  top:calc(100% + 12px);
  right:0;
  width:238px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(202, 165, 127, 0.18);
  background:rgba(16, 25, 35, 0.96);
  box-shadow:0 24px 62px rgba(0,0,0,0.28);
  color:#f5efe7;
  z-index:80;
}

.nav-soon-popover::before{
  content:"";
  position:absolute;
  top:-6px;
  right:22px;
  width:10px;
  height:10px;
  border-left:1px solid rgba(202, 165, 127, 0.18);
  border-top:1px solid rgba(202, 165, 127, 0.18);
  background:rgba(16, 25, 35, 0.96);
  transform:rotate(45deg);
}

.nav-soon-popover strong,
.nav-soon-popover span{
  display:block;
}

.nav-soon-popover strong{
  font-size:0.94rem;
  color:#f5efe7;
}

.nav-soon-popover span{
  margin-top:6px;
  color:rgba(245,239,231,0.72);
  font-size:0.86rem;
  line-height:1.5;
}

.hero-section{
  position:relative;
  padding:90px 0 52px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap:42px;
  align-items:start;
}

.hero-grid > *{
  min-width:0;
}

.hero-copy{
  position:relative;
  z-index:1;
}

.panel-kicker,
.section-kicker,
.hero-stat-label,
.hero-chip,
.showcase-label,
.section-lead span,
.site-card span,
.showcase-caption span,
.plan-tier,
.contact-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:0.75rem;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#6c6358;
}

.panel-kicker::before,
.section-kicker::before,
.hero-stat-label::before,
.showcase-label::before,
.contact-eyebrow::before{
  content:"";
  width:22px;
  height:1px;
  background:rgba(108, 99, 88, 0.48);
}

.hero-copy h1{
  margin-top:20px;
  font-size:clamp(3.1rem, 5.5vw, 5.7rem);
  line-height:0.92;
  letter-spacing:-0.065em;
  max-width:11ch;
  text-wrap:balance;
}

.hero-copy p{
  margin-top:24px;
  max-width:60ch;
  font-size:1.075rem;
  line-height:1.78;
  color:#5f625d;
}

.hero-actions,
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.hero-meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.hero-chip{
  padding:11px 15px;
  border-radius:999px;
  background:rgba(255,255,255,0.56);
  border:1px solid rgba(124, 105, 82, 0.06);
  letter-spacing:0;
  text-transform:none;
  font-size:0.88rem;
  font-weight:600;
  color:var(--text);
  box-shadow:0 10px 24px rgba(16, 24, 32, 0.04);
}

.hero-chip::before{
  display:none;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:36px;
}

.hero-stat{
  padding:24px 22px 20px;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0.46));
  border:1px solid rgba(112, 90, 63, 0.08);
  box-shadow:var(--site-shadow-soft);
  backdrop-filter:blur(18px);
}

.hero-stat strong{
  display:block;
  margin-top:14px;
  font-family:"Space Grotesk", "Segoe UI", sans-serif;
  font-size:1.52rem;
  letter-spacing:-0.05em;
}

.hero-stat p{
  margin-top:9px;
  font-size:0.92rem;
  line-height:1.66;
}

.hero-stage{
  position:relative;
  padding:24px;
  border-radius:38px;
  background:
    linear-gradient(164deg, rgba(15, 24, 34, 0.985) 0%, rgba(24, 38, 52, 0.97) 52%, rgba(69, 51, 36, 0.9) 100%);
  border:1px solid rgba(103, 83, 62, 0.12);
  box-shadow:0 40px 120px rgba(17, 26, 36, 0.18);
  overflow:hidden;
}

.hero-stage::before{
  content:"";
  position:absolute;
  inset:-12% auto auto -8%;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(220, 182, 135, 0.24), transparent 68%);
  pointer-events:none;
}

.hero-stage::after{
  content:"";
  position:absolute;
  right:-60px;
  bottom:-70px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(116, 147, 169, 0.22), transparent 68%);
  pointer-events:none;
}

.hero-stage-product{
  padding:18px;
  border-radius:28px;
  margin-top:58px;
  background:
    linear-gradient(180deg, rgba(23, 35, 48, 0.98), rgba(9, 15, 23, 0.98));
  border-color:rgba(132,151,167,0.24);
}

.hero-stage-product::before,
.hero-stage-product::after{
  width:260px;
  height:260px;
  border-radius:999px;
  filter:blur(2px);
}

.product-hero-visual{
  position:relative;
  z-index:1;
  min-height:600px;
}

.product-hero-visual-clean{
  min-height:560px;
}

.product-hero-shell{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(132,151,167,0.28);
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    #111c26;
  background-size:18px 18px, 18px 18px, cover;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.04), 0 28px 70px rgba(0,0,0,0.28);
}

.pattern-showcase-shell{
  background:#111c26;
}

.product-hero-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px 13px;
  border-bottom:1px solid rgba(132,151,167,0.20);
}

.product-hero-topbar strong{
  display:block;
  margin-top:6px;
  color:#edf5fb;
  font-size:1.08rem;
  letter-spacing:0.05em;
  text-transform:uppercase;
}

.product-hero-topbar > span{
  padding:7px 10px;
  border-radius:999px;
  background:#0b141d;
  border:1px solid rgba(213,176,106,0.24);
  color:#d5b06a;
  font-size:0.76rem;
  font-weight:800;
}

.product-hero-canvas{
  position:relative;
  min-height:410px;
  padding:28px 28px 44px 42px;
}

.pattern-showcase-canvas{
  min-height:410px;
  padding:28px;
}

.fabric-surface{
  border:1px solid rgba(213,176,106,0.24);
  background:
    repeating-linear-gradient(135deg, rgba(245,245,245,0.92) 0 6px, rgba(67,101,125,0.96) 6px 10px, rgba(2,36,75,0.98) 10px 16px, rgba(245,245,245,0.9) 16px 23px),
    repeating-linear-gradient(45deg, rgba(2,36,75,0.95) 0 12px, rgba(245,245,245,0.72) 12px 20px, rgba(139,94,60,0.65) 20px 26px, rgba(67,101,125,0.8) 26px 38px),
    url("../public/weave-grid.svg");
  background-blend-mode:multiply, screen, normal;
  background-size:auto, auto, 520px 520px;
}

.fabric-surface-reference{
  background-image:url("../public/assets/marketing/texric-reference-fabric.png");
  background-size:cover;
  background-position:center;
}

.fabric-surface-large{
  height:360px;
  border-radius:14px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.06), inset 0 -50px 90px rgba(7,13,20,0.12);
}

.fabric-surface-reference.fabric-surface-large{
  height:390px;
  border-radius:16px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.08), 0 22px 46px rgba(0,0,0,0.22);
}

.viewport-ruler{
  position:absolute;
  display:flex;
  color:rgba(245,239,231,0.68);
  font-size:0.72rem;
  font-weight:800;
  pointer-events:none;
}

.viewport-ruler-left{
  left:16px;
  top:46px;
  bottom:60px;
  flex-direction:column;
  justify-content:space-between;
}

.viewport-ruler-bottom{
  left:58px;
  right:34px;
  bottom:20px;
  justify-content:space-around;
  border-top:1px solid rgba(213,176,106,0.28);
}

.viewport-callout{
  position:absolute;
  z-index:2;
  max-width:270px;
  padding:12px 14px;
  border-radius:9px;
  border:1px solid rgba(213,176,106,0.20);
  background:linear-gradient(180deg, rgba(25,34,43,0.94), rgba(13,20,28,0.94));
  box-shadow:0 16px 32px rgba(0,0,0,0.24);
}

.viewport-callout span{
  display:block;
  color:#edf5fb;
  font-size:0.78rem;
  font-weight:900;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.viewport-callout strong{
  display:block;
  margin-top:5px;
  color:rgba(237,245,251,0.68);
  font-size:0.76rem;
  line-height:1.35;
}

.callout-top{
  top:42px;
  left:56px;
}

.pattern-callout{
  top:46px;
  left:46px;
}

.callout-bottom{
  left:56px;
  bottom:62px;
}

.viewport-tools{
  position:absolute;
  right:42px;
  bottom:60px;
  display:flex;
  align-items:center;
  gap:7px;
  padding:7px;
  border-radius:10px;
  border:1px solid rgba(132,151,167,0.22);
  background:rgba(10,17,25,0.82);
  box-shadow:0 14px 32px rgba(0,0,0,0.24);
}

.viewport-tools span,
.viewport-tools strong{
  display:grid;
  place-items:center;
  min-width:30px;
  height:24px;
  border-radius:6px;
  background:#182635;
  color:#edf5fb;
  font-size:0.76rem;
  font-weight:900;
}

.hero-report-card{
  position:absolute;
  z-index:3;
  right:18px;
  bottom:6px;
  width:330px;
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(213,176,106,0.28);
  background:linear-gradient(180deg, rgba(247,248,249,0.98), rgba(231,235,239,0.96));
  color:#111923;
  box-shadow:0 28px 70px rgba(0,0,0,0.34);
}

.hero-report-head,
.report-document-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(17,25,35,0.14);
}

.hero-report-head strong,
.report-document-head strong{
  font-family:"Space Grotesk", "Segoe UI", sans-serif;
  font-size:1.12rem;
  letter-spacing:-0.03em;
}

.hero-report-head span,
.report-document-head span{
  font-weight:800;
  color:#263442;
}

.hero-report-grid{
  display:grid;
  gap:8px;
  margin-top:12px;
}

.hero-report-grid div,
.report-data-list div{
  display:grid;
  gap:2px;
}

.hero-report-grid span,
.report-data-list span{
  font-size:0.72rem;
  font-weight:900;
  color:#17212b;
}

.hero-report-grid strong,
.report-data-list strong{
  color:#263442;
  font-size:0.8rem;
}

.draft-and-colors{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:14px;
  align-items:center;
  margin-top:14px;
}

.draft-preview{
  aspect-ratio:1;
  border:1px solid rgba(17,25,35,0.18);
  background:
    linear-gradient(90deg, rgba(2,36,75,0.06) 1px, transparent 1px),
    linear-gradient(rgba(2,36,75,0.06) 1px, transparent 1px),
    repeating-linear-gradient(135deg, #1263f4 0 18px, #dde2e8 18px 36px, #f5f5f5 36px 54px);
  background-size:18px 18px, 18px 18px, auto;
}

.report-color-stack{
  display:grid;
  grid-template-columns:1fr 34px;
  gap:8px 10px;
  align-items:center;
}

.report-color-stack span{
  grid-column:1 / -1;
  color:#111923;
  font-size:0.82rem;
  font-weight:900;
}

.report-color-stack i{
  display:block;
  width:100%;
  height:22px;
  border:1px solid rgba(17,25,35,0.18);
  background:var(--swatch);
}

.hero-visual-metrics{
  position:absolute;
  left:26px;
  bottom:18px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid rgba(213,176,106,0.22);
  border-radius:999px;
  background:rgba(10,17,25,0.86);
}

.hero-visual-metrics span{
  color:#d5b06a;
  font-size:0.72rem;
  font-weight:900;
  letter-spacing:0.1em;
  text-transform:uppercase;
}

.hero-visual-metrics strong{
  color:#edf5fb;
  font-size:0.82rem;
}

.showcase-window{
  position:relative;
  z-index:1;
}

.showcase-frame{
  overflow:hidden;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,0.985), rgba(246, 239, 229, 0.985));
  border:1px solid rgba(210, 192, 167, 0.34);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.58);
}

.showcase-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 20px;
  border-bottom:1px solid rgba(176, 157, 132, 0.14);
  background:rgba(255,255,255,0.9);
}

.showcase-browser-dots{
  display:flex;
  gap:8px;
}

.showcase-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(139, 94, 60, 0.26);
}

.showcase-topbar strong{
  font-size:0.92rem;
}

.showcase-topbar span{
  color:var(--muted);
  font-size:0.84rem;
}

.showcase-body{
  display:grid;
  grid-template-columns:212px minmax(0, 1fr);
  gap:20px;
  padding:22px;
}

.showcase-sidebar,
.showcase-stage-panel{
  border-radius:24px;
  border:1px solid rgba(210, 192, 167, 0.28);
  background:linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.7));
  box-shadow:0 14px 34px rgba(21, 28, 36, 0.05);
}

.showcase-sidebar{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:18px;
}

.showcase-chip{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:13px 14px;
  border-radius:18px;
  background:rgba(248, 244, 236, 0.78);
  border:1px solid rgba(216, 208, 194, 0.34);
  color:var(--text);
  font-weight:600;
}

.showcase-chip strong{
  font-size:0.86rem;
  color:var(--muted);
}

.showcase-stage-panel{
  padding:20px;
}

.showcase-stage-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:18px;
}

.showcase-stage-header h3{
  font-size:1.28rem;
  letter-spacing:-0.04em;
}

.showcase-stage-header p{
  margin-top:8px;
  font-size:0.93rem;
}

.showcase-status{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(20, 32, 43, 0.06);
  color:var(--text);
  font-size:0.84rem;
  font-weight:700;
}

.showcase-workspace{
  display:grid;
  grid-template-columns:minmax(0, 0.92fr) minmax(220px, 0.72fr);
  gap:16px;
}

.showcase-controls,
.showcase-preview{
  min-height:360px;
  border-radius:22px;
  border:1px solid rgba(210, 192, 167, 0.22);
  background:rgba(255,255,255,0.92);
  overflow:hidden;
}

.showcase-controls{
  padding:18px;
}

.showcase-mini-toolbar{
  display:flex;
  gap:8px;
  margin-bottom:16px;
}

.showcase-mini-tab{
  padding:8px 11px;
  border-radius:999px;
  background:#f5efe6;
  color:var(--muted);
  font-size:0.82rem;
  font-weight:700;
}

.showcase-mini-tab.is-current{
  background:linear-gradient(135deg, #13202c 0%, #36516d 100%);
  color:#f8f2e8;
}

.showcase-form-grid{
  display:grid;
  gap:12px;
}

.showcase-field{
  padding:15px 16px;
  border-radius:18px;
  background:linear-gradient(180deg, #fbf7f0, #f8f2e8);
  border:1px solid rgba(216, 208, 194, 0.32);
}

.showcase-field span{
  display:block;
  font-size:0.74rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--muted);
}

.showcase-field strong{
  display:block;
  margin-top:8px;
  font-size:1rem;
}

.showcase-preview{
  position:relative;
  padding:18px;
  background:
    linear-gradient(180deg, rgba(17, 28, 38, 0.04), rgba(17, 28, 38, 0.015)),
    rgba(255,255,255,0.97);
}

.showcase-preview-card{
  position:absolute;
  inset:18px;
  border-radius:22px;
  border:1px solid rgba(148, 128, 102, 0.12);
  background:
    repeating-linear-gradient(0deg, rgba(244,232,214,0.78) 0 12px, rgba(37,62,82,0.88) 12px 18px, rgba(163,115,67,0.72) 18px 25px, rgba(18,31,43,0.86) 25px 40px),
    repeating-linear-gradient(90deg, rgba(19,35,49,0.52) 0 10px, rgba(213,176,106,0.52) 10px 14px, rgba(237,245,251,0.3) 14px 22px, rgba(72,102,124,0.52) 22px 38px),
    url("../public/weave-grid.svg");
  background-blend-mode:multiply, screen, normal;
  background-size:auto, auto, cover;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    inset 0 -24px 40px rgba(10, 18, 24, 0.05);
  overflow:hidden;
}

.showcase-preview-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255,255,255,0.32) 47% 49%, transparent 49% 100%),
    linear-gradient(0deg, transparent 0 52%, rgba(255,255,255,0.2) 52% 54%, transparent 54% 100%);
  mix-blend-mode:soft-light;
}

.showcase-preview-card::after{
  content:"Plaid repeat preview";
  position:absolute;
  left:16px;
  top:16px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(10,18,26,0.58);
  color:rgba(255,255,255,0.82);
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:0.04em;
}

.showcase-preview-note{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:15px 17px;
  border-radius:18px;
  background:rgba(255,255,255,0.76);
  backdrop-filter:blur(18px) saturate(120%);
  border:1px solid rgba(146, 126, 101, 0.10);
}

.showcase-preview-note strong{
  display:block;
  font-size:0.94rem;
}

.showcase-preview-note span{
  color:var(--muted);
  font-size:0.84rem;
}

.floating-note{
  position:absolute;
  z-index:2;
  padding:17px 18px;
  border-radius:22px;
  background:rgba(255,255,255,0.72);
  backdrop-filter:blur(18px) saturate(120%);
  border:1px solid rgba(205, 189, 166, 0.18);
  box-shadow:0 16px 40px rgba(16, 25, 34, 0.14);
}

.floating-note.note-top{
  top:26px;
  right:-18px;
}

.floating-note.note-bottom{
  left:-18px;
  bottom:26px;
}

.floating-note strong{
  display:block;
  font-size:0.88rem;
}

.floating-note span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:0.84rem;
  line-height:1.5;
}

.trust-row{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
  margin-top:26px;
}

.trust-tile{
  padding:20px 21px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,0.54), rgba(255,255,255,0.42));
  border:1px solid rgba(112, 90, 63, 0.08);
  box-shadow:0 14px 36px rgba(16, 24, 32, 0.04);
}

.trust-tile strong{
  display:block;
  font-size:1rem;
}

.trust-tile p{
  margin-top:8px;
  font-size:0.92rem;
}

.content-section{
  padding:42px 0 24px;
}

.section-grid{
  display:grid;
  grid-template-columns:minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap:22px;
}

.section-grid.reverse{
  grid-template-columns:minmax(320px, 0.72fr) minmax(0, 0.86fr);
}

.section-lead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:26px;
  margin-bottom:28px;
}

.section-lead h2{
  margin-top:14px;
  font-size:clamp(2rem, 2.7vw, 3.2rem);
  line-height:0.98;
  letter-spacing:-0.05em;
}

.section-lead p{
  max-width:56ch;
}

.feature-grid,
.audience-grid,
.plan-grid,
.contact-grid,
.story-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

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

.site-card,
.story-card,
.contact-card,
.plan-card,
.comparison-card,
.cta-band{
  border-radius:30px;
  border:1px solid rgba(112, 90, 63, 0.08);
  background:linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.54));
  box-shadow:var(--site-shadow-soft);
  backdrop-filter:blur(18px);
}

.site-card,
.story-card,
.contact-card,
.plan-card,
.comparison-card{
  padding:28px;
}

.site-card strong,
.story-card strong,
.contact-card strong,
.plan-card strong{
  display:block;
  margin-top:12px;
  color:var(--text);
  font-size:1.22rem;
  line-height:1.24;
  letter-spacing:-0.03em;
}

.site-card p,
.story-card p,
.contact-card p{
  margin-top:14px;
}

.site-card ul,
.story-card ul,
.plan-card ul{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:18px;
}

.site-card li,
.story-card li,
.plan-card li{
  position:relative;
  padding-left:18px;
  color:var(--muted);
  line-height:1.6;
}

.site-card li::before,
.story-card li::before,
.plan-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.72em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:linear-gradient(135deg, #8b5e3c, #caa57f);
}

.story-card.is-dark,
.cta-band{
  color:#f5efe7;
  background:
    linear-gradient(140deg, rgba(15, 25, 35, 0.98) 0%, rgba(23, 36, 49, 0.95) 58%, rgba(66, 49, 36, 0.92) 100%);
  border-color:rgba(202, 165, 127, 0.18);
  box-shadow:0 34px 90px rgba(14, 24, 34, 0.16);
}

.story-card.is-dark strong,
.story-card.is-dark p,
.story-card.is-dark li,
.story-card.is-dark span,
.cta-band h2,
.cta-band p{
  color:#f5efe7;
}

.story-card.is-dark .section-kicker,
.cta-band .section-kicker{
  color:rgba(245, 239, 231, 0.72);
}

.story-card.is-dark .section-kicker::before,
.cta-band .section-kicker::before{
  background:rgba(245, 239, 231, 0.28);
}

.product-panel{
  padding:30px;
  border-radius:34px;
  border:1px solid rgba(86, 66, 44, 0.10);
  background:linear-gradient(180deg, rgba(255,255,255,0.66), rgba(255,255,255,0.5));
  box-shadow:var(--site-shadow);
  backdrop-filter:blur(20px);
}

.product-panel-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}

.product-panel-header h3{
  margin-top:14px;
  font-size:1.5rem;
}

.product-badge{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(20, 32, 43, 0.08);
  color:var(--text);
  font-size:0.84rem;
  font-weight:700;
}

.product-panel-grid{
  display:grid;
  grid-template-columns:minmax(0, 0.84fr) minmax(240px, 0.68fr);
  gap:18px;
  margin-top:20px;
}

.product-list,
.product-side{
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(112, 90, 63, 0.08);
  background:rgba(255,255,255,0.74);
}

.product-list{
  display:grid;
  gap:14px;
  align-content:start;
  align-self:start;
}

.product-line{
  display:grid;
  gap:8px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(180, 164, 139, 0.16);
}

.product-line:last-child{
  padding-bottom:0;
  border-bottom:0;
}

.product-line span{
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--muted);
}

.product-line strong{
  font-size:1.02rem;
}

.product-side{
  background:
    linear-gradient(180deg, rgba(19, 32, 44, 0.06), rgba(19, 32, 44, 0.02)),
    rgba(255,255,255,0.88);
}

.product-side .mini-report{
  position:relative;
  min-height:280px;
  border-radius:24px;
  border:1px solid rgba(180, 164, 139, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(245, 238, 229, 0.96));
  padding:20px;
  overflow:hidden;
}

.product-side .mini-report::after{
  content:"";
  display:block;
  height:78px;
  margin-top:18px;
  border-radius:18px;
  border:1px solid rgba(180,164,139,0.16);
  background:
    repeating-linear-gradient(90deg, #142638 0 14px, #d5b06a 14px 18px, #edf5fb 18px 27px, #52697d 27px 42px),
    repeating-linear-gradient(0deg, rgba(237,245,251,0.72) 0 9px, rgba(85,104,119,0.74) 9px 15px, rgba(167,123,55,0.7) 15px 20px, rgba(15,25,35,0.78) 20px 34px);
  background-blend-mode:multiply;
}

.technical-report-preview::after{
  display:none;
}

.technical-report-preview{
  min-height:0;
}

.a4-report-frame{
  position:relative;
  margin:18px 0 0;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(213,176,106,0.18);
  background:#f8fafc;
  box-shadow:0 24px 58px rgba(0,0,0,0.28);
}

.a4-report-frame::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.82),
    inset 0 -40px 70px rgba(9,15,23,0.08);
}

.a4-report-frame img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:0.707;
  object-fit:cover;
  object-position:center top;
}

.report-document{
  margin-top:18px;
  padding:18px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(248,250,252,0.98), rgba(230,235,240,0.96));
  color:#111923;
  box-shadow:0 20px 48px rgba(0,0,0,0.18);
}

.report-document-body{
  display:grid;
  gap:14px;
  margin-top:14px;
}

.report-data-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px 14px;
}

.report-sample-grid{
  display:grid;
  grid-template-columns:100px 1fr;
  gap:16px;
  align-items:center;
}

.fabric-surface-report{
  height:150px;
  border-radius:10px;
}

.mini-report-header{
  display:flex;
  justify-content:space-between;
  gap:10px;
}

.mini-report-header strong{
  margin:0;
  font-size:1rem;
}

.mini-report-grid{
  display:grid;
  gap:10px;
  margin-top:16px;
}

.mini-report-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(180, 164, 139, 0.16);
}

.mini-report-row span{
  color:var(--muted);
  font-size:0.88rem;
}

.mini-report-swatches{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:10px;
  margin-top:18px;
}

.mini-swatch{
  aspect-ratio:1;
  border-radius:14px;
  border:1px solid rgba(180, 164, 139, 0.16);
}

.comparison-card{
  overflow:hidden;
  padding:0;
  background:rgba(255,255,255,0.62);
}

.comparison-table{
  width:100%;
  border-collapse:collapse;
}

.comparison-table th,
.comparison-table td{
  padding:18px 22px;
  border-bottom:1px solid rgba(180, 164, 139, 0.16);
  text-align:left;
}

.comparison-table th{
  background:rgba(248, 243, 234, 0.72);
  color:#6a5f51;
  font-size:0.8rem;
  text-transform:uppercase;
  letter-spacing:0.12em;
}

.comparison-table tr:last-child td{
  border-bottom:0;
}

.pricing-hero{
  grid-template-columns:minmax(0, 0.96fr) minmax(360px, 0.88fr);
}

.pricing-stack{
  display:grid;
  gap:16px;
}

.pricing-note{
  padding:24px;
  border-radius:28px;
  border:1px solid rgba(202, 165, 127, 0.12);
  background:
    linear-gradient(160deg, rgba(20, 32, 43, 0.98), rgba(35, 52, 68, 0.94));
  color:#f5efe7;
  box-shadow:0 28px 70px rgba(15, 24, 35, 0.14);
}

.pricing-note strong,
.pricing-note p,
.pricing-note li{
  color:#f5efe7;
}

.pricing-note > strong{
  display:block;
  margin-top:12px;
  line-height:1.32;
  max-width:30ch;
  overflow-wrap:anywhere;
}

.pricing-note > p{
  margin-top:14px;
  max-width:34ch;
  overflow-wrap:anywhere;
}

.pricing-note ul{
  margin-top:14px;
}

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

.plan-card{
  position:relative;
  overflow:hidden;
  min-height:100%;
}

.plan-card::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg, rgba(139, 94, 60, 0.10), rgba(202, 165, 127, 0.42));
}

.plan-card.is-featured{
  transform:translateY(-8px) scale(1.01);
  border-color:rgba(139, 94, 60, 0.16);
  box-shadow:0 38px 90px rgba(22, 31, 40, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246, 237, 226, 0.88));
}

.plan-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(20, 32, 43, 0.06);
  font-size:0.82rem;
  font-weight:700;
  color:var(--text);
}

.plan-card.is-featured .plan-badge{
  background:linear-gradient(135deg, #13202c 0%, #35506b 100%);
  color:#f7f0e7;
}

.plan-price{
  display:flex;
  align-items:flex-end;
  gap:8px;
  margin:18px 0 14px;
}

.plan-price strong{
  margin:0;
  font-size:3.4rem;
  line-height:0.92;
  letter-spacing:-0.07em;
}

.plan-price span{
  color:var(--muted);
}

.plan-availability{
  display:grid;
  align-items:start;
  gap:8px;
  padding:18px 18px 16px;
  border-radius:22px;
  border:1px solid rgba(213,176,106,0.22);
  background:linear-gradient(180deg, rgba(213,176,106,0.12), rgba(82,105,125,0.08));
}

.plan-availability strong{
  font-size:1.35rem;
  line-height:1.1;
  letter-spacing:-0.03em;
}

.plan-availability span{
  font-size:0.92rem;
  line-height:1.45;
}

.plan-footnote{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(180, 164, 139, 0.16);
  font-size:0.9rem;
  color:var(--muted);
}

.contact-hero{
  grid-template-columns:minmax(0, 0.98fr) minmax(340px, 0.82fr);
}

.contact-highlight{
  padding:28px;
  border-radius:32px;
  border:1px solid rgba(202, 165, 127, 0.12);
  background:
    linear-gradient(155deg, rgba(18, 30, 41, 0.985), rgba(34, 50, 66, 0.95));
  box-shadow:0 32px 82px rgba(14, 24, 34, 0.14);
  color:#f5efe7;
}

.contact-highlight strong,
.contact-highlight p,
.contact-highlight a{
  color:#f5efe7;
}

.contact-highlight a{
  text-decoration:none;
}

.contact-highlight-grid{
  display:grid;
  gap:14px;
  margin-top:18px;
}

.contact-highlight-item{
  padding:17px 18px;
  border-radius:20px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.06);
}

.contact-grid{
  grid-template-columns:minmax(0, 0.94fr) minmax(320px, 0.74fr);
}

.contact-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.58));
}

.contact-stack{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact-stack a{
  color:var(--accent-deep);
  text-decoration:none;
  font-weight:700;
}

.contact-form{
  display:grid;
  gap:14px;
}

.contact-form textarea{
  min-height:150px;
  resize:vertical;
  padding:16px;
  border:1px solid rgba(180, 164, 139, 0.22);
  border-radius:16px;
  background:rgba(255,255,255,0.88);
  color:var(--text);
}

.contact-note{
  padding:20px;
  border-radius:20px;
  background:rgba(248, 243, 234, 0.74);
  border:1px solid rgba(180, 164, 139, 0.10);
}

.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  margin-top:24px;
  padding:32px;
}

.cta-band-copy h2{
  margin-top:14px;
  font-size:clamp(2.05rem, 2.8vw, 3rem);
  line-height:0.98;
  letter-spacing:-0.05em;
}

.marketing-footer{
  padding:46px 0 56px;
}

.marketing-footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:22px;
  border-top:1px solid rgba(124, 105, 82, 0.16);
  color:var(--muted);
}

.marketing-footer-inner > div{
  display:grid;
  gap:6px;
}

.marketing-footer-inner p{
  margin:0;
}

.footer-legal-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px 16px;
  max-width:520px;
}

.footer-legal-links a{
  color:var(--muted);
  text-decoration:none;
  font-size:0.9rem;
  font-weight:700;
  transition:color .2s ease;
}

.footer-legal-links a:hover{
  color:var(--accent);
}

.footer-support-link,
.legal-mail-link{
  color:#f0d59c;
  text-decoration:none;
  font-weight:700;
}

.footer-support-link:hover,
.legal-mail-link:hover{
  color:var(--accent);
  text-decoration:underline;
}

.legal-hero{
  padding-bottom:34px;
}

.legal-hero .hero-copy h1{
  max-width:15ch;
  font-size:clamp(2.45rem, 4vw, 4.35rem);
  line-height:1;
  letter-spacing:-0.045em;
}

.legal-summary{
  display:grid;
  gap:14px;
  padding:24px;
  box-sizing:border-box;
  min-width:0;
  border-radius:24px;
  border:1px solid rgba(213,176,106,0.18);
  background:linear-gradient(180deg, rgba(24,36,48,0.84), rgba(13,20,28,0.78));
  box-shadow:var(--site-shadow-soft);
}

.legal-summary strong{
  color:var(--text);
  font-size:1.05rem;
}

.legal-summary p,
.legal-summary li{
  color:var(--muted);
  line-height:1.7;
  overflow-wrap:anywhere;
}

.legal-summary ul{
  margin:0;
  padding-left:20px;
}

.legal-document{
  display:grid;
  gap:18px;
  padding:30px;
  box-sizing:border-box;
  min-width:0;
  border-radius:28px;
  border:1px solid rgba(151,169,184,0.20);
  background:linear-gradient(180deg, rgba(29,43,56,0.96), rgba(16,26,37,0.94));
  box-shadow:var(--site-shadow-soft);
}

.legal-section{
  padding:22px 0;
  border-top:1px solid rgba(151,169,184,0.16);
}

.legal-section:first-child{
  padding-top:0;
  border-top:0;
}

.legal-section h2{
  margin:0 0 12px;
  color:var(--text);
  font-size:1.34rem;
  line-height:1.2;
  letter-spacing:-0.02em;
}

.legal-section h3{
  margin:18px 0 8px;
  color:#f0d59c;
  font-size:1rem;
}

.legal-section p,
.legal-section li{
  color:var(--muted);
  line-height:1.75;
}

.legal-section p{
  margin:0 0 12px;
}

.legal-section ul,
.legal-section ol{
  margin:0 0 12px;
  padding-left:22px;
}

.legal-placeholder{
  display:inline-flex;
  padding:2px 7px;
  border-radius:6px;
  border:1px solid rgba(213,176,106,0.28);
  background:rgba(213,176,106,0.12);
  color:#f0d59c;
  font-weight:700;
}

.legal-meta-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:16px;
}

.legal-meta-item{
  padding:14px;
  min-width:0;
  box-sizing:border-box;
  border-radius:14px;
  border:1px solid rgba(151,169,184,0.16);
  background:rgba(10,17,25,0.38);
}

.legal-meta-item span{
  display:block;
  margin-bottom:6px;
  color:#d5b06a;
  font-size:0.76rem;
  font-weight:800;
  letter-spacing:0.1em;
  text-transform:uppercase;
}

.legal-meta-item strong{
  color:var(--text);
  font-size:0.94rem;
  overflow-wrap:anywhere;
}

.app-footer-legal-links{
  justify-content:flex-start;
  gap:8px 12px;
  margin-top:6px;
}

.app-footer-legal-links a{
  font-size:0.78rem;
}

.app-body .app-topbar{
  background:rgba(248, 244, 236, 0.72);
  backdrop-filter:blur(20px) saturate(115%);
}

.app-body .app-project-strip{
  background:rgba(255,255,255,0.42);
  border:1px solid rgba(124, 105, 82, 0.08);
  box-shadow:0 18px 42px rgba(24, 31, 38, 0.05);
}

.app-body .editor-shell,
.app-body .preview-shell{
  background:transparent;
}

/* Refined dark brand theme for marketing pages */
:root{
  --bg:#0b1118;
  --bg-elevated:#121b25;
  --surface:#182430;
  --surface-strong:#1d2a36;
  --surface-contrast:#d5b06a;
  --line:rgba(124, 146, 164, 0.24);
  --line-strong:rgba(213, 176, 106, 0.38);
  --text:#edf5fb;
  --muted:#9aacba;
  --accent:#d5b06a;
  --accent-soft:#52697d;
  --accent-deep:#a77b37;
  --hero-glow:rgba(56, 92, 122, 0.22);
  --hero-glow-deep:rgba(213, 176, 106, 0.12);
  --site-border:rgba(132, 151, 167, 0.18);
  --site-border-strong:rgba(213, 176, 106, 0.26);
  --site-shadow:0 34px 110px rgba(0, 0, 0, 0.32);
  --site-shadow-soft:0 18px 46px rgba(0, 0, 0, 0.22);
  --glass-fill:rgba(24, 36, 48, 0.72);
  --glass-fill-strong:rgba(29, 42, 54, 0.84);
  --ink-soft:#9aacba;
}

.marketing-page{
  color:var(--text);
  background:
    radial-gradient(circle at 8% 0%, var(--hero-glow), transparent 28%),
    radial-gradient(circle at 92% 8%, var(--hero-glow-deep), transparent 24%),
    linear-gradient(180deg, #0b1118 0%, #111a24 46%, #0d141c 100%);
}

.site-header{
  background:
    linear-gradient(180deg, rgba(13, 21, 31, 0.94), rgba(10, 17, 25, 0.84));
  border-bottom:1px solid rgba(132, 151, 167, 0.18);
  box-shadow:0 18px 46px rgba(0, 0, 0, 0.18);
}

.site-header-inner{
  min-height:88px;
}

.site-brand{
  gap:16px;
  padding:8px 10px 8px 6px;
  border-radius:14px;
  background:linear-gradient(90deg, rgba(255,255,255,0.055), rgba(255,255,255,0));
  border:1px solid rgba(132,151,167,0.08);
}

.site-brand,
.site-brand-copy strong,
.hero-copy h1,
.section-heading h2,
.product-panel-header h3,
.site-card strong,
.trust-tile strong,
.hero-stat strong,
.plan-card h3,
.contact-card h3{
  color:var(--text);
}

.site-brand-copy span,
.hero-copy p,
.site-card p,
.trust-tile p,
.hero-stat p,
.section-heading p,
.contact-card p,
.plan-card p{
  color:var(--muted);
}

.brand-mark{
  width:58px;
  height:58px;
  padding:0;
  border-radius:12px;
  border-color:rgba(132,151,167,0.20);
  background:#0b1220;
  box-shadow:
    0 16px 34px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.brand-mark img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.site-brand-copy{
  gap:3px;
}

.site-brand-copy strong{
  font-size:1.16rem;
  letter-spacing:-0.025em;
}

.site-brand-copy span{
  color:#b7c4cf;
  font-size:0.86rem;
}

.site-nav{
  border:1px solid rgba(132,151,167,0.16);
  border-radius:8px;
  background:rgba(16,25,35,0.76);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.04);
}

.site-nav a{
  border-radius:5px;
  color:var(--muted);
}

.site-nav a:hover,
.nav-soon summary:hover,
.nav-soon[open] summary{
  color:var(--text);
  background:rgba(255,255,255,0.06);
}

.site-nav a.is-current{
  color:#101923;
  background:linear-gradient(180deg, #d5b06a, #a77b37);
  box-shadow:none;
}

.site-nav .nav-soon summary{
  border-radius:5px;
  color:var(--muted);
}

.hero-chip,
.hero-stat,
.trust-tile,
.site-card,
.story-card,
.product-panel,
.showcase-window,
.showcase-frame,
.plan-card,
.contact-card,
.faq-item{
  border-color:rgba(151,169,184,0.20);
  background:linear-gradient(180deg, rgba(29,43,56,0.96), rgba(16,26,37,0.94));
  box-shadow:var(--site-shadow-soft);
}

.hero-stat,
.trust-tile,
.site-card,
.story-card{
  background:
    linear-gradient(180deg, rgba(34,49,63,0.98), rgba(17,28,39,0.96));
}

.product-panel{
  border-color:rgba(213,176,106,0.18);
  background:
    linear-gradient(180deg, rgba(27,40,53,0.98), rgba(13,21,30,0.96));
}

.plan-card.is-featured{
  border-color:rgba(213,176,106,0.28);
  background:
    linear-gradient(180deg, rgba(31,45,58,0.96), rgba(18,28,39,0.94));
  color:var(--text);
}

.plan-card.is-featured strong,
.plan-card.is-featured p,
.plan-card.is-featured li{
  color:var(--text);
}

.plan-card.is-featured .plan-footnote,
.plan-card.is-featured .plan-availability span{
  color:var(--muted);
}

.showcase-topbar,
.showcase-sidebar,
.showcase-stage-panel,
.showcase-preview,
.showcase-controls,
.showcase-preview-card,
.showcase-preview-note,
.showcase-field,
.showcase-chip,
.floating-note,
.showcase-status,
.showcase-mini-tab{
  border-color:rgba(132,151,167,0.16);
  background:rgba(12,18,26,0.72);
  color:var(--text);
}

.showcase-chip span,
.showcase-chip strong,
.showcase-field span,
.showcase-field strong,
.showcase-preview-note span,
.floating-note span{
  color:var(--muted);
}

.showcase-chip strong,
.showcase-preview-note strong,
.floating-note strong,
.showcase-status{
  color:var(--text);
}

.showcase-mini-tab.is-current{
  background:#d5b06a;
  color:#101923;
}

.showcase-stage-panel{
  background:linear-gradient(180deg, rgba(20,31,42,0.96), rgba(13,20,28,0.94));
}

.showcase-stage-header h3{
  color:var(--text);
}

.showcase-stage-header p{
  color:var(--muted);
}

.showcase-preview{
  background:linear-gradient(180deg, rgba(9,15,23,0.78), rgba(15,24,34,0.9));
}

.showcase-preview-card{
  background:
    repeating-linear-gradient(0deg, rgba(239,231,215,0.94) 0 12px, rgba(29,54,73,0.96) 12px 18px, rgba(181,128,67,0.88) 18px 25px, rgba(11,20,30,0.98) 25px 40px),
    repeating-linear-gradient(90deg, rgba(18,35,50,0.66) 0 10px, rgba(213,176,106,0.64) 10px 14px, rgba(237,245,251,0.42) 14px 22px, rgba(72,102,124,0.62) 22px 38px),
    url("../public/weave-grid.svg");
  background-blend-mode:multiply, screen, normal;
}

.panel-kicker,
.section-kicker,
.hero-stat-label,
.hero-chip,
.showcase-label,
.section-lead span,
.site-card span,
.showcase-caption span,
.plan-tier,
.contact-eyebrow{
  color:#d5b06a;
}

.panel-kicker::before,
.section-kicker::before,
.hero-stat-label::before,
.showcase-label::before,
.contact-eyebrow::before{
  background:rgba(213,176,106,0.52);
}

.ghost-button{
  border-color:rgba(132,151,167,0.24);
  background:rgba(24,36,48,0.82);
  color:var(--text);
}

.primary-button{
  border:1px solid rgba(213,176,106,0.34);
  background:linear-gradient(180deg, #d5b06a, #a77b37);
  color:#101923;
}

.pricing-hero,
.contact-hero,
.section-band,
.cta-band{
  border-color:rgba(132,151,167,0.16);
  background:linear-gradient(180deg, rgba(24,36,48,0.72), rgba(13,20,28,0.72));
}

.product-list,
.product-side{
  border-color:rgba(151,169,184,0.18);
  background:linear-gradient(180deg, rgba(20,31,42,0.96), rgba(10,17,25,0.92));
}

.product-line{
  border-bottom-color:rgba(151,169,184,0.16);
}

.product-line span{
  color:#d5b06a;
}

.product-line strong{
  color:var(--text);
}

.product-side .mini-report{
  border-color:rgba(213,176,106,0.20);
  background:
    linear-gradient(180deg, rgba(33,47,60,0.96), rgba(13,21,30,0.95));
}

.product-badge,
.plan-badge,
.showcase-status{
  background:rgba(213,176,106,0.14);
  border:1px solid rgba(213,176,106,0.18);
  color:#f0d59c;
}

.comparison-table th,
.contact-note,
.plan-availability{
  border-color:rgba(151,169,184,0.16);
  background:rgba(20,31,42,0.92);
  color:var(--text);
}

.marketing-footer,
.marketing-footer-inner{
  color:var(--muted);
  border-color:rgba(132,151,167,0.16);
}

@media (max-width:1080px){
  .hero-grid,
  .pricing-hero,
  .contact-hero,
  .section-grid,
  .section-grid.reverse,
  .plan-grid,
  .contact-grid,
  .story-grid{
    grid-template-columns:1fr;
  }

  .showcase-workspace,
  .product-panel-grid{
    grid-template-columns:1fr;
  }

  .hero-stage-product{
    margin-top:22px;
  }

  .product-hero-visual{
    min-height:auto;
  }

  .product-hero-visual-clean{
    min-height:auto;
  }

  .hero-report-card{
    position:relative;
    right:auto;
    bottom:auto;
    width:auto;
    margin:14px 8px 8px;
  }

  .hero-visual-metrics{
    position:relative;
    left:auto;
    bottom:auto;
    width:max-content;
    max-width:calc(100% - 16px);
    margin:12px 8px 0;
  }
}

@media (max-width:980px){
  .hero-stats,
  .trust-row,
  .feature-grid,
  .audience-grid{
    grid-template-columns:1fr;
  }

  .showcase-body,
  .site-header-inner,
  .section-lead,
  .marketing-footer-inner,
  .cta-band{
    grid-template-columns:1fr;
    flex-direction:column;
    align-items:stretch;
  }

  .footer-legal-links{
    justify-content:flex-start;
    max-width:none;
  }

  .legal-meta-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:720px){
  .page-shell,
  .page-shell.page-shell-narrow{
    width:min(100vw - 20px, 100%);
  }

  .site-nav,
  .site-nav-actions,
  .hero-actions,
  .cta-row{
    width:100%;
  }

  .site-brand{
    width:100%;
    box-sizing:border-box;
  }

  .brand-mark{
    width:52px;
    height:52px;
    flex:0 0 52px;
  }

  .site-nav{
    box-sizing:border-box;
    max-width:100%;
    gap:4px;
    padding:5px;
    overflow:auto hidden;
    justify-content:flex-start;
  }

  .site-nav a,
  .site-nav .nav-soon summary{
    flex:0 0 auto;
    padding:9px 10px;
    font-size:0.86rem;
  }

  .site-nav-actions{
    max-width:100%;
  }

  .hero-section{
    padding-top:48px;
  }

  .hero-stage-product{
    padding:10px;
    border-radius:20px;
  }

  .product-hero-topbar{
    align-items:flex-start;
    flex-direction:column;
  }

  .product-hero-canvas{
    min-height:330px;
    padding:20px 14px 36px 30px;
  }

  .pattern-showcase-canvas{
    min-height:330px;
    padding:16px;
  }

  .fabric-surface-large{
    height:288px;
  }

  .fabric-surface-reference.fabric-surface-large{
    height:306px;
  }

  .viewport-callout{
    max-width:210px;
    padding:10px;
  }

  .callout-top{
    top:30px;
    left:38px;
  }

  .pattern-callout{
    top:28px;
    left:28px;
    right:28px;
    max-width:none;
  }

  .callout-bottom,
  .viewport-tools,
  .viewport-ruler-bottom{
    display:none;
  }

  .hero-report-card{
    padding:14px;
  }

  .draft-and-colors,
  .report-sample-grid{
    grid-template-columns:1fr;
  }

  .report-data-list{
    grid-template-columns:1fr;
  }

  .a4-report-frame{
    border-radius:14px;
  }

  .hero-copy h1{
    width:100%;
    max-width:9.5ch;
    font-size:clamp(2.25rem, 10.5vw, 2.85rem);
    line-height:1.03;
    text-wrap:initial;
    white-space:normal;
    overflow-wrap:anywhere;
  }

  .hero-copy p{
    max-width:34ch;
    font-size:1rem;
    line-height:1.64;
    overflow-wrap:anywhere;
  }

  .legal-hero .hero-copy h1{
    max-width:none;
    font-size:2.08rem;
    line-height:1.12;
    letter-spacing:-0.025em;
    overflow-wrap:normal;
  }

  .legal-summary,
  .legal-document{
    width:100%;
    max-width:100%;
    padding:20px;
    border-radius:20px;
  }

  .legal-hero .contact-hero{
    display:block;
  }

  .legal-hero .legal-summary{
    margin-top:28px;
  }

  .legal-summary *{
    max-width:100%;
  }

  .legal-summary p,
  .legal-summary li{
    max-width:30ch;
  }

  .legal-placeholder{
    display:inline;
    box-decoration-break:clone;
    -webkit-box-decoration-break:clone;
    overflow-wrap:anywhere;
  }

  .hero-stats{
    display:none;
  }

  .showcase-caption,
  .showcase-topbar,
  .product-panel-header{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:720px){
  .marketing-page{
    overflow-x:hidden;
  }

  .site-header{
    position:relative;
    top:auto;
    z-index:50;
    padding-top:68px;
    backdrop-filter:none;
  }

  .mobile-sticky-bar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:90;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    min-height:64px;
    padding:8px 10px;
    border-bottom:1px solid rgba(132,151,167,0.18);
    background:linear-gradient(180deg, rgba(13,21,31,0.97), rgba(10,17,25,0.92));
    box-shadow:0 14px 34px rgba(0,0,0,0.22);
    backdrop-filter:blur(18px) saturate(120%);
  }

  .mobile-sticky-brand{
    min-width:0;
    flex:1 1 auto;
    display:flex;
    align-items:center;
    gap:9px;
    color:var(--text);
    text-decoration:none;
    font-weight:800;
  }

  .mobile-sticky-brand img{
    width:38px;
    height:38px;
    flex:0 0 38px;
    border-radius:8px;
    background:#0b1220;
    border:1px solid rgba(132,151,167,0.18);
  }

  .mobile-sticky-brand span{
    min-width:0;
    font-family:"Space Grotesk", "Segoe UI", sans-serif;
    font-size:0.9rem;
    line-height:1.1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .mobile-sticky-cta{
    flex:0 0 auto;
    width:auto;
    max-width:126px;
    min-height:40px;
    padding:10px 12px;
    border-radius:10px;
    font-size:0.78rem;
    line-height:1;
    white-space:nowrap;
  }

  .page-shell,
  .page-shell.page-shell-narrow{
    width:calc(100vw - 20px);
    max-width:calc(100vw - 20px);
  }

  .site-header-inner{
    gap:12px;
    padding:8px 0 12px;
  }

  .site-header-inner > .site-brand{
    display:none;
  }

  .site-nav-actions > .primary-button{
    display:none;
  }

  .site-brand{
    gap:12px;
  }

  .site-brand-copy strong{
    font-size:1rem;
    letter-spacing:0;
  }

  .site-brand-copy span{
    font-size:0.84rem;
  }

  .site-nav{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
    max-width:330px;
    gap:6px;
    overflow:visible;
    border-radius:14px;
    background:rgba(8,15,23,0.5);
  }

  .site-nav a,
  .site-nav .nav-soon,
  .site-nav .nav-soon summary{
    min-width:0;
    width:100%;
  }

  .site-nav a,
  .site-nav .nav-soon summary{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:8px 9px;
    border-radius:8px;
    font-size:0.84rem;
    line-height:1.15;
    text-align:center;
    white-space:normal;
  }

  .nav-soon-popover{
    left:0;
    right:auto;
    width:min(270px, calc(100vw - 40px));
  }

  .site-nav-actions{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
    max-width:330px;
    gap:10px;
    align-items:stretch;
  }

  .site-nav-actions > *,
  .site-nav-actions > .primary-button,
  .site-nav-actions > .ghost-button{
    min-width:0;
    width:100%;
    min-height:46px;
    padding-inline:12px;
    white-space:normal;
  }

  .language-switcher{
    justify-content:center;
  }

  .hero-section{
    padding:44px 0 34px;
  }

  .hero-grid,
  .pricing-hero,
  .contact-hero{
    gap:24px;
  }

  .hero-copy{
    width:100%;
    max-width:330px;
  }

  .panel-kicker,
  .section-kicker,
  .contact-eyebrow{
    font-size:0.68rem;
    letter-spacing:0.12em;
  }

  .hero-copy h1,
  .pricing-hero .hero-copy h1,
  .contact-hero .hero-copy h1{
    max-width:18ch;
    margin-top:16px;
    font-size:clamp(1.78rem, 7.2vw, 2.08rem);
    line-height:1.13;
    letter-spacing:-0.025em;
    text-wrap:balance;
    overflow-wrap:anywhere;
  }

  .hero-copy p{
    max-width:34ch;
    margin-top:18px;
    font-size:1rem;
    line-height:1.62;
    overflow-wrap:anywhere;
  }

  .hero-actions,
  .cta-row{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-top:24px;
  }

  .hero-actions .primary-button,
  .hero-actions .ghost-button,
  .cta-row .primary-button,
  .cta-row .ghost-button{
    width:100%;
    min-height:46px;
    justify-content:center;
  }

  .hero-stage-product{
    margin-top:10px;
  }

  .product-hero-canvas,
  .pattern-showcase-canvas{
    min-height:260px;
    padding:14px;
  }

  .fabric-surface-large,
  .fabric-surface-reference.fabric-surface-large{
    height:240px;
  }

  .showcase-stage-panel,
  .showcase-preview,
  .product-panel,
  .site-card,
  .pricing-note,
  .plan-card,
  .contact-highlight,
  .contact-card,
  .contact-note,
  .cta-band{
    border-radius:18px;
  }

  .pricing-note,
  .contact-highlight,
  .contact-card,
  .contact-note,
  .cta-band{
    padding:18px;
  }

  .plan-card.is-featured{
    transform:none;
  }

  .plan-price strong{
    font-size:2.55rem;
  }

  .plan-availability{
    padding:15px;
    border-radius:16px;
  }

  .contact-highlight-grid,
  .contact-stack,
  .contact-form{
    gap:12px;
  }

  .contact-highlight-item{
    padding:14px;
    border-radius:14px;
  }

  .contact-stack a,
  .footer-legal-links a{
    overflow-wrap:anywhere;
  }

  .contact-form textarea{
    min-height:130px;
    border-radius:12px;
  }

  .marketing-footer{
    padding:34px 0 40px;
  }
}

@media (max-width:380px){
  .page-shell,
  .page-shell.page-shell-narrow{
    width:min(100vw - 16px, 100%);
  }

  .site-nav-actions{
    grid-template-columns:1fr;
  }

  .site-nav-actions .language-switcher{
    width:100%;
  }

  .hero-copy h1,
  .pricing-hero .hero-copy h1,
  .contact-hero .hero-copy h1{
    max-width:18ch;
    font-size:1.7rem;
  }

  .hero-copy p{
    max-width:31ch;
  }
}
