:root {
  --home-night: #11131a;
  --home-night-2: #191c25;
  --home-ink: #171a20;
  --home-muted: #63646c;
  --home-paper: #f5f0e7;
  --home-paper-2: #fffaf1;
  --home-teal: #39ceb6;
  --home-coral: #f37a5f;
  --home-gold: #e7bd63;
  --home-border: rgba(255, 255, 255, 0.14);
  --home-shadow: 0 28px 70px -36px rgba(0, 0, 0, 0.75);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--home-night);
  color: var(--home-ink);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--home-night);
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--home-night);
  color: var(--home-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  color: inherit;
}

.home-surface {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 19, 26, 0) 0%, rgba(17, 19, 26, 0) 42%, var(--home-paper) 42%),
    linear-gradient(135deg, #101219 0%, #151923 44%, #20212a 100%);
}

.home-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.home-hex-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-hex,
.home-hex-line {
  position: absolute;
  aspect-ratio: 1;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  transform: translate3d(0, 0, 0);
}

.home-hex {
  width: 420px;
  opacity: 0.22;
  filter: blur(12px);
  animation: home-hex-drift 34s ease-in-out infinite alternate;
}

.home-hex-a {
  left: -120px;
  top: 96px;
  background: linear-gradient(135deg, rgba(57, 206, 182, 0.78), rgba(231, 189, 99, 0.24));
}

.home-hex-b {
  right: -150px;
  top: 220px;
  width: 520px;
  background: linear-gradient(135deg, rgba(243, 122, 95, 0.6), rgba(57, 206, 182, 0.2));
  animation-delay: -11s;
}

.home-hex-c {
  left: 14%;
  bottom: 12%;
  width: 360px;
  background: linear-gradient(135deg, rgba(231, 189, 99, 0.42), rgba(255, 250, 241, 0.22));
  animation-delay: -21s;
}

.home-hex-line {
  width: 620px;
  opacity: 0.1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  animation: home-hex-line-drift 44s ease-in-out infinite alternate;
}

.home-hex-line-a {
  right: 12%;
  top: -170px;
}

.home-hex-line-b {
  left: -230px;
  top: 48%;
  border-color: rgba(23, 26, 32, 0.18);
  animation-delay: -16s;
}

@keyframes home-hex-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  to {
    transform: translate3d(34px, -28px, 0) rotate(8deg) scale(1.05);
  }
}

@keyframes home-hex-line-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(-26px, 32px, 0) rotate(-6deg);
  }
}

.home-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding:
    max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) 0
    max(16px, env(safe-area-inset-left));
  color: #fff;
}

.home-nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 16px;
  min-height: 58px;
  width: min(100%, 1180px);
  margin: 0 auto;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(15, 17, 23, 0.72);
  padding: 8px 10px 8px 14px;
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  backdrop-filter: blur(18px) saturate(1.35);
}

.home-brand,
.home-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.home-brand {
  color: #fff;
  font-size: clamp(1.58rem, 5vw, 1.91rem);
}

.sitecue-logo {
  width: clamp(58px, 15vw, 77px);
  height: auto;
  flex: 0 0 auto;
}

.home-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 650;
}

.home-nav-links span,
.home-login {
  border-radius: 6px;
  padding: 9px 10px;
}

.home-nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.home-login {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 680;
}

.home-nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--home-teal);
  color: #071514;
  padding: 0 16px;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 10px 24px -14px rgba(57, 206, 182, 0.8);
}

.home-hero {
  position: relative;
  z-index: 1;
  color: #fff;
}

.home-hero-grid {
  display: grid;
  gap: 30px;
  align-items: center;
  justify-items: center;
  padding: clamp(42px, 5vw, 58px) 0 58px;
  text-align: center;
}

.home-hero-copy {
  display: grid;
  width: min(100%, 840px);
  max-width: 840px;
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}

.home-hero-copy,
.home-section-heading,
.home-step-card,
.home-feature-card,
.home-plan-card,
.home-final-inner {
  overflow-wrap: break-word;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--home-teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-kicker::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

.home-hero h1,
.home-section h2,
.home-final h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

.home-hero h1 {
  max-width: 780px;
  margin: 12px auto 0;
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 4.65rem);
  font-weight: 820;
  line-height: 0.94;
}

