:root {
  color-scheme: dark;

  /* Ghost Vector UI palette: charcoal panels, slate borders, muted phosphor blue */
  --bg: #070a0f;
  --bg-2: #0a0e14;
  --panel: #121821;
  --panel-2: #171f2a;
  --panel-3: #1d2734;
  --screen: #172031;
  --line: #303a48;
  --line-soft: rgba(129, 148, 166, 0.22);
  --line-strong: rgba(143, 164, 184, 0.40);
  --text: #edf2f6;
  --muted: #9aa8b4;
  --dim: #6d7a86;
  --accent: #4aa9cb;
  --accent-2: #7eb6d8;
  --accent-soft: rgba(74, 169, 203, 0.14);
  --accent-line: rgba(126, 182, 216, 0.42);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
  --radius-lg: 22px;
  --radius-md: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(74, 169, 203, 0.11), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(100, 128, 157, 0.09), transparent 34rem),
    linear-gradient(180deg, #05070a 0%, var(--bg) 52%, #05070a 100%);
  color: var(--text);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;
  background-image:
    linear-gradient(rgba(126, 182, 216, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 182, 216, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.035) 0,
    rgba(255,255,255,0.035) 1px,
    transparent 1px,
    transparent 4px
  );
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  background: rgba(7, 10, 15, 0.82);
  border-bottom: 1px solid rgba(129, 148, 166, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.brand img { filter: drop-shadow(0 0 10px rgba(74, 169, 203, 0.22)); }
nav { display: flex; gap: 0.35rem; flex-wrap: wrap; justify-content: flex-end; }
nav a {
  padding: 0.55rem 0.8rem;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.92rem;
  border: 1px solid transparent;
}
nav a:hover {
  color: var(--text);
  background: rgba(29, 39, 52, 0.72);
  border-color: var(--line-soft);
}

.section-shell { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0 4rem;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  max-width: 8ch;
}
.lead {
  color: #c3ced8;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.6;
  max-width: 38rem;
}
.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  margin: 0 0 0.9rem;
}
.hero-note { color: var(--dim); font-size: 0.9rem; margin-top: 1rem; max-width: 34rem; }
.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.7rem 0 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}
.button.primary {
  color: #071018;
  background: linear-gradient(180deg, #8abedb, #5aa5c7);
  border-color: rgba(160, 203, 225, 0.52);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset, 0 14px 34px rgba(0, 0, 0, 0.22);
}
.button.ghost { color: var(--text); background: rgba(20, 27, 37, 0.76); }
.button:hover { transform: translateY(-1px); border-color: var(--accent-line); }
.glass-card {
  background: linear-gradient(180deg, rgba(23,31,42,0.94), rgba(12,16,23,0.94));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.035);
}
.hero-visual { padding: 0.75rem; margin: 0; }
.hero-visual img, .screen-frame img {
  border-radius: calc(var(--radius-lg) - 9px);
  border: 1px solid rgba(129, 148, 166, 0.22);
}
figcaption { color: var(--dim); font-size: 0.83rem; padding: 0.85rem 0.35rem 0.15rem; text-align: center; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 0 0 5rem; }
.stat {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(18, 24, 33, 0.74);
  border: 1px solid var(--line-soft);
}
.stat strong { display: block; color: var(--accent-2); font-size: clamp(1.8rem, 4.5vw, 3rem); line-height: 1; }
.stat span { color: var(--muted); font-weight: 700; }

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 3rem;
  padding: 5rem 0;
  border-top: 1px solid rgba(129, 148, 166, 0.16);
}
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -0.05em; }
h3 { margin: 0 0 0.55rem; letter-spacing: -0.02em; }
p { color: #b9c4ce; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.feature-card, .sound-grid article {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(20, 27, 37, 0.82), rgba(13, 18, 26, 0.82));
}
.feature-card p, .sound-grid p { margin-bottom: 0; line-height: 1.55; }

