/* ============================================
   GRAYNE — Premium Landing Page
   ============================================ */

:root {
  --bg: #0C0C0E;
  --bg-card: #1A1A1F;
  --accent: #C4956A;
  --gradient-start: #D4836B;
  --gradient-end: #C9A96E;
  --text: #F0ECE6;
  --text-secondary: #B0ACA6;
  --border: #2E2E35;
  --success: #6B8F71;
  --error: #B86B6B;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  --max-width: 1120px;
  --nav-height: 72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* ---- Grain Overlay ---- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Typography ---- */
.accent {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
}

.section__sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: var(--space-lg);
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(12, 12, 14, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  display: block;
}
.nav__cta {
  opacity: 1;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 0.75rem 1.75rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--bg);
}
.btn--primary:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(196, 149, 106, 0.25);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 4px;
}
.btn--small:hover {
  background: var(--accent);
  color: var(--bg);
  opacity: 1;
}
.btn__loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 0.5rem;
}
.btn.is-loading .btn__text { opacity: 0.6; }
.btn.is-loading .btn__loader { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Email Capture ---- */
.email-capture__group {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.email-capture__group:focus-within {
  border-color: var(--accent);
}
.email-capture__input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  padding: 0.875rem 1.25rem;
  color: var(--text);
  font-size: 0.9375rem;
  outline: none;
}
.email-capture__input::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}
.email-capture__btn {
  border-radius: 0 6px 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.email-capture__note {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: var(--space-xs);
  opacity: 0.7;
}
.email-capture__success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: var(--space-sm) auto 0;
  padding: 0.75rem 1rem;
  background: rgba(107, 143, 113, 0.1);
  border: 1px solid rgba(107, 143, 113, 0.3);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--success);
  max-width: 480px;
}
.email-capture__success[hidden] { display: none; }
.email-capture__error {
  margin-top: var(--space-xs);
  font-size: 0.8125rem;
  color: var(--error);
}
.email-capture__error[hidden] { display: none; }

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 4rem) 0 2rem;
}

@media (min-width: 1024px) {
  .hero > .container {
    padding-left: calc(1.5rem + 9rem);
  }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    align-items: center;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding-right: 3rem;
}

@media (min-width: 1024px) {
  .hero__content::before {
    content: '';
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
    right: -1rem;
    bottom: -2.5rem;
    background: linear-gradient(to right, rgba(12, 12, 14, 0.95) 0%, rgba(12, 12, 14, 0.85) 50%, rgba(12, 12, 14, 0.4) 85%, transparent 100%);
    z-index: -1;
    pointer-events: none;
    filter: blur(20px);
  }
}

@media (max-width: 1023px) {
  .hero__content {
    text-align: center;
    padding-right: 0;
  }
}

.hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.hero__headline--accent {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.7;
}

@media (max-width: 1023px) {
  .hero__sub {
    margin: 0 auto var(--space-lg);
  }
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (max-width: 1023px) {
  .hero__cta {
    align-items: center;
  }
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  opacity: 0.4;
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero phone mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__visual {
    position: relative;
    justify-content: flex-start;
    margin-left: -18rem;
  }
}

@media (min-width: 1280px) {
  .hero__visual {
    margin-left: -22rem;
  }
}

.hero__phone-img {
  max-width: 450px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 80px rgba(0, 0, 0, 0.6));
  mask-image: linear-gradient(to bottom, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%),
              linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%),
                      linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
  -webkit-mask-composite: destination-in;
}

@media (min-width: 1024px) {
  .hero__phone-img {
    max-width: none;
    width: auto;
    height: 70vh;
    max-height: 900px;
  }
}

@media (min-width: 1280px) {
  .hero__phone-img {
    height: 75vh;
    max-height: 1000px;
  }
}
.hero__phone-frame {
  width: 260px;
  background: var(--bg-card);
  border-radius: 32px;
  border: 1px solid var(--border);
  padding: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.hero__phone-screen {
  background: var(--bg);
  border-radius: 22px;
  padding: 1.25rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.hero__phone-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.hero__phone-time {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.hero__phone-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
}
.hero__phone-outfit {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.hero__phone-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text);
  opacity: 0;
  animation: phoneItemIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.8s + var(--delay) * 0.15s);
}
.hero__phone-swatch {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}
.hero__phone-badge {
  margin-top: auto;
  padding-top: 0.75rem;
  text-align: center;
  font-size: 0.6875rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
}
@keyframes phoneItemIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---- Sections ---- */
.section {
  padding: var(--space-2xl) 0;
}

/* ---- Value Props ---- */
.value-props__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.card:hover {
  border-color: rgba(196, 149, 106, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 149, 106, 0.08);
  border-radius: 10px;
  margin-bottom: 1.25rem;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- Features ---- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .feature {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.feature--reversed {
  direction: ltr;
}

@media (min-width: 768px) {
  .feature--reversed .feature__image {
    order: 2;
  }
  .feature--reversed .feature__text {
    order: 1;
  }
}

.feature__image {
  position: relative;
}

.feature__image img {
  width: 100%;
  height: auto;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%),
              linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%),
                      linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
  -webkit-mask-composite: destination-in;
}

