/* ============================================
   StudioShots Landing Page
   Design: Playful Premium
   Typography: Fraunces + Inter
   ============================================ */

:root {
  /* Deep ink palette — purple-navy instead of espresso */
  --ink: #1B1340;
  --ink-90: rgba(27, 19, 64, 0.9);
  --ink-70: rgba(27, 19, 64, 0.7);
  --ink-50: rgba(27, 19, 64, 0.5);
  --ink-40: rgba(27, 19, 64, 0.4);
  --ink-30: rgba(27, 19, 64, 0.3);
  --ink-20: rgba(27, 19, 64, 0.2);
  --ink-12: rgba(27, 19, 64, 0.12);
  --ink-08: rgba(27, 19, 64, 0.08);
  --ink-05: rgba(27, 19, 64, 0.05);
  --ink-03: rgba(27, 19, 64, 0.03);

  /* Warm white backgrounds */
  --bg: #FFFBF7;
  --bg-alt: #F5F1ED;
  --white: #FFFFFF;

  /* Accent palette — vibrant & playful */
  --coral: #FF6B6B;
  --coral-light: rgba(255, 107, 107, 0.12);
  --violet: #8B7FFF;
  --violet-light: rgba(139, 127, 255, 0.12);
  --teal: #2ECEC2;
  --teal-light: rgba(46, 206, 194, 0.12);
  --amber: #FFB547;
  --amber-light: rgba(255, 181, 71, 0.12);
  --rose: #FF8FAB;
  --sky: #7CC8FF;
  --lime: #8FD14F;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Animations
   ============================================ */

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -15px) rotate(1deg); }
  66% { transform: translate(-8px, -8px) rotate(-1deg); }
}

@keyframes float-reverse {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-10px, 10px) rotate(-2deg); }
  66% { transform: translate(8px, 15px) rotate(1deg); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes fade-in-up {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes draw {
  0% { stroke-dasharray: 0, 500; }
  100% { stroke-dasharray: 500, 0; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes card-float-1 {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-14px) rotate(-5deg); }
}

@keyframes card-float-2 {
  0%, 100% { transform: translateY(0) rotate(2deg) scale(1.08); }
  50% { transform: translateY(-10px) rotate(0deg) scale(1.08); }
}

@keyframes card-float-3 {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-16px) rotate(10deg); }
}

/* Scroll-triggered animation */
.anim-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(255, 251, 247, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--ink-05), 0 4px 24px var(--ink-03);
}

.nav-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-optical-sizing: auto;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-50);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
  box-shadow: 0 4px 20px var(--ink-20);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   Shared Section Styles
   ============================================ */

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  text-align: center;
  margin-bottom: 16px;
  font-optical-sizing: auto;
}

.section-title em {
  font-style: italic;
  color: var(--ink-70);
}

.section-desc {
  font-size: 16px;
  color: var(--ink-40);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 120px 24px 80px;
  overflow: hidden;
}

/* Floating shapes background */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.shape-1 {
  width: 450px; height: 450px;
  background: var(--rose);
  opacity: 0.25;
  top: -100px; right: -60px;
  animation: float 12s ease-in-out infinite;
}

.shape-2 {
  width: 380px; height: 380px;
  background: var(--violet);
  opacity: 0.2;
  top: 35%; left: -120px;
  animation: float-reverse 14s ease-in-out infinite -3s;
}

.shape-3 {
  width: 320px; height: 320px;
  background: var(--teal);
  opacity: 0.18;
  bottom: 5%; right: 20%;
  animation: float 10s ease-in-out infinite -5s;
}

.shape-4 {
  width: 250px; height: 250px;
  background: var(--amber);
  opacity: 0.2;
  top: 50%; left: 45%;
  animation: float-reverse 11s ease-in-out infinite -2s;
}

.shape-5 {
  width: 200px; height: 200px;
  background: var(--sky);
  opacity: 0.22;
  bottom: 15%; left: 8%;
  animation: float 13s ease-in-out infinite -4s;
}

.shape-ring {
  width: 300px; height: 300px;
  background: transparent;
  border: 2px solid var(--ink-05);
  opacity: 1;
  top: 15%; right: 25%;
  animation: spin-slow 40s linear infinite;
  filter: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 620px;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral-light);
  border: 1px solid rgba(255, 107, 107, 0.2);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.3px;
  margin-bottom: 28px;
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  position: relative;
  flex-shrink: 0;
}

.hero-badge-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse-ring 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 22px;
  font-optical-sizing: auto;
}

.hero-accent {
  font-style: italic;
  color: var(--coral);
  position: relative;
  display: inline-block;
}

.hero-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 14px;
  color: var(--coral);
}

.underline-draw {
  stroke-dasharray: 0, 500;
  animation: draw 1.2s ease-out 0.6s forwards;
}