.home-hero-subtitle {
  max-width: 660px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.7;
  text-wrap: balance;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.home-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  user-select: none;
}

.home-button-primary {
  border: 1px solid var(--home-teal);
  background: var(--home-teal);
  color: #071514;
  box-shadow: 0 18px 40px -22px rgba(57, 206, 182, 0.86);
}

.home-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.home-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 620px);
  margin: 34px auto 0;
}

.home-proof-row span {
  display: grid;
  gap: 4px;
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 650;
}

.home-proof-row strong {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
}

.home-hero-preview {
  position: relative;
  width: min(100%, 1020px);
  min-height: clamp(390px, 62vw, 650px);
  margin: 0 auto;
}

.home-browser-frame,
.home-clip-card {
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    var(--home-shadow),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.home-hero-browser {
  position: relative;
  z-index: 2;
  width: min(100%, 960px);
  margin: 0 auto;
  animation: home-preview-float 8s ease-in-out infinite;
}

.home-browser-bar {
  display: flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  background: rgba(9, 11, 16, 0.78);
  color: rgba(255, 255, 255, 0.58);
}

.home-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.home-browser-bar strong {
  min-width: 0;
  margin-left: 4px;
  overflow: hidden;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-hero-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b0d12;
}

.home-hero-shot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  animation: home-shot-cycle 15.6s ease-in-out infinite;
}

.home-hero-shot > * {
  height: 100%;
  width: 100%;
}

.shot-b {
  animation-delay: 5.2s;
}

.shot-c {
  animation-delay: 10.4s;
}

.mini-template {
  position: relative;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding: clamp(30px, 6vw, 76px);
  text-align: left;
}

.mini-template::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
}

.mini-horizon {
  background:
    radial-gradient(110% 70% at 15% 8%, rgba(57, 206, 182, 0.35), transparent 54%),
    radial-gradient(90% 58% at 92% 20%, rgba(231, 189, 99, 0.28), transparent 58%),
    #0c0f17;
  color: #fff;
}

.mini-studio {
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(22px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(57, 206, 182, 0.16), transparent 42%),
    #11131a;
  color: #fff;
}

.mini-beacon {
  justify-items: center;
  background:
    linear-gradient(135deg, rgba(243, 122, 95, 0.22), transparent 38%),
    linear-gradient(315deg, rgba(57, 206, 182, 0.18), transparent 36%),
    var(--home-paper-2);
  color: var(--home-ink);
  text-align: center;
}

.mini-eyebrow,
.clip-preview span {
  color: var(--home-teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mini-beacon .mini-eyebrow {
  color: var(--home-coral);
}

.mini-template h2 {
  position: relative;
  max-width: 620px;
  margin: 12px 0 0;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.95;
  text-wrap: balance;
}

.mini-template p {
  position: relative;
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.mini-beacon p {
  color: var(--home-muted);
}

.mini-action-row {
  position: relative;
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.mini-action-row span {
  width: 132px;
  height: 42px;
  border-radius: 8px;
  background: var(--home-teal);
}

.mini-action-row span:nth-child(2) {
  width: 118px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.mini-card-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 580px);
  margin-top: 40px;
}

.mini-card-row span {
  min-height: 80px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.studio-sidebar,
.studio-canvas {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
}

.studio-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
}

.studio-sidebar strong {
  font-size: 1rem;
}

.studio-sidebar span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.studio-sidebar span:nth-child(3) {
  width: 70%;
  background: rgba(57, 206, 182, 0.58);
}

.studio-canvas h2 {
  max-width: 540px;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
}

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

.studio-blocks span {
  min-height: 94px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(57, 206, 182, 0.32), transparent),
    rgba(255, 255, 255, 0.08);
}

.studio-blocks span:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(231, 189, 99, 0.28), transparent),
    rgba(255, 255, 255, 0.08);
}

.studio-blocks span:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(243, 122, 95, 0.24), transparent),
    rgba(255, 255, 255, 0.08);
}