.screen-section { padding: 5rem 0; }
.section-title-row { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 1.5rem; }
.section-title-row p:last-child { max-width: 28rem; margin: 0; }
.screen-tabs { display: flex; gap: 0.5rem; margin: 1.4rem 0; }
.screen-tab {
  border: 1px solid var(--line-soft);
  background: rgba(23, 31, 42, 0.86);
  color: var(--muted);
  border-radius: 9px;
  padding: 0.65rem 1rem;
  font-weight: 800;
  cursor: pointer;
}
.screen-tab.is-active, .screen-tab:hover {
  color: var(--text);
  background: rgba(35, 48, 62, 0.94);
  border-color: var(--accent-line);
}
.screen-frame { padding: 0.75rem; }
.screen-caption { color: var(--muted); text-align: center; margin-top: 0.8rem; font-size: 0.95rem; }

.sound-section { padding: 5rem 0; }
.sound-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; }
.badge {
  display: inline-block;
  color: #cfe4ef;
  background: rgba(74, 169, 203, 0.10);
  border: 1px solid rgba(126, 182, 216, 0.24);
  border-radius: 6px;
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.architecture {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 2rem;
  align-items: center;
  padding: 5rem 0;
  border-top: 1px solid rgba(129, 148, 166, 0.16);
}
.arch-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; align-items: center; }
.arch-flow div {
  padding: 0.9rem;
  min-height: 64px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(18, 24, 33, 0.80);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text);
  font-weight: 800;
}
.arch-flow .wide { grid-column: 1 / -1; background: rgba(29, 39, 52, 0.78); color: #d7e6ef; }
.arch-flow .final {
  background: linear-gradient(180deg, rgba(36, 54, 70, 0.86), rgba(26, 36, 48, 0.86));
  border-color: var(--accent-line);
}
.flow-arrow {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 900;
}

.manual-section {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.manual-section p { max-width: 48rem; }
.site-footer {
  border-top: 1px solid rgba(129, 148, 166, 0.16);
  color: var(--muted);
  padding: 2rem clamp(1rem, 4vw, 3rem);
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer span:not(:last-child)::after { content: "/"; color: rgba(154, 168, 180, 0.45); margin-left: 1rem; }

@media (max-width: 960px) {
  .hero, .split-section, .architecture { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 12ch; }
  .stats, .sound-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title-row, .manual-section { align-items: start; flex-direction: column; }
}

@media (max-width: 680px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero { padding-top: 3rem; }
  .feature-grid, .stats, .sound-grid { grid-template-columns: 1fr; }
  .arch-flow { grid-template-columns: 1fr 1fr; }
  .arch-flow .wide, .flow-arrow { grid-column: 1 / -1; }
}

.screen-tabs{flex-wrap:wrap}.screen-tab{min-width:84px}


/* Phantomexposure sleek Ghost Vector refresh */
:root {
  --bg: #061013;
  --bg-2: #071315;
  --panel: rgba(8, 18, 21, .82);
  --panel-2: rgba(11, 22, 26, .92);
  --panel-3: rgba(15, 30, 34, .84);
  --screen: #12232a;
  --line: rgba(181, 244, 231, .18);
  --line-soft: rgba(181, 244, 231, .16);
  --line-strong: rgba(181, 244, 231, .34);
  --text: #f3faf8;
  --muted: #b4c6c2;
  --dim: #82948f;
  --accent: #a8f4e6;
  --accent-2: #d5b36d;
  --accent-soft: rgba(168, 244, 230, .12);
  --accent-line: rgba(168, 244, 230, .38);
}

body {
  background:
    radial-gradient(circle at 16% -8%, rgba(168,244,230,.16), transparent 31rem),
    radial-gradient(circle at 84% 0%, rgba(213,179,109,.10), transparent 35rem),
    radial-gradient(circle at 50% 105%, rgba(65,126,122,.16), transparent 42rem),
    linear-gradient(180deg,#061013 0%,#071315 46%,#030606 100%);
  overflow-x: hidden;
}

body::before {
  opacity: .18;
  background-size: 92px 92px;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.017) 1px, transparent 1px);
}

body::after {
  opacity: .10;
  animation: gvGrain 18s steps(3,end) infinite;
}

@keyframes gvGrain {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(-14px, 8px); }
  66% { transform: translate(10px, -10px); }
}

.site-header {
  background: rgba(4,9,10,.70);
  border-bottom-color: rgba(255,255,255,.075);
}

nav a:hover {
  background: rgba(255,255,255,.065);
  border-color: rgba(168,244,230,.18);
}

.hero {
  min-height: auto;
  padding: clamp(3.1rem, 6vw, 5.2rem) 0 3.2rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 2rem -8vw auto -8vw;
  height: 60%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 15%, rgba(168,244,230,.11), transparent 24rem),
    radial-gradient(circle at 80% 30%, rgba(213,179,109,.06), transparent 24rem);
  filter: blur(2px);
}