/* Rotating taglines */
.hero-rotating {
  position: relative;
  height: 36px;
  margin-bottom: 32px;
  overflow: hidden;
}

.rotating-line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-50);
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
  padding: 0 8px;
}

.rotating-line.active {
  opacity: 1;
  transform: translateY(0);
}

.rotating-line.exit {
  opacity: 0;
  transform: translateY(-12px);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--bg);
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: var(--radius-full);
  z-index: -1;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  box-shadow: 0 8px 32px var(--ink-20);
  transform: translateY(-2px);
}


.btn-ghost {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-50);
  transition: color 0.2s;
  padding: 15px 8px;
  position: relative;
}

.btn-ghost:hover {
  color: var(--ink);
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--ink-20);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.btn-ghost:hover::after {
  transform: scaleX(1);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-40);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
}

.stat-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-20);
}

/* Hero cards — overlapping photo preview */
.hero-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: none;
}

.hero-cards {
  position: relative;
  width: 420px;
  height: 420px;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--ink-12), 0 4px 12px var(--ink-08);
  border: 4px solid var(--white);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Left card — wider spread, more visible */
.hero-card-1 {
  width: 170px; height: 230px;
  top: 50px; left: -20px;
  transform: rotate(-12deg);
  animation: card-float-1 6s ease-in-out infinite;
  z-index: 1;
}

/* Center card — front and prominent */
.hero-card-2 {
  width: 210px; height: 280px;
  top: 20px; left: 105px;
  transform: rotate(2deg) scale(1.06);
  animation: card-float-2 5s ease-in-out infinite -1.5s;
  z-index: 3;
}

/* Right card — rotated right, peeking out */
.hero-card-3 {
  width: 165px; height: 220px;
  top: 60px; right: -15px;
  transform: rotate(10deg);
  animation: card-float-3 7s ease-in-out infinite -3s;
  z-index: 2;
}

/* ============================================
   Features Section
   ============================================ */

.features {
  padding: var(--space-4xl) 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  border-radius: 3px;
  background: var(--card-accent, var(--coral));
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  border-color: var(--ink-08);
  box-shadow: 0 16px 48px var(--ink-08);
  transform: translateY(-4px);
}

.feature-card:hover::after {
  opacity: 0.5;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-3deg);
}

.fi-coral {
  background: var(--coral-light);
  color: var(--coral);
}
.fi-coral ~ * { --card-accent: var(--coral); }

.fi-violet {
  background: var(--violet-light);
  color: var(--violet);
}
.fi-violet ~ * { --card-accent: var(--violet); }

.fi-teal {
  background: var(--teal-light);
  color: var(--teal);
}
.fi-teal ~ * { --card-accent: var(--teal); }

.fi-amber {
  background: var(--amber-light);
  color: var(--amber);
}
.fi-amber ~ * { --card-accent: var(--amber); }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
  font-optical-sizing: auto;
}

.feature-card p {
  font-size: 14px;
  color: var(--ink-40);
  line-height: 1.6;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-40);
  padding: 12px 24px;
  background: var(--ink-03);
  border-radius: var(--radius-full);
  width: fit-content;
  margin: 0 auto;
}

.trust-bar svg {
  color: var(--teal);
  flex-shrink: 0;
}

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

.how-it-works {
  padding: var(--space-4xl) 0;
  background: var(--bg-alt);
  position: relative;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin: 0 auto 16px;
}

.step-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 8px 30px var(--ink-08);
  border: 2px solid var(--white);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
}

.step-card:hover .step-img-wrap {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--ink-12);
}

.step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  font-optical-sizing: auto;
}

.step-card p {
  font-size: 14px;
  color: var(--ink-40);
  line-height: 1.6;
  padding: 0 8px;
}

.step-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 160px;
  color: var(--ink-20);
}

/* ============================================
   Themes Gallery
   ============================================ */

.themes {
  padding: var(--space-4xl) 0;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.theme-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px var(--ink-08);
}

.theme-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px var(--ink-12);
}

.theme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-card:hover img {
  transform: scale(1.08);
}

.theme-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}

.theme-card:hover span {
  opacity: 1;
  transform: translateY(0);
}

.themes-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-30);
  font-style: italic;
}

/* ============================================
   Trust & Safety Section
   ============================================ */

.trust {
  padding: var(--space-4xl) 0;
  background: var(--bg-alt);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-card:hover {
  border-color: var(--ink-08);
  box-shadow: 0 12px 40px var(--ink-08);
  transform: translateY(-3px);
}

.tc-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s;
}

.trust-card:hover .tc-icon {
  transform: scale(1.1);
}