.countdown-row {
  position: relative;
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.countdown-row span {
  display: grid;
  width: 82px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(23, 26, 32, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--home-ink);
  font-size: 1.7rem;
  font-weight: 850;
}

.home-phone-frame {
  position: absolute;
  right: 0;
  bottom: 28px;
  z-index: 3;
  width: 31%;
  min-width: 148px;
  max-width: 260px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 8px solid #08090d;
  border-radius: 26px;
  background: #08090d;
  box-shadow: 0 28px 60px -28px rgba(0, 0, 0, 0.82);
  transform: rotate(3deg);
}

.home-phone-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  z-index: 4;
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.home-phone-shot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  animation: home-shot-cycle 15.6s ease-in-out infinite;
}

.phone-b {
  animation-delay: 5.2s;
}

.phone-c {
  animation-delay: 10.4s;
}

.phone-screen {
  display: grid;
  height: 100%;
  align-content: center;
  gap: 14px;
  padding: 34px 18px;
  color: var(--home-ink);
}

.phone-horizon {
  background:
    linear-gradient(180deg, rgba(57, 206, 182, 0.24), transparent 42%),
    var(--home-paper-2);
}

.phone-studio {
  background:
    linear-gradient(180deg, rgba(231, 189, 99, 0.28), transparent 42%),
    #f9f3eb;
}

.phone-beacon {
  background:
    linear-gradient(180deg, rgba(243, 122, 95, 0.22), transparent 42%),
    #fff9f0;
}

