/* ========================
   TOKENS & RESET
   ======================== */
:root {
  --bg: #F9F8EB;
  --primary: #FFB347;
  --primary-dark: #d97706;
  --primary-light: #fff3e0;
  --text: #2c3e50;
  --text-muted: #6b7280;
  --surface: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 680px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ========================
   UTILITY
   ======================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

/* ========================
   BUTTONS
   ======================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 16px rgba(255, 179, 71, 0.4);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(217, 119, 6, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-full {
  width: 100%;
  font-size: 18px;
  padding: 18px;
}

/* ========================
   HERO
   ======================== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 80px;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: var(--max-w);
}

.app-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 179, 71, 0.35);
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-fallback {
  font-size: 40px;
  font-weight: 900;
  color: var(--text);
}

.app-icon img + .icon-fallback {
  display: none;
}

.hero-headline {
  font-size: clamp(44px, 10vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(16px, 3.5vw, 19px);
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-proof {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  letter-spacing: 0.01em;
}

.hero-origin {
  font-size: 14px;
  color: var(--text);
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 24px;
  max-width: 420px;
  line-height: 1.55;
  font-style: italic;
  text-align: left;
}

.hero-mockup {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.iphone-mockup {
  position: relative;
  width: 280px;
  background: linear-gradient(160deg, #4a4a4c 0%, #1c1c1e 45%, #3a3a3c 100%);
  border-radius: 54px;
  padding: 16px 13px 24px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 0 2px #111,
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 12px 24px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.iphone-btn-silent,
.iphone-btn-vol-up,
.iphone-btn-vol-down {
  position: absolute;
  left: -4px;
  width: 4px;
  background: linear-gradient(to right, #1a1a1c, #3c3c3e);
  border-radius: 2px 0 0 2px;
}

.iphone-btn-silent { top: 88px;  height: 30px; }
.iphone-btn-vol-up  { top: 136px; height: 54px; }
.iphone-btn-vol-down { top: 202px; height: 54px; }

.iphone-btn-power {
  position: absolute;
  right: -4px;
  top: 156px;
  width: 4px;
  height: 70px;
  background: linear-gradient(to left, #1a1a1c, #3c3c3e);
  border-radius: 0 2px 2px 0;
}

.iphone-screen {
  background: #000;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
}


.iphone-app-img {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-fill {
  width: 100%;
  min-height: 500px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}

.mockup-counter {
  font-size: 56px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
}

.mockup-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mockup-btn {
  margin-top: 32px;
  background: var(--primary);
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ========================
   PROBLEM
   ======================== */
.problem {
  padding: 52px 0 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-lines {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 24px;
}

.problem-line {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.problem-line strong {
  display: block;
  font-size: clamp(17px, 3.5vw, 20px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}

.problem-line p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.problem-emoji {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.problem-emoji svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary-dark);
  stroke-width: 2;
}

.problem-pull-quote {
  max-width: 400px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.pull-quote-text {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  padding: 18px 22px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  margin: 0;
}

.pull-quote-text::before {
  content: '';
  position: absolute;
  left: -1px;
  bottom: -10px;
  width: 0;
  height: 0;
  border-right: 13px solid transparent;
  border-top: 10px solid rgba(0, 0, 0, 0.09);
}

.pull-quote-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 0;
  border-right: 11px solid transparent;
  border-top: 8px solid #fff;
}

.pull-quote-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 14px;
  padding-left: 4px;
}

/* ========================
   VIDEO SECTION
   ======================== */
.video-section {
  padding: 60px 0 52px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 600px;
  max-width: 340px;
  margin: 0 auto 56px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--text);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 600px) {
  .video-wrapper {
    aspect-ratio: 16 / 9;
    max-width: 100%;
    max-height: none;
  }
}

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

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.play-btn svg {
  width: 100%;
  height: 100%;
  drop-shadow: 0 4px 12px rgba(0,0,0,0.2);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}

.play-btn.hidden {
  display: none;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 500px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  margin-bottom: 14px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-dark);
  stroke-width: 2;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================
   FEATURE ROWS (video + text)
   ======================== */
.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-row {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 540px) {
  .feature-row {
    flex-direction: row;
  }
  .feature-row--reverse {
    flex-direction: row-reverse;
  }
}

.feature-row-video {
  flex: 0 0 44%;
  background: #000;
  display: flex;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.video-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 3;
  pointer-events: none;
}

.nav-back {
  position: relative;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 13px solid rgba(255, 255, 255, 0.4);
}

.nav-back::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 9px solid #1c1c1e;
  top: -5px;
  left: 2px;
}

.nav-home {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.nav-recent {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}

.feature-row-video::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 5px solid #1c1c1e;
  border-top-width: 20px;
  border-bottom-width: 40px;
  border-radius: 22px;
  pointer-events: none;
  z-index: 2;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 0 2px #0d0d0d;
}

.feature-row-video video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

@media (min-width: 540px) {
  .feature-row-video video {
    aspect-ratio: unset;
    height: 100%;
  }
}

.feature-row-text {
  flex: 1;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.feature-row-text .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 0;
}

.feature-row-text .feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-row-text h3 {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}

.feature-bullets li {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.45;
  padding-left: 16px;
  position: relative;
}

.feature-bullets li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

/* ========================
   PRICING
   ======================== */
.pricing {
  padding: 64px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-headline {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--primary);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 8px 32px rgba(255, 179, 71, 0.15);
  max-width: 420px;
  margin: 0 auto;
}

.pricing-top {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 6px;
}

.price-original {
  font-size: 22px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.price-current {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-footer {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

.pricing-subtext {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 32px;
  line-height: 1.6;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================
   FAQ
   ======================== */
.faq {
  padding: 64px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.faq-headline {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.15s ease;
}

.faq-question:hover {
  color: var(--primary-dark);
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--primary-dark);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 200px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 48px 0;
  text-align: center;
}

.footer-brand {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ========================
   UGC FLOAT
   ======================== */
.ugc-float {
  position: fixed;
  bottom: 28px;
  right: max(24px, calc(50vw - 340px));
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: ugc-float-in 0.6s 1.2s both;
}

.ugc-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.ugc-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 50%;
  color: var(--text);
  flex-shrink: 0;
}

.ugc-float-text {
  white-space: nowrap;
}

@keyframes ugc-float-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
