:root {
  --bg: #050505;
  --ink: #0a0a0a;
  --panel: #101010;
  --panel-2: #171717;
  --panel-3: #202020;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f4f4f1;
  --muted: #a7a7a1;
  --soft: #74746e;
  --accent: #ff7417;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #0c0c0c 0%, var(--bg) 42%, #020202 100%);
  background-size: 44px 44px, 44px 44px, auto;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  pointer-events: none;
}

.brand,
.header-cta {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 7px;
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.58);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  background: rgba(12, 12, 12, 0.72);
}

.brand img {
  display: block;
  width: 104px;
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.44));
}

.floating-tabs {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.66);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  color: rgba(244, 244, 241, 0.74);
  font-size: 14px;
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.floating-tabs a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.floating-tabs a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.floating-tabs a:active,
.button:active,
button:active,
.header-cta:active {
  transform: translateY(1px) scale(0.98);
}

.floating-tabs a.active {
  background: #f4f4f1;
  color: #080808;
}

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

.header-cta,
.button,
button {
  border: 0;
  border-radius: var(--radius);
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary,
button {
  background: var(--accent);
  color: #080808;
  box-shadow: 0 12px 34px rgba(255, 116, 23, 0.2);
}

.header-cta:hover,
.button.primary:hover,
button:hover {
  box-shadow: 0 18px 42px rgba(255, 116, 23, 0.28);
  transform: translateY(-1px);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button.secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(116px, 12vw, 154px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.hero h1,
.section h2 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lede,
.section p,
.trend-panel li,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.visual-stage {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #191919 0%, #080808 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
  perspective: 900px;
}

.visual-stage::before,
.visual-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  transform: rotateX(62deg) rotateZ(-24deg);
}

.visual-stage::before {
  width: 360px;
  height: 360px;
  left: -90px;
  bottom: -140px;
}

.visual-stage::after {
  width: 240px;
  height: 240px;
  right: -40px;
  top: 44px;
}

.phone-stack {
  position: absolute;
  inset: 82px 68px auto auto;
  width: 250px;
  height: 330px;
  transform: rotateX(8deg) rotateY(-16deg) rotateZ(2deg);
  transform-style: preserve-3d;
}

.phone-card {
  position: absolute;
  width: 170px;
  height: 250px;
  display: grid;
  align-content: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(145deg, #242424, #090909);
  box-shadow: 22px 28px 60px rgba(0, 0, 0, 0.5);
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 14px 34px auto;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-card span,
.orbit-tile span,
.creator-stat span,
.calc-results span,
.process-grid span {
  display: block;
  color: var(--soft);
  font-size: 13px;
}

.phone-card strong,
.orbit-tile strong,
.creator-stat strong,
.calc-results strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
}

.card-a {
  left: 0;
  top: 48px;
  transform: translateZ(30px) rotateZ(-10deg);
}

.card-b {
  left: 64px;
  top: 0;
  transform: translateZ(74px);
  border-color: rgba(255, 116, 23, 0.32);
}

.card-c {
  right: 0;
  top: 80px;
  transform: translateZ(15px) rotateZ(10deg);
}

.orbit-tile {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 13, 13, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.main-tile {
  left: 26px;
  bottom: 38px;
  padding: 22px;
}

.main-tile strong {
  font-size: 34px;
}

.side-tile {
  right: 32px;
  bottom: 36px;
  padding: 18px;
}

.trend-panel,
.form-panel,
.calculator,
.creator-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(7, 7, 7, 0.96));
}

.premium-panel {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.34);
}

.calculator {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  gap: 22px;
  padding: 24px;
}

.calc-controls label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
}

.budget-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #070707;
  padding: 0 14px;
}

.budget-input span {
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #070707;
  color: var(--text);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(255, 116, 23, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 116, 23, 0.08);
}

.budget-input input {
  border: 0;
  background: transparent;
  font-size: 28px;
  font-weight: 900;
}

input[type="range"] {
  accent-color: var(--accent);
  padding: 0;
  margin-top: 18px;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.calc-results div,
.process-grid article,
.benefit-list article,
.creator-stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), #0d0d0d);
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.process-grid article,
.benefit-list article {
  min-height: 188px;
}

.calc-results div:hover,
.process-grid article:hover,
.benefit-list article:hover,
.creator-stat:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, var(--panel-3), #101010);
}

.calc-results strong,
.creator-stat strong {
  font-size: clamp(24px, 3vw, 38px);
}

.creator-stat.highlight {
  border-color: rgba(255, 116, 23, 0.36);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-band div {
  min-height: 148px;
  padding: 26px clamp(20px, 3vw, 40px);
  background: #0a0a0a;
}

.proof-band strong {
  display: block;
  font-size: 32px;
}

.proof-band span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.legal-page {
  padding-top: clamp(128px, 14vw, 168px);
  min-height: 70svh;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
}

.benefit-list,
.process-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.benefit-list article span,
.process-grid article span {
  color: var(--text);
  font-weight: 900;
}

.benefit-list h3,
.process-grid h3,
.trend-panel h3,
.form-panel h3 {
  margin: 10px 0 8px;
  font-size: 21px;
}

.trend-panel,
.form-panel,
.creator-panel {
  padding: 24px;
}

.trend-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.trend-panel li + li {
  margin-top: 14px;
}

.section-head {
  max-width: 900px;
  margin-bottom: 32px;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.steps div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #0d0d0d;
  transition: transform 180ms ease, border-color 180ms ease;
}

.steps div:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.steps strong {
  display: block;
  font-size: 28px;
}

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

.creator-panel {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 70px;
  display: grid;
  gap: 12px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.clipper-visual .main-tile {
  right: 38px;
  left: auto;
  bottom: 42px;
}

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

.form-panel.wide {
  width: min(100%, 580px);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.demo-section {
  display: flex;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.demo-section > div {
  max-width: 620px;
}

.site-footer {
  display: grid;
  gap: 32px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: #030303;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.site-footer img {
  width: 126px;
}

.site-footer p {
  max-width: 560px;
  margin-bottom: 0;
}

.contact-links {
  display: grid;
  align-content: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 14px;
}

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

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    row-gap: 12px;
    padding: 12px clamp(16px, 4vw, 28px);
    background: rgba(5, 5, 5, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    pointer-events: auto;
  }

  .floating-tabs {
    position: static;
    grid-column: 1 / -1;
    justify-self: center;
    transform: none;
    max-width: 100%;
  }

  .hero,
  .split,
  .calculator,
  .demo-section {
    grid-template-columns: 1fr;
    display: grid;
  }

  .visual-stage {
    min-height: 460px;
  }

  .legal-page {
    padding-top: 56px;
  }

  .proof-band,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px 12px;
    gap: 10px;
  }

  .brand img {
    width: 82px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .floating-tabs {
    width: 100%;
    justify-content: center;
  }

  .floating-tabs a {
    padding: 0 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero h1,
  .section h2 {
    font-size: 42px;
    line-height: 0.96;
  }

  .phone-stack {
    right: 28px;
    transform: scale(0.86) rotateX(8deg) rotateY(-16deg) rotateZ(2deg);
    transform-origin: top right;
  }

  .calc-results,
  .proof-band,
  .process-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .footer-main,
  .footer-legal {
    display: grid;
  }
}