.phone-screen span {
  color: var(--home-muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.phone-screen strong {
  max-width: 12ch;
  font-size: clamp(1.22rem, 3vw, 1.78rem);
  line-height: 1.02;
}

.phone-screen i {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(23, 26, 32, 0.12);
}

.phone-screen i:nth-of-type(2) {
  width: 68%;
}

.phone-screen b {
  width: 72%;
  height: 34px;
  border-radius: 8px;
  background: var(--home-teal);
}

.home-live-note {
  position: absolute;
  left: 18px;
  bottom: 52px;
  z-index: 4;
  display: grid;
  gap: 4px;
  max-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.94);
  padding: 14px 16px;
  color: var(--home-ink);
  box-shadow: 0 18px 40px -26px rgba(0, 0, 0, 0.65);
}

.home-live-note span {
  color: var(--home-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-live-note strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

@keyframes home-preview-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes home-shot-cycle {
  0%,
  26% {
    opacity: 1;
    transform: scale(1);
  }

  34%,
  92% {
    opacity: 0;
    transform: scale(1.04);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.home-section {
  position: relative;
  z-index: 1;
  padding: 92px 0;
}

.home-section-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.home-section h2,
.home-final h2 {
  max-width: 800px;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2.05rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
}

.home-gallery {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(245, 240, 231, 0) 0%, var(--home-paper) 28%);
}

.home-marquee {
  display: grid;
  gap: 18px;
  margin-top: 54px;
  overflow: hidden;
}

.home-marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  animation: home-marquee-left 46s linear infinite;
}

.home-marquee-track-reverse {
  animation-name: home-marquee-right;
  animation-duration: 52s;
}

.home-clip-card {
  flex: 0 0 320px;
  background: #11131a;
}

.clip-preview {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 200px;
  overflow: hidden;
  padding: 22px;
  color: #fff;
}

.clip-preview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.clip-preview span,
.clip-preview strong,
.clip-preview i {
  position: relative;
}

.clip-preview strong {
  margin-top: 10px;
  font-size: 1.48rem;
  line-height: 1.06;
}

.clip-preview i {
  display: block;
  width: 64%;
  height: 9px;
  margin-top: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.clip-sable .clip-preview {
  background: linear-gradient(135deg, #1b1d25, #364147);
}

.clip-horizon .clip-preview {
  background: linear-gradient(135deg, #0f2122, #263446);
}

.clip-inkwell .clip-preview {
  background: linear-gradient(135deg, #261d2c, #3b3848);
}

.clip-portfolio .clip-preview {
  background: linear-gradient(135deg, #10241f, #4a3b31);
}

.clip-beacon .clip-preview {
  background: linear-gradient(135deg, #302032, #594139);
}

.clip-atlas .clip-preview {
  background: linear-gradient(135deg, #1a2232, #354e4b);
}

.clip-payload .clip-preview {
  background: linear-gradient(135deg, #1d252c, #553b3b);
}

.clip-forge .clip-preview {
  background: linear-gradient(135deg, #252a20, #444148);
}

.clip-halo .clip-preview {
  background: linear-gradient(135deg, #122423, #334047);
}

.clip-quarry .clip-preview {
  background: linear-gradient(135deg, #26212a, #3f4b43);
}

.clip-reel .clip-preview {
  background: linear-gradient(135deg, #182432, #51353d);
}

.clip-atelier .clip-preview {
  background: linear-gradient(135deg, #1f2730, #3d4638);
}

@keyframes home-marquee-left {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes home-marquee-right {
  from {
    transform: translateX(calc(-50% - 9px));
  }

  to {
    transform: translateX(0);
  }
}

.home-story,
.home-features,
.home-pricing,
.home-final,
.home-footer {
  background: var(--home-paper);
}

.home-story,
.home-features,
.home-pricing {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.home-story-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.home-step-grid,
.home-feature-grid,
.home-plan-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

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

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

.home-step-card,
.home-feature-card,
.home-plan-card {
  min-width: 0;
  border: 1px solid rgba(23, 26, 32, 0.1);
  border-radius: 8px;
  background: var(--home-paper-2);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 24px 60px -46px rgba(17, 19, 26, 0.42);
}

.home-step-card > span,
.home-plan-card > span {
  color: var(--home-coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-step-card h3,
.home-feature-card h3,
.home-plan-card h3 {
  margin: 16px 0 10px;
  color: var(--home-ink);
  font-size: 1.45rem;
  line-height: 1.12;
}

.home-step-card p,
.home-feature-card p,
.home-plan-card p {
  margin-bottom: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: rgba(57, 206, 182, 0.16);
  color: #17695f;
  font-size: 1.1rem;
  font-weight: 900;
}

.home-pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 44px;
}

.home-pricing-grid > div:first-child {
  display: grid;
  gap: 18px;
}

.home-text-link {
  color: #317f73;
  font-weight: 800;
}

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

.home-plan-card h3 {
  font-size: 2.6rem;
}

.home-plan-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--home-muted);
  list-style: none;
}

.home-plan-card li {
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.home-plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--home-teal);
}

.home-plan-card-featured {
  background:
    linear-gradient(135deg, rgba(57, 206, 182, 0.16), transparent 54%),
    #181b24;
  color: #fff;
}

.home-plan-card-featured h3,
.home-plan-card-featured p,
.home-plan-card-featured li {
  color: #fff;
}

.home-final {
  padding: 60px 0 82px;
}

.home-final-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(23, 26, 32, 0.1);
  border-bottom: 1px solid rgba(23, 26, 32, 0.1);
  padding: 42px 0;
}

.home-final .home-kicker {
  margin-bottom: 12px;
}

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

.home-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(23, 26, 32, 0.1);
  padding-top: 26px;
}

.home-footer-brand {
  color: var(--home-ink);
  font-size: 1.02rem;
}

.footer-logo {
  width: 32px;
  height: auto;
}

.home-footer p {
  margin-bottom: 0;
  color: var(--home-muted);
  font-size: 0.92rem;
}

.fallback-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 36px 0;
  color: #fff;
  background: linear-gradient(135deg, #101219 0%, #151923 44%, #20212a 100%);
}

.fallback-card {
  display: grid;
  max-width: 720px;
  justify-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(15, 17, 23, 0.72);
  padding: clamp(28px, 8vw, 64px);
  text-align: center;
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  backdrop-filter: blur(18px) saturate(1.35);
}

.fallback-card h1 {
  margin: 0;
  font-size: clamp(2.3rem, 8vw, 5.2rem);
  line-height: 0.95;
  text-wrap: balance;
}

.fallback-card p:not(.home-kicker) {
  max-width: 520px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .home-nav-inner {
    grid-template-columns: auto auto;
  }

  .home-nav-links {
    display: none;
  }

  .home-nav-actions {
    grid-column: 2;
  }

  .home-proof-row {
    display: none;
  }

  .home-pricing-grid,
  .home-final-inner {
    grid-template-columns: 1fr;
  }

  .home-final-inner > .home-button {
    justify-self: start;
  }
}

@media (max-width: 840px) {
  .home-step-grid,
  .home-feature-grid,
  .home-plan-grid {
    grid-template-columns: 1fr;
  }

  .mini-studio {
    grid-template-columns: 1fr;
  }

  .studio-sidebar {
    display: none;
  }

  .home-phone-frame {
    right: 12px;
    bottom: 8px;
    width: 36%;
  }

  .home-live-note {
    left: 8px;
    bottom: 24px;
  }
}

@media (max-width: 620px) {
  .home-shell {
    width: min(100% - 28px, 1180px);
  }

  .home-nav {
    padding:
      max(10px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) 0
      max(14px, env(safe-area-inset-left));
  }

  .home-nav-inner {
    column-gap: 8px;
    padding-left: 10px;
  }

  .home-brand {
    gap: 6px;
  }

  .sitecue-logo {
    width: 50px;
  }

  .home-login {
    display: none;
  }

  .home-nav-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .home-hero-grid {
    padding: 46px 0 76px;
  }

  .home-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.7rem);
  }

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

  .home-hero-preview {
    min-height: 510px;
  }

  .home-hero-stage {
    aspect-ratio: auto;
    min-height: 520px;
  }

  .mini-template {
    align-content: start;
    padding: 28px 20px;
  }

  .mini-template h2 {
    font-size: 2rem;
  }

  .mini-card-row,
  .mini-action-row,
  .countdown-row {
    display: none;
  }

  .studio-blocks {
    grid-template-columns: 1fr;
  }

  .studio-blocks span {
    min-height: 58px;
  }

  .home-phone-frame {
    min-width: 126px;
  }

  .home-live-note {
    display: none;
  }

  .home-clip-card {
    flex-basis: 260px;
  }

  .clip-preview {
    min-height: 170px;
  }

  .home-section {
    padding: 72px 0;
  }

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

@media (max-width: 360px) {
  .home-shell {
    width: min(100% - 24px, 1180px);
  }

  .home-nav {
    padding:
      max(8px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) 0
      max(12px, env(safe-area-inset-left));
  }

  .home-nav-inner {
    min-height: 54px;
  }

  .sitecue-logo {
    width: 44px;
  }

  .home-brand {
    font-size: 1.38rem;
  }

  .home-hero h1 {
    font-size: clamp(2.28rem, 13.5vw, 3.35rem);
  }

  .home-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .home-button {
    min-height: 50px;
    padding: 0 14px;
  }

  .home-hero-preview {
    min-height: 430px;
  }

  .home-hero-stage {
    min-height: 430px;
  }

  .home-phone-frame {
    display: none;
  }

  .home-section h2,
  .home-final h2 {
    font-size: 1.82rem;
  }
}

@media (max-width: 390px) {
  .home-nav-cta {
    display: none;
  }

  .home-hero-preview {
    min-height: 480px;
  }

  .home-phone-frame {
    min-width: 112px;
  }
}

@media (orientation: landscape) and (max-height: 620px) {
  .home-nav {
    position: relative;
  }

  .home-hero-grid {
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .home-hero h1 {
    max-width: 860px;
    font-size: clamp(2rem, 5.4vw, 3.55rem);
  }

  .home-hero-subtitle {
    max-width: 760px;
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .home-hero-actions {
    margin-top: 20px;
  }

  .home-proof-row {
    display: none;
  }

  .home-hero-preview {
    min-height: 360px;
  }

  .home-hero-stage {
    aspect-ratio: 16 / 8.6;
    min-height: 340px;
  }

  .mini-template h2 {
    font-size: clamp(1.8rem, 4vw, 3.3rem);
  }
}

@media (min-width: 1500px) {
  .home-shell,
  .home-nav-inner {
    width: min(100% - 64px, 1280px);
  }

  .home-hero-preview {
    width: min(100%, 1120px);
  }
}

@media (prefers-contrast: more) {
  .home-hero-subtitle,
  .home-proof-row span,
  .home-footer p,
  .home-step-card p,
  .home-feature-card p,
  .home-plan-card p {
    color: currentColor;
  }

  .home-button-secondary,
  .home-step-card,
  .home-feature-card,
  .home-plan-card {
    border-color: currentColor;
  }
}

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

  .home-hero-shot,
  .home-phone-shot {
    opacity: 0;
    transform: none;
  }

  .home-hero-shot:first-child,
  .home-phone-shot:first-child {
    opacity: 1;
  }
}
