/* =========
   Base
   ========= */

:root {
  --bg-main: #050608;
  --bg-soft: #101218;
  --bg-elevated: #151821;
  --accent: #00ffff;
  --accent-soft: rgba(0, 255, 255, 0.13);
  --accent-strong: rgba(0, 255, 255, 0.5);
  --text-main: #f5f5f7;
  --text-muted: #a3a3b0;
  --border-subtle: #272938;
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.8);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #131727 0, #050608 50%, #000 100%);
  background-color: #000;
  color: var(--text-main);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.2rem 0;
}

.section-soft {
  background: radial-gradient(circle at top left, #191b27 0, #090b11 55%, #050608 100%);
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.1rem, 4.4vw, 2.7rem);
  letter-spacing: 0.02em;
  margin: 0.3rem 0 0;
}

.body-large {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.eyebrow.accent {
  color: var(--accent);
}

/* =========
   Header
   ========= */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 8, 0.96),
    rgba(5, 6, 8, 0.9),
    rgba(5, 6, 8, 0.6),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.logo:hover {
  opacity: 0.8;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.48);
}

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

.logo-text {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  position: relative;
}

.nav-link--highlight {
  color: var(--accent);
}

.nav-link--highlight::after {
  background: var(--accent);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(5, 7, 12, 0.9);
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.nav.is-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav.is-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

@media (max-width: 720px) {
  .header-inner {
    padding: 0.7rem 1.1rem;
  }

  .nav {
    margin-left: auto;
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 120%;
    right: 0;
    background: rgba(5, 7, 12, 0.96);
    border-radius: 999px;
    padding: 0.6rem 0.9rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    gap: 0.4rem;
    display: none;
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.2rem 0.6rem;
  }

  .nav .btn-small {
    display: none;
  }
}

/* =========
   Buttons
   ========= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.9rem;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.12s ease,
    border-color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #020208;
  box-shadow:
    0 0 40px rgba(0, 255, 255, 0.66),
    0 0 0 1px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 60px rgba(0, 255, 255, 0.9),
    0 0 0 1px rgba(0, 255, 255, 0.4);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(7, 9, 14, 0.8);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(7, 9, 14, 0.95);
  box-shadow: 0 0 28px rgba(0, 255, 255, 0.4);
}

.btn-small {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}

.btn-large {
  padding-inline: 2.8rem;
  font-size: 1rem;
}

/* =========
   Hero
   ========= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  padding-top: 4.2rem; /* header offset */
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Make the background video clearly visible but still cinematic */
  filter: saturate(1.1) contrast(1.02) brightness(0.68);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(0, 255, 255, 0.03), transparent 55%),
    linear-gradient(to bottom, rgba(5, 6, 8, 0.76), rgba(5, 6, 8, 0.86));
  mix-blend-mode: normal;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to bottom, transparent, rgba(2, 3, 6, 1));
  pointer-events: none;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.26), transparent 72%),
    url("assets/nyc-backdrop.jpg") center center / cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 1.5rem 3.5rem;
  display: flex;
  justify-content: center;
}

.hero-copy {
  max-width: 720px;
  text-align: center;
}

.hero h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(3rem, 6.5vw, 3.9rem);
  line-height: 1.06;
  letter-spacing: 0.02em;
  margin: 0.8rem 0 1rem;
}

.hero-subtitle {
  margin: 0 auto 2rem;
  max-width: 640px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-sub-extra {
  display: inline;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.hero-btn {
  min-width: 200px;
}

.trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 15, 0.8);
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-price {
  color: var(--accent);
}

.trust-dot {
  opacity: 0.5;
}

@media (max-width: 640px) {
  .hero-content {
    padding-top: 3.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-sub-extra {
    display: none;
  }

  .trust-bar {
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 0.5rem;
    font-size: 0.72rem;
  }

  .trust-dot {
    margin: 0 0.35rem;
  }
}

/* =========
   Social Proof (now merged into stories section)
   ========= */

.social-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.social-copy h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2rem, 3.3vw, 2.4rem);
  margin: 0;
}

.social-copy .eyebrow {
  margin-bottom: 0;
}

.social-copy .body-large {
  margin-top: 0;
}

.testimonial-card {
  background: radial-gradient(circle at top left, #22253a 0, #10121c 40%, #05060b 100%);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: var(--shadow-soft);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-avatar-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #00ffff;
  flex-shrink: 0;
}

.testimonial-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.5);
  transform-origin: center;
}

.testimonial-name {
  font-weight: 500;
}

.testimonial-role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.testimonial-quote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-main);
}


/* =========
   Problem / Solution
   ========= */