.tc-green { background: rgba(46, 206, 194, 0.12); color: var(--teal); }
.tc-violet { background: var(--violet-light); color: var(--violet); }
.tc-coral { background: var(--coral-light); color: var(--coral); }
.tc-amber { background: var(--amber-light); color: var(--amber); }
.tc-teal { background: var(--teal-light); color: var(--teal); }
.tc-blue { background: rgba(124, 200, 255, 0.15); color: #4BA3E3; }

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
  font-optical-sizing: auto;
}

.trust-card p {
  font-size: 13px;
  color: var(--ink-40);
  line-height: 1.6;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing {
  padding: var(--space-4xl) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--ink-05);
  border-radius: var(--radius-2xl);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
  border-color: var(--ink-08);
  box-shadow: 0 16px 48px var(--ink-08);
  transform: translateY(-4px);
}

.price-card-pop {
  border: 2px solid var(--coral);
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.12);
}

.price-card-pop:hover {
  box-shadow: 0 20px 56px rgba(255, 107, 107, 0.18);
}

.price-pop-label {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), #FF8E53);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.price-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-50);
  background: var(--ink-05);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
  font-optical-sizing: auto;
}

.price-amount span {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink-40);
}

.price-amount small {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-30);
}

.price-desc {
  font-size: 14px;
  color: var(--ink-40);
  margin-bottom: 22px;
}

.price-card ul {
  text-align: left;
  margin-bottom: 24px;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-70);
  padding: 7px 0;
}

.price-card li svg {
  flex-shrink: 0;
}

.price-btn {
  display: block;
  width: 100%;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--ink-05);
  color: var(--ink);
}

.price-btn:hover {
  background: var(--ink-12);
}

.price-btn-pop {
  background: var(--ink);
  color: var(--bg);
}

.price-btn-pop:hover {
  background: var(--ink-90);
  box-shadow: 0 8px 24px var(--ink-20);
  transform: translateY(-1px);
}

.sub-note {
  font-size: 11px;
  color: var(--ink-30);
  margin-top: 12px;
  line-height: 1.4;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-30);
}

.pricing-note a {
  color: var(--ink-50);
  text-decoration: underline;
  text-decoration-color: var(--ink-20);
  transition: color 0.2s;
}

.pricing-note a:hover {
  color: var(--ink);
}

/* ============================================
   FAQ Section
   ============================================ */

.faq {
  padding: var(--space-4xl) 0;
  background: var(--bg-alt);
}

.faq-list {
  max-width: 680px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--ink-08);
}

.faq-item:first-child {
  border-top: 1px solid var(--ink-08);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  transition: color 0.2s;
  gap: 16px;
  font-optical-sizing: auto;
}

.faq-q span {
  flex: 1;
}

.faq-q:hover {
  color: var(--ink-70);
}

.faq-chev {
  flex-shrink: 0;
  color: var(--ink-30);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-chev {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  font-size: 14px;
  color: var(--ink-40);
  line-height: 1.7;
  padding-bottom: 22px;
}

/* ============================================
   Download CTA Section
   ============================================ */

.download {
  position: relative;
  padding: var(--space-5xl) 0;
  overflow: hidden;
}

.download-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.download-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.ds-1 {
  width: 600px; height: 600px;
  background: var(--violet);
  opacity: 0.15;
  top: -100px; left: -120px;
  animation: float 12s ease-in-out infinite;
}

.ds-2 {
  width: 500px; height: 500px;
  background: var(--sky);
  opacity: 0.15;
  bottom: -80px; right: -100px;
  animation: float-reverse 10s ease-in-out infinite -3s;
}

.ds-3 {
  width: 400px; height: 400px;
  background: var(--coral);
  opacity: 0.1;
  top: 40%; left: 55%;
  animation: float 14s ease-in-out infinite -5s;
}

.download-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.download-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 28px;
  box-shadow: 0 8px 30px var(--ink-08);
}

.download-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
  font-optical-sizing: auto;
}

.download-title em {
  font-style: italic;
  color: var(--ink-70);
}

.download-sub {
  font-size: 16px;
  color: var(--ink-40);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-store-btn:hover {
  box-shadow: 0 8px 32px var(--ink-20);
  transform: translateY(-2px);
}

.app-store-btn span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.app-store-btn small {
  font-size: 11px;
  opacity: 0.7;
}

.app-store-btn strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.download-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-30);
}

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

.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid var(--ink-08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 260px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.footer-brand > p {
  font-size: 13px;
  color: var(--ink-40);
  line-height: 1.6;
}

.footer-cols {
  display: flex;
  gap: 56px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-40);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--ink-05);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--ink-30);
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink-05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-40);
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ============================================
   Responsive
   ============================================ */