.hero-copy h1 {
  font-size: clamp(2.45rem, 5.6vw, 5.35rem);
  max-width: 9.5ch;
  letter-spacing: -.065em;
}

.lead {
  color: #c8d7d2;
}

.button {
  border-radius: 999px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.button.primary {
  color: #061010;
  background: linear-gradient(135deg, #a8f4e6, #e3fff9);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 14px 36px rgba(168,244,230,.12);
}

.button.ghost {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.13);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(168,244,230,.14);
}

.glass-card {
  background:
    radial-gradient(circle at 14% 0%, rgba(168,244,230,.08), transparent 16rem),
    linear-gradient(180deg, rgba(13,28,31,.88), rgba(6,11,13,.94));
  border-color: rgba(255,255,255,.085);
  box-shadow: 0 30px 92px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.04);
}

.hero-visual,
.screen-frame {
  position: relative;
  overflow: hidden;
}

.hero-visual::before,
.screen-frame::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(168,244,230,.07), transparent 32%, rgba(213,179,109,.045)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 6px);
  opacity: .24;
  mix-blend-mode: screen;
}

.hero-visual::after,
.screen-frame::after {
  content: "";
  position: absolute;
  z-index: 4;
  left: -45%;
  top: 0;
  bottom: 0;
  width: 65%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(215,255,247,.13), transparent);
  filter: blur(18px);
  animation: gvSweep 9s ease-in-out infinite alternate;
}

@keyframes gvSweep {
  from { transform: translateX(-18%); }
  to { transform: translateX(108%); }
}

.hero-visual img,
.screen-frame img {
  border-color: rgba(168,244,230,.18);
  filter: saturate(.96) contrast(1.02);
}

.stats {
  display: none;
}

.split-section {
  padding-top: 1.2rem;
}

.split-section > div:first-child {
  align-self: start;
}

.split-section h2 {
  margin-top: 0;
  max-width: 12ch;
}

.feature-card,
.sound-grid article,
.architecture-list li {
  background:
    radial-gradient(circle at 18% 0%, rgba(168,244,230,.075), transparent 12rem),
    rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.085);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.feature-card:hover,
.sound-grid article:hover,
.architecture-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(168,244,230,.22);
  background:
    radial-gradient(circle at 18% 0%, rgba(168,244,230,.12), transparent 12rem),
    rgba(255,255,255,.048);
  box-shadow: 0 22px 64px rgba(0,0,0,.28);
}

.screen-section {
  position: relative;
}

.screen-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(900px, 92vw);
  height: 360px;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(168,244,230,.10), transparent 26rem),
    radial-gradient(circle at 80% 50%, rgba(213,179,109,.055), transparent 20rem);
}

.section-title-row {
  align-items: end;
}

.section-title-row p {
  display: none;
}