.feature__eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.feature__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.feature__body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section__eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section--elevated {
  background: rgba(26, 26, 31, 0.3);
}

.pro-benefits {
  margin-top: var(--space-xl);
}

/* ---- How It Works ---- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s;
}
.step:hover {
  border-color: rgba(196, 149, 106, 0.2);
}
.step__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.6;
}
.step__content {
  min-width: 0;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.step__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.step__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(196, 149, 106, 0.06);
  border: 1px solid rgba(196, 149, 106, 0.1);
}

/* ---- Who This Is For ---- */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.who-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--border);
  transition: border-color 0.3s;
}
.who-item:hover {
  border-left-color: var(--accent);
}
.who-item__marker {
  display: none;
}
.who-item p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.who-item p em {
  color: var(--text);
  font-style: italic;
}

.who-grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .who-grid-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.who-card {
  background: rgba(26, 26, 31, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.who-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
  background: rgba(26, 26, 31, 0.6);
}

.who-card__icon {
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.who-card__quote {
  font-size: 1.0625rem;
  color: #F5F0E8;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* ---- App Preview ---- */
.app-preview {
  text-align: center;
}
.app-preview .section__sub {
  margin-left: auto;
  margin-right: auto;
}
.app-preview__frame {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}
.app-preview__phone {
  width: 280px;
  background: var(--bg-card);
  border-radius: 36px;
  border: 1px solid var(--border);
  padding: 14px;
  box-shadow: 0 48px 100px rgba(0,0,0,0.5);
  position: relative;
}
.app-preview__notch {
  width: 100px;
  height: 24px;
  background: var(--bg);
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.app-preview__screen {
  background: var(--bg);
  border-radius: 24px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-preview__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  opacity: 0.5;
}

/* ---- Lead Magnet ---- */
.lead-magnet__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.lead-magnet__card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196, 149, 106, 0.06), transparent 70%);
  pointer-events: none;
}
.lead-magnet__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(196, 149, 106, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}
.lead-magnet__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}
.lead-magnet__text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
  max-width: 420px;
  line-height: 1.65;
}
.lead-magnet__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-magnet__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.lead-magnet__check-item {
  padding: 0.5rem 1rem;
  background: rgba(196, 149, 106, 0.06);
  border-radius: 6px;
  color: var(--text);
  border-left: 2px solid var(--accent);
}
.lead-magnet__check-item--faded {
  opacity: 0.5;
}
.lead-magnet__check-item--more {
  color: var(--accent);
  background: transparent;
  border-left-color: transparent;
  font-weight: 500;
}

/* ---- Pricing ---- */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.card--pricing {
  position: relative;
  padding: var(--space-lg);
}

.card--featured {
  border-color: rgba(201, 169, 110, 0.3);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C9A96E, #C4956A);
  color: #0C0C0E;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 100px;
}

.pricing-card__header {
  margin-bottom: var(--space-md);
}

.pricing-card__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card__amount {
  font-size: 2.5rem;
  font-weight: 300;
  font-family: var(--font-display);
}