/* --- Desktop wide: side-by-side hero --- */
@media (min-width: 1100px) {
  .hero {
    justify-content: center;
    gap: 60px;
  }

  .hero-content {
    text-align: left;
    max-width: 560px;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .hero-rotating .rotating-line {
    justify-content: flex-start;
  }

  .hero-visual {
    display: block;
  }
}

/* --- Tablet landscape / small desktop --- */
@media (max-width: 1099px) {
  .hero {
    padding: 120px 24px 72px;
    min-height: auto;
    gap: 40px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .themes-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .step-card {
    max-width: 340px;
  }

  .step-img-wrap {
    aspect-ratio: 3/2;
  }

  .step-arrow {
    padding-top: 0;
    transform: rotate(90deg);
  }

  /* Reduce section spacing on tablet */
  .features, .how-it-works, .themes, .trust, .pricing, .faq {
    padding: 72px 0;
  }

  .download {
    padding: 80px 0;
  }
}

/* --- Tablet portrait & below --- */
@media (max-width: 768px) {
  /* Navigation mobile menu */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 251, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    box-shadow: 0 8px 32px var(--ink-05);
  }

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

  .nav-links a {
    padding: 10px 0;
    font-size: 15px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* Hero mobile */
  .hero {
    padding: 100px 20px 56px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }

  .hero-badge {
    margin-bottom: 20px;
    font-size: 12px;
    padding: 7px 18px;
  }

  .hero-rotating {
    height: 32px;
    margin-bottom: 24px;
  }

  .rotating-line {
    font-size: 15px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }

  .btn-ghost {
    text-align: center;
  }

  .hero-stats {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .stat-divider {
    display: block;
  }

  /* Section spacing mobile */
  .features, .how-it-works, .themes, .trust, .pricing, .faq {
    padding: 56px 0;
  }

  .download {
    padding: 64px 0;
  }

  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }

  .section-title {
    font-size: clamp(26px, 6.5vw, 36px);
    margin-bottom: 12px;
  }

  .section-desc {
    font-size: 15px;
    margin-bottom: 32px;
  }

  /* Features mobile - 2-column grid */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .feature-icon svg {
    width: 22px;
    height: 22px;
  }

  .feature-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .feature-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .trust-bar {
    font-size: 12px;
    padding: 10px 16px;
    text-align: center;
    line-height: 1.4;
  }

  /* Steps mobile */
  .step-card {
    max-width: 100%;
  }

  .steps-row {
    gap: 4px;
  }

  .step-img-wrap {
    aspect-ratio: 4/3;
  }

  .step-card h3 {
    font-size: 18px;
  }

  .step-card p {
    font-size: 13px;
    padding: 0 4px;
  }

  .step-arrow svg {
    width: 28px;
    height: 16px;
  }

  /* Themes mobile */
  .themes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  /* Trust mobile - 2-column grid */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-card {
    padding: 20px 16px;
  }

  .tc-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .trust-card h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .trust-card p {
    font-size: 12px;
  }

  /* Pricing mobile - single column */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 16px;
  }

  .price-card {
    padding: 28px 20px;
  }

  .price-amount {
    font-size: 42px;
  }

  /* FAQ mobile */
  .faq-list {
    margin-top: 32px;
  }

  .faq-q {
    font-size: 15px;
    padding: 18px 0;
  }

  .faq-a p {
    font-size: 13px;
    padding-bottom: 18px;
  }

  /* Download CTA mobile */
  .download-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .download-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .download-sub {
    font-size: 15px;
    margin-bottom: 28px;
  }

  /* Footer mobile */
  .footer {
    padding: 40px 0 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 28px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-cols {
    gap: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .footer-col h4 {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .footer-col a {
    font-size: 13px;
    padding: 3px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

/* --- Small phones --- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 88px 16px 48px;
  }

  .hero-title {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .hero-rotating {
    height: 28px;
    margin-bottom: 20px;
  }

  .rotating-line {
    font-size: 13px;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat {
    font-size: 13px;
  }

  .stat-num {
    font-size: 14px;
  }

  /* Features — 1 column on tiny screens */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 16px;
  }

  .feature-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .feature-card h3 {
    margin-bottom: 4px;
  }

  /* Themes 2-col on small phones */
  .themes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* Trust 1-col on small phones */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
  }

  .tc-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  /* Pricing */
  .pricing-grid {
    max-width: 100%;
  }

  .price-amount {
    font-size: 38px;
  }

  /* Section spacing tighter */
  .features, .how-it-works, .themes, .trust, .pricing, .faq {
    padding: 44px 0;
  }

  .download {
    padding: 52px 0;
  }

  /* Footer cols wrap nicely */
  .footer-cols {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-col {
    min-width: 80px;
  }
}

/* --- Very small phones (iPhone SE etc) --- */
@media (max-width: 374px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-rotating {
    height: 26px;
  }

  .rotating-line {
    font-size: 12px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 12px 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .price-card {
    padding: 24px 16px;
  }

  .nav-logo {
    font-size: 16px;
  }
}