.problem-solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.problem-block {
  padding-right: 2rem;
}

.problem-list {
  margin: 1.1rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-main);
  line-height: 1.8;
  font-size: 1.02rem;
}

.problem-list li + li {
  margin-top: 0.4rem;
}

.solution-block {
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top left, rgba(0, 255, 255, 0.17), transparent 55%),
    linear-gradient(135deg, #0c1119, #060811 60%, #020308);
  border: 1px solid rgba(0, 255, 255, 0.26);
  padding: 1.8rem 1.9rem 1.9rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.9),
    0 0 46px rgba(0, 255, 255, 0.35);
}

.solution-block h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  margin: 0.7rem 0 1rem;
  font-size: 1.7rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1.4rem;
  color: var(--text-main);
}

.mid-cta {
  width: 100%;
  justify-content: center;
}

@media (max-width: 840px) {
  .problem-solution-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .problem-block {
    padding-right: 0;
  }

  .benefits-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========
   What You Get
   ========= */

.section-with-video {
  position: relative;
  overflow: hidden;
}

.section-video {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
}

.section-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Cinematic but clearly visible */
  filter: saturate(1.1) contrast(1.08) brightness(0.8);
}

.section-video-overlay {
  position: absolute;
  inset: 0;
  /* Light darkening so motion is visible but text/cards still pop */
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.2), transparent 65%),
    linear-gradient(to bottom, rgba(5, 6, 10, 0.6), rgba(5, 6, 12, 0.85));
}

/* Darker fade for the bottom CTA video so it sits back more */
.final-cta.section-with-video .section-video-overlay {
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.12), transparent 70%),
    linear-gradient(to bottom, rgba(2, 3, 6, 0.45), rgba(1, 2, 5, 0.8));
}

.final-cta.section-with-video .section-video-el {
  filter: saturate(1.1) contrast(1.05) brightness(1.1);
}

.section-video-content {
  position: relative;
  z-index: 1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.1rem;
}

.feature-card {
  background: radial-gradient(circle at top, #1e2233 0, #0b0d16 46%, #05060b 100%);
  border-radius: 1.4rem;
  padding: 1.9rem 1.8rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-muted);
}

@media (hover: hover) {
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 26px 80px rgba(0, 0, 0, 0.9),
      0 0 50px rgba(0, 255, 255, 0.4);
    border-color: rgba(0, 255, 255, 0.35);
  }
}

.subfeature-bar {
  margin-top: 2.2rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 4, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .subfeature-bar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 1rem;
  }
}

/* =========
   Stories
   ========= */

.section-stories {
  background: 
    radial-gradient(circle at top right, rgba(0, 255, 255, 0.08) 0, transparent 60%),
    radial-gradient(circle at bottom left, rgba(0, 255, 255, 0.06) 0, transparent 65%),
    radial-gradient(circle at center, #10121e 0, #05060a 55%, #020307 100%);
  padding: 4rem 0 4rem;
}

/* Videos Section */
.artist-video-section {
  margin-bottom: 3.5rem;
}

.stories-video-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: var(--text-main);
}

.artist-video-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.stories-video {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  background: #000;
}

/* See More Work Button */
.stories-see-more {
  text-align: center;
  margin-bottom: 4rem;
}

/* Make buttons larger on desktop */
@media (min-width: 721px) {
  .stories-see-more-btn.btn-small {
    padding-inline: 2.8rem;
    font-size: 1rem;
  }

  .stories-offer-btn.btn-small {
    padding-inline: 2.8rem;
    font-size: 1rem;
  }
}

/* Offer Block */
.stories-offer-block {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 2.5rem 0;
}

.stories-offer-headline {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text-main);
}

.stories-offer-subhead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2rem;
}

/* Deliverables List */
.stories-deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.stories-deliverables li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  padding-left: 1.5rem;
  position: relative;
}

.stories-deliverables li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.2rem;
}

.stories-deliverables li strong {
  color: var(--text-main);
  font-weight: 600;
}

/* Pricing & CTA */
.stories-pricing-cta {
  text-align: center;
}

.stories-pricing-text {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin: 0 0 1.8rem;
  color: var(--text-main);
}

.stories-pricing-text strong {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.15em;
}

.stories-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.stories-cta-checkout {
  box-shadow:
    0 0 32px rgba(0, 255, 255, 0.7),
    0 0 0 1px rgba(0, 255, 255, 0.4);
}

.stories-commitment-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Testimonial */
.stories-testimonial-wrap {
  max-width: 600px;
  margin: 3rem auto 0;
}

.testimonial-card {
  margin-top: 0;
}