.screen-tabs {
  justify-content: center;
  gap: .45rem;
  padding: .38rem;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}

.screen-tab {
  min-width: 78px;
  border-radius: 999px;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.screen-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(168,244,230,.25);
}

.screen-tab.is-active {
  color: #061010;
  background: linear-gradient(135deg, #a8f4e6, #e3fff9);
  border-color: rgba(255,255,255,.22);
}

.screen-frame {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding: .65rem;
}

.screen-frame img {
  max-height: 500px;
  width: 100%;
  object-fit: contain;
  background: rgba(0,0,0,.22);
}

.screen-caption {
  color: #c8d7d2;
}

.manual-section {
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.manual-section:hover {
  transform: translateY(-3px);
  border-color: rgba(168,244,230,.24);
  box-shadow: 0 32px 82px rgba(0,0,0,.42);
}

.hero,
.split-section,
.screen-section,
.sound-section,
.architecture-section,
.manual-section {
  animation: gvReveal .78s cubic-bezier(.2,.8,.2,1) both;
}

.split-section { animation-delay: .05s; }
.screen-section { animation-delay: .10s; }
.sound-section { animation-delay: .15s; }
.architecture-section { animation-delay: .20s; }
.manual-section { animation-delay: .25s; }

@keyframes gvReveal {
  from { opacity: 0; transform: translateY(14px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (max-width: 880px) {
  .hero-copy h1 {
    max-width: 100%;
  }

  .screen-frame {
    max-width: 100%;
  }

  .screen-frame img {
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}


/* Ghost Vector Gumroad release update */
.gv-buy-section{
  margin-top:2rem;
  margin-bottom:4rem;
  display:grid;
  grid-template-columns:1.1fr auto;
  gap:1.5rem;
  align-items:center;
}

.gv-buy-section h2{
  margin:0;
  font-size:clamp(1.8rem,3.8vw,3.3rem);
  letter-spacing:-.045em;
}

.gv-buy-section p:not(.eyebrow){
  color:#c8d7d2;
  max-width:680px;
}

.gv-buy-section .manual-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  justify-content:flex-end;
}

@media(max-width:880px){
  .gv-buy-section{
    grid-template-columns:1fr;
  }

  .gv-buy-section .manual-actions{
    justify-content:flex-start;
  }
}


/* Ghost Vector YouTube demo section */
.video-section{
  margin-top:2rem;
  margin-bottom:4rem;
  padding:clamp(1rem,2.2vw,1.35rem);
  animation:gvReveal .78s cubic-bezier(.2,.8,.2,1) both;
  animation-delay:.08s;
}

.video-copy{
  padding:clamp(1.1rem,2.5vw,1.65rem) clamp(.9rem,2vw,1.2rem) 1rem;
  text-align:center;
}

.video-copy h2{
  margin:0;
  font-size:clamp(2rem,4vw,3.8rem);
  letter-spacing:-.055em;
}

.video-copy p:not(.eyebrow){
  max-width:720px;
  margin:1rem auto 0;
  color:#c8d7d2;
  font-size:1.02rem;
  line-height:1.6;
}

.video-frame{
  position:relative;
  overflow:hidden;
  border-radius:calc(var(--radius-lg) - 6px);
  border:1px solid rgba(168,244,230,.18);
  background:
    radial-gradient(circle at 20% 0%,rgba(168,244,230,.08),transparent 18rem),
    #05090b;
  box-shadow:0 28px 76px rgba(0,0,0,.34);
}

.video-frame::before{
  content:"";
  display:block;
  padding-top:56.25%;
}

.video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.video-frame::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(168,244,230,.04),transparent 28%,rgba(213,179,109,.035)),
    repeating-linear-gradient(0deg,rgba(255,255,255,.025) 0 1px,transparent 1px 6px);
  opacity:.26;
  mix-blend-mode:screen;
}

.video-actions{
  display:flex;
  justify-content:center;
  margin-top:1rem;
}
