:root {
  color-scheme: dark;
  --bg: #090a0c;
  --bg-soft: #111317;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.09);
  --text: #f5f7fa;
  --muted: #aeb6c2;
  --muted-strong: #d8dde5;
  --cyan: #68f7ff;
  --mint: #80ffbf;
  --rose: #ff6ea8;
  --amber: #ffd66b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --radius-large: 22px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  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(135deg, #08090b 0%, #111113 48%, #07100f 100%);
  background-size: 42px 42px, 42px 42px, auto;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(104, 247, 255, 0.08), transparent 34%),
    linear-gradient(245deg, rgba(255, 110, 168, 0.07), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 22%);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

::selection {
  color: #061011;
  background: var(--cyan);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 12, 15, 0.62);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}

.brand,
.nav-links,
.hero-actions,
.hero-points,
.removes-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--rose));
  box-shadow: 0 0 24px rgba(104, 247, 255, 0.5);
}

.nav-links {
  gap: 6px;
}

.nav-links a,
.nav-cta {
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a {
  padding: 9px 12px;
}

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

.nav-cta {
  padding: 10px 14px;
  color: #031214;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 34px rgba(104, 247, 255, 0.22);
}

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(64px, 10vw, 118px) 0 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.35rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted-strong);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(104, 247, 255, 0.72);
  outline-offset: 3px;
}

.button-primary {
  color: #031214;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 40px rgba(104, 247, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.button-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.hero-points {
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li,
.removes-list span {
  padding: 8px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.055);
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.phone-mockup {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
}

.phone-mockup::before {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 82px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  position: absolute;
  inset: 10px;
  overflow: hidden;
  border-radius: 27px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45)),
    linear-gradient(135deg, rgba(104, 247, 255, 0.3), transparent 28%),
    linear-gradient(315deg, rgba(255, 110, 168, 0.22), transparent 36%),
    #12151b;
}

.phone-main {
  top: 22px;
  right: 54px;
  z-index: 2;
  width: 250px;
  height: 500px;
}

.phone-back {
  width: 172px;
  height: 344px;
  opacity: 0.78;
  transform: scale(0.98);
}

.phone-left {
  top: 104px;
  left: 8px;
  transform: rotate(-8deg);
}

.phone-right {
  right: 0;
  bottom: 36px;
  transform: rotate(8deg);
}

.video-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 18px 22px;
}

.clip-label,
.mini-tag {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.25);
}

.caption-stack {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
}

.caption-stack strong,
.caption-stack span {
  display: block;
}

.caption-stack span {
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.timeline {
  height: 5px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.timeline span {
  display: block;
  width: 66%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--rose));
}

.phone-back .phone-screen {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 14px;
}

.phone-back p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 850;
}

.examples,
.problem,
.deliverables,
.process,
.package,
.fit,
.trust,
.risk,
.faq,
.contact {
  padding: clamp(58px, 9vw, 100px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p,
.text-stack p,
.trust p,
.risk p,
.contact-copy p,
.price-note {
  color: var(--muted-strong);
  font-size: 1.03rem;
}

.example-grid,
.feature-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.example-card,
.feature-card,
.fit-grid article,
.review-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.example-card {
  overflow: hidden;
}

.example-preview {
  min-height: 230px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(104, 247, 255, 0.26), transparent 44%),
    linear-gradient(225deg, rgba(128, 255, 191, 0.14), transparent 44%),
    #12151a;
}

.accent-preview {
  background:
    linear-gradient(135deg, rgba(255, 110, 168, 0.24), transparent 44%),
    linear-gradient(225deg, rgba(255, 214, 107, 0.16), transparent 44%),
    #12151a;
}

.example-preview span {
  display: inline-flex;
  margin-bottom: 112px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #071011;
  font-size: 0.75rem;
  font-weight: 850;
  background: var(--cyan);
}

.accent-preview span {
  background: var(--rose);
}

.example-preview strong {
  display: block;
  max-width: 260px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.example-body {
  padding: 20px;
}

.example-body p,
.feature-card p,
.fit-grid li,
.faq p {
  color: var(--muted);
}

.split-layout,
.package-panel,
.trust-layout,
.risk-panel,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.text-stack p:last-child {
  margin-bottom: 0;
}

.removes-list {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

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

.feature-card,
.fit-grid article {
  padding: 22px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.steps-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 20px;
  border-top: 1px solid var(--line-soft);
}

.steps-list span {
  color: var(--mint);
  font-weight: 900;
}

.steps-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.package-panel,
.risk-panel {
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(10, 12, 14, 0.72);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}

.price {
  margin: 0 0 10px;
  font-size: clamp(3rem, 9vw, 6.4rem);
  font-weight: 900;
  line-height: 0.95;
}

.price-note {
  margin-bottom: 24px;
}

.package-list ul,
.fit-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.package-list li,
.fit-grid li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}

.package-list li::before,
.fit-grid li::before {
  margin-right: 9px;
  color: var(--mint);
  content: "+";
}

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

.trust-layout {
  align-items: center;
}

.profile-visual {
  display: grid;
  place-items: center;
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    linear-gradient(145deg, rgba(104, 247, 255, 0.14), transparent 38%),
    linear-gradient(320deg, rgba(255, 110, 168, 0.12), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  font-size: 3.2rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
}

.profile-visual span {
  color: var(--muted-strong);
  font-weight: 800;
}

.approach {
  display: inline-flex;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.075);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 800;
}

details p {
  padding: 0 20px 20px;
  margin-bottom: 0;
}

.contact {
  align-items: start;
  padding-bottom: clamp(72px, 10vw, 120px);
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.review-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 32px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(10, 12, 14, 0.72);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 750;
}

label span {
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(0, 0, 0, 0.28);
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 130px;
  padding: 12px 13px;
}

select option {
  color: #111317;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status.success {
  color: var(--mint);
}

.form-status.error {
  color: var(--rose);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .split-layout,
  .package-panel,
  .trust-layout,
  .risk-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .phone-main {
    right: 50%;
    transform: translateX(50%);
  }

  .phone-left {
    left: 8%;
  }

  .phone-right {
    right: 8%;
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 8px;
    width: min(calc(100% - 20px), var(--max));
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .phone-main {
    width: 205px;
    height: 410px;
  }

  .phone-back {
    width: 138px;
    height: 276px;
  }

  .phone-left {
    top: 96px;
    left: 0;
  }

  .phone-right {
    right: 0;
    bottom: 18px;
  }

  .example-grid,
  .feature-grid,
  .fit-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .steps-list li {
    grid-template-columns: 40px 1fr;
    padding: 18px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(2.55rem, 16vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 11vw, 2.4rem);
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 10px 12px;
  }

  .phone-left,
  .phone-right {
    opacity: 0.52;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