/* Mobile Styles */
@media (max-width: 720px) {
  .hero-overlay::after {
    height: 6rem;
    background: linear-gradient(to bottom, transparent, rgba(2, 3, 6, 1));
  }

  .section-stories {
    padding: 0.5rem 0 3rem;
    position: relative;
    z-index: 1;
  }

  .artist-video-section {
    margin-bottom: 2.5rem;
    margin-top: -1rem;
  }

  .stories-video-title {
    text-align: center;
    margin-bottom: 1.2rem;
    margin-top: 0;
  }

  .stories-offer-headline {
    text-align: center;
  }

  .artist-video-stack {
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .stories-see-more {
    margin-bottom: 2.5rem;
  }

  .stories-offer-block {
    padding: 2rem 0;
    margin-bottom: 2.5rem;
  }

  .stories-offer-subhead {
    font-size: 1rem;
    line-height: 1.87;
    margin-bottom: 1.5rem;
  }

  .stories-deliverables {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .stories-deliverables li {
    font-size: 0.95rem;
    line-height: 1.76;
    padding-left: 1.2rem;
  }

  .stories-pricing-text {
    margin-bottom: 1.5rem;
  }

  .stories-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .stories-cta-row .btn {
    width: 100%;
  }

  .stories-testimonial-wrap {
    margin-top: 2.5rem;
  }
}

/* =========
   Work grid
   ========= */

.work-hero {
  padding-top: 6rem;
  padding-bottom: 1.5rem;
}

.work-hero-inner {
  max-width: 720px;
}

.work-hero-inner h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 2.8rem);
  margin: 0.9rem 0 0.9rem;
}

.work-hero-inner .body-large {
  margin-bottom: 0.5rem;
}