.pricing-card__period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing-card__annual {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.pricing-card__body {
  margin-bottom: var(--space-md);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.pricing-card__features svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card__footer {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.pricing-card__note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.card--featured .btn--primary {
  background: #C9A96E;
  color: #0C0C0E;
}

.card--featured .btn--primary:hover {
  background: #C4956A;
}

/* ---- FAQ ---- */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}
.faq__question:hover {
  color: var(--accent);
}
.faq__answer {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ---- Footer ---- */
.footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 1px solid var(--border);
}
.footer__cta {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.footer__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}
.footer__form .email-capture__group {
  margin: 0 auto;
}
.footer__form .email-capture__note {
  text-align: center;
}
.footer__form .email-capture__success {
  margin: var(--space-sm) auto 0;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}
.footer__social {
  display: flex;
  gap: 1.25rem;
}
.footer__social a {
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer__social a:hover {
  color: var(--accent);
  opacity: 1;
}
.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  opacity: 0.5;
}
.footer__copy a {
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer__copy a:hover {
  color: var(--accent);
  opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Mobile-first: Base styles for smallest screens (375px - iPhone SE) */
@media (max-width: 428px) {
  /* Typography adjustments */
  body {
    font-size: 1rem; /* 16px minimum for readability */
  }

  /* Container padding */
  .container {
    padding: 0 1rem;
  }

  /* Navigation */
  .nav {
    height: 64px;
  }
  
  .nav__logo img {
    width: 42px;
    height: auto;
  }

  .nav__cta {
    padding: 0.5rem 1rem;
    font-size: 0.6875rem;
  }

  /* Hero section */
  .hero {
    min-height: auto;
    padding: calc(64px + 2rem) 0 2rem;
  }

  .hero__inner {
    gap: var(--space-md);
  }

  .hero__content {
    padding-right: 0;
  }

  .hero__eyebrow {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

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

  .hero__sub {
    font-size: 1rem;
    margin-bottom: var(--space-md);
  }

  /* Full-width CTA buttons on mobile */
  .hero__cta {
    width: 100%;
  }

  .hero__cta .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
  }

  /* Hero phone - smaller on mobile */
  .hero__visual {
    margin-top: var(--space-md);
  }

  .hero__phone-img {
    max-width: 280px;
    /* Simplify mask on mobile for better performance */
    mask-image: none;
    -webkit-mask-image: none;
  }

  /* Hide scroll hint on mobile */
  .hero__scroll-hint {
    display: none;
  }

  /* Section spacing - reduce desktop gaps */
  .section {
    padding: var(--space-lg) 0;
  }

  .section__header {
    margin-bottom: var(--space-md) !important;
  }

  .section__heading {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
  }

  .section__sub {
    font-size: 1rem;
  }

  .section__eyebrow {
    font-size: 0.75rem;
  }

  /* Value props - single column */
  .value-props__grid {
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }

  .card__title {
    font-size: 1.25rem;
  }

  .card__text {
    font-size: 0.9375rem;
  }

  /* Features - stack vertically, no mask effects on small screens */
  .feature {
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
  }

  .feature__image img {
    /* Remove complex mask on mobile */
    mask-image: none;
    -webkit-mask-image: none;
  }

  .feature__eyebrow {
    font-size: 0.75rem;
  }

  .feature__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .feature__body {
    font-size: 1rem;
  }

  /* Pro benefits */
  .pro-benefits {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
  }

  /* Steps */
  .steps {
    gap: 1.5rem;
  }

  .step {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    padding: 1.25rem;
  }

  .step__number {
    font-size: 2rem;
  }

  .step__visual {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
  }

  .step__icon-wrap {
    width: 56px;
    height: 56px;
  }

  .step__title {
    font-size: 1.125rem;
  }

  .step__text {
    font-size: 0.875rem;
  }

  /* Who cards */
  .who-card {
    padding: 1.5rem;
    min-height: 200px;
  }

  .who-card__quote {
    font-size: 1rem;
  }

  /* Pricing */
  .pricing-cards {
    gap: 1.5rem;
  }

  .card--pricing {
    padding: var(--space-md);
  }

  .pricing-card__title {
    font-size: 1.25rem;
  }

  .pricing-card__amount {
    font-size: 2rem;
  }

  .pricing-card__features li {
    font-size: 0.875rem;
  }

  /* FAQ - ensure full width */
  .faq__list {
    width: 100%;
  }

  .faq__question {
    font-size: 1.0625rem;
    padding: 1rem 0;
  }

  .faq__question::after {
    font-size: 1.125rem;
  }

  .faq__answer {
    font-size: 0.875rem;
    padding-bottom: 1rem;
  }

  /* Footer */
  .footer {
    padding: var(--space-lg) 0 var(--space-md);
  }

  .footer__headline {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
  }

  .footer__download .btn {
    width: 100%;
    padding: 1rem 1.5rem;
  }

  .footer__bottom {
    gap: var(--space-sm);
  }

  .footer__copy {
    font-size: 0.75rem;
    text-align: center;
  }

  /* Email capture - full width on mobile */
  .email-capture__group {
    flex-direction: column;
    max-width: 100%;
  }

  .email-capture__input {
    padding: 1rem 1.25rem;
    font-size: 1rem; /* 16px to prevent zoom on iOS */
  }

  .email-capture__btn {
    border-radius: 6px;
    padding: 1rem 1.5rem;
  }
}

/* iPhone 14 (390px) - minor adjustments */
@media (min-width: 390px) and (max-width: 428px) {
  .hero__phone-img {
    max-width: 300px;
  }

  .hero__headline {
    font-size: 2.25rem;
  }
}

/* iPhone 14 Pro Max (428px) - slightly larger */
@media (min-width: 428px) and (max-width: 767px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero__phone-img {
    max-width: 340px;
  }

  .hero__headline {
    font-size: 2.5rem;
  }

  .section__heading {
    font-size: 2rem;
  }
}

/* Tablet (768px - iPad) */
@media (min-width: 640px) {
  .value-props__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lead-magnet__card {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 3rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Re-enable mask effects on tablet */
  .hero__phone-img {
    max-width: 380px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%),
                linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%),
                        linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
    -webkit-mask-composite: destination-in;
  }

  .feature__image img {
    mask-image: linear-gradient(to bottom, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%),
                linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%),
                        linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
    -webkit-mask-composite: destination-in;
  }

  /* Features side-by-side on tablet */
  .feature {
    grid-template-columns: 1fr 1fr;
  }

  /* CTA buttons can be narrower on tablet */
  .hero__cta .btn {
    width: auto;
    min-width: 260px;
  }

  .footer__download .btn {
    width: auto;
    min-width: 260px;
  }
}

/* iPad Pro landscape (1024px) - transition to desktop */
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero__phone-img {
    height: 65vh;
    max-height: 800px;
  }
}

@media (min-width: 900px) {
  .step {
    padding: 2.5rem;
  }
}

/* Ensure no horizontal scroll */
@media (max-width: 1023px) {
  body {
    overflow-x: hidden;
  }

  * {
    max-width: 100%;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__phone-item {
    animation: none;
    opacity: 1;
  }
  .hero__scroll-hint {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