.work-grid-section {
  padding-top: 1rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

@media (max-width: 720px) {
  .work-grid-section {
    padding-top: 0.3rem;
  }

  .work-grid {
    margin-top: -5.625rem;
  }
}

.work-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.work-thumb {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.work-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

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

.work-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.body-small {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .work-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========
   How It Works
   ========= */

.section-how-it-works {
  position: relative;
}

.section-how-it-works::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: radial-gradient(ellipse at center bottom, rgba(0, 255, 255, 0.16) 0, transparent 75%);
  pointer-events: none;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

.step {
  position: relative;
  padding: 1.5rem 1.3rem 1.4rem;
  border-radius: 1.4rem;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.7), rgba(7, 10, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.85);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.step-index {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 26px rgba(0, 255, 255, 0.35);
}

.step-body h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-body p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}

@media (hover: hover) {
  .step:hover {
    transform: translateY(-6px);
    box-shadow:
      0 26px 80px rgba(0, 0, 0, 0.9),
      0 0 50px rgba(0, 255, 255, 0.4);
    border-color: rgba(0, 255, 255, 0.35);
  }
}

@media (max-width: 960px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========
   Final CTA
   ========= */

.final-cta {
  padding-bottom: 4.8rem;
}

.final-cta-inner {
  max-width: 640px;
  text-align: center;
}

.final-cta-inner h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 2.9rem);
  margin: 0.8rem 0 0.6rem;
}

.final-cta-subtitle {
  margin: 0 0 1.8rem;
}

.final-cta-inner .body-large strong {
  color: var(--accent);
  font-weight: 700;
}

.scarcity-text {
  margin: 1.8rem 0 0;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: none;
  font-weight: 500;
}

.scarcity-now {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.final-cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0;
}

/* =========
   Footer
   ========= */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: #020309;
  padding: 1.1rem 0 1.4rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-brand {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-note {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-separator {
  opacity: 0.6;
}

/* =========
   Subscribe / Form
   ========= */

.section-subscribe {
  background: radial-gradient(circle at top right, #25294a 0, #0b0d18 45%, #05060a 100%);
}

.subscribe-heading {
  max-width: 640px;
}

.subscribe-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: flex-start;
}

.subscribe-copy p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 1.1rem;
}

.subscribe-copy ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.subscribe-copy li + li {
  margin-top: 0.35rem;
}

.subscribe-card {
  background:
    radial-gradient(circle at top left, rgba(0, 255, 255, 0.18), transparent 50%),
    linear-gradient(145deg, #0b1019, #050811 60%, #03040a);
  border-radius: 1.8rem;
  border: 1px solid rgba(0, 255, 255, 0.4);
  padding: 2.2rem 2.2rem 2.3rem;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.9),
    0 0 48px rgba(0, 255, 255, 0.5);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem 1.1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-checkbox {
  margin-top: 0.4rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Ensure SMS opt-in text stays grey, not accent */
.form-field-checkbox .checkbox-label span {
  color: var(--text-muted);
  margin-left: 0;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.15rem;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(3, 4, 10, 0.9);
  accent-color: var(--accent);
}

.form-field label {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.form-field label span {
  color: var(--accent);
  margin-left: 0.2rem;
}

.form-field input {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 4, 10, 0.9);
  color: var(--text-main);
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.form-field input::placeholder {
  color: rgba(163, 163, 176, 0.7);
}

.form-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.5);
  background: rgba(3, 6, 14, 0.95);
}

.form-field.has-error input {
  border-color: #ff4d6a;
  box-shadow: 0 0 0 1px rgba(255, 77, 106, 0.7);
}

.field-error {
  min-height: 1rem;
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: #ffb4c0;
}

.form-footer {
  margin-top: 0.5rem;
}

.form-note {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-note-secondary {
  margin-top: 0.4rem;
  font-size: 0.78rem;
}

.form-checkout-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 500;
}

.form-checkout-link:hover {
  opacity: 0.88;
}

.modal-skip-row {
  margin-top: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: center;
}

.modal-skip-checkout {
  width: 100%;
  max-width: 260px;
}

.form-status {
  margin-top: 0.5rem;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(0, 255, 255, 0.12);
  border: 1px solid rgba(0, 255, 255, 0.6);
  color: var(--text-main);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.form-success.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.success-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #020208;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.9);
}

.form-general-error {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #ff9aa9;
}

.form-submit.is-loading {
  opacity: 0.85;
  cursor: wait;
}

/* =========
   Modal
   ========= */

.emoji-pill {
  display: none;
}

.subscribe-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  padding: 1rem;
  overflow-y: auto;
}

.subscribe-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.subscribe-modal-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
}

.subscribe-modal-panel {
  position: relative;
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  margin: auto;
  padding: 1.25rem 1.4rem 1.2rem;
  border-radius: 1.4rem;
  background: linear-gradient(150deg, #090f18, #050711 65%, #020309);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  z-index: 1;
  overflow-y: visible;
  display: flex;
  flex-direction: column;
}

/* Slightly tighter form sizing inside modal on larger screens */
.subscribe-modal-panel .body-large {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.35rem;
}

.subscribe-modal-panel .form-field label {
  font-size: 0.8rem;
}

.subscribe-modal-panel .form-field input {
  padding: 0.65rem 0.95rem;
  font-size: 0.9rem;
}

.subscribe-modal-panel .form-footer {
  margin-top: 0.1rem; /* ~5px closer to fields on desktop */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subscribe-modal-panel .form-note {
  font-size: 0.75rem;
}

@media (min-width: 720px) {
  .subscribe-modal-panel .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subscribe-modal-panel .form-submit.btn-large {
    width: 100%;
    max-width: 340px;
  }
}

.subscribe-modal-panel h2 {
  margin-top: 0.7rem;
  font-size: 1.4rem;
  line-height: 1.25;
}

.subscribe-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(3, 5, 10, 0.9);
  color: var(--text-main);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.subscribe-form {
  margin-top: 1.4rem;
}

@media (max-width: 960px) {
  .subscribe-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.2rem 0;
  }

  .subscribe-modal {
    padding: 0.75rem;
    align-items: center;
  }

  .subscribe-modal-panel {
    max-width: 100%;
    margin: 0;
    padding: 0.7rem 0.9rem 0.6rem;
    border-radius: 1rem;
  }

  .subscribe-modal-panel h2 {
    font-size: 1.2rem;
    margin-top: 0.3rem;
    line-height: 1.2;
  }

  .subscribe-modal-panel .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0;
  }

  .subscribe-modal-panel .body-large {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-top: 0.4rem;
  }

  .form-field-checkbox {
    margin-top: 0.3rem;
  }

  .checkbox-label {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .subscribe-form {
    margin-top: 0.8rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    margin-bottom: 0.65rem;
  }

  .form-field label {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
  }

  .form-field input {
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
  }

  .form-footer {
    margin-top: 0.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .form-footer .btn {
    width: 100%;
    max-width: 280px;
  }

  .form-note {
    font-size: 0.7rem;
    line-height: 1.3;
    margin-top: 0.4rem;
    text-align: center;
  }

  .subscribe-modal-close {
    top: 0.6rem;
    right: 0.6rem;
    width: 26px;
    height: 26px;
    font-size: 0.85rem;
  }

  .form-submit.btn-large {
    padding-inline: 1.5rem;
    font-size: 0.85rem;
    padding-block: 0.7rem;
  }

  .field-error {
    font-size: 0.7rem;
    margin-top: 0.2rem;
    min-height: 0.8rem;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    align-items: center;
  }
}

