@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── Reset & Variables ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #E85D4C;
  --red-dark:  #C94A40;
  --red-light: #FDF0EE;
  --cream:     #FDF8F4;
  --ink:       #1A1A2E;
  --ink-2:     #3D3D56;
  --ink-3:     #7A7A95;
  --border:    #EDE8E3;
  --white:     #FFFFFF;

  --ff-head: 'Fraunces', Georgia, serif;
  --ff-body: 'DM Sans', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── Scroll-reveal ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 24px rgba(232, 93, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--ink-3);
  background: var(--white);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }

/* ─── Nav ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 5vw;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(26, 26, 46, 0.06);
  transition: box-shadow 0.3s, background 0.3s;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 24px rgba(26, 26, 46, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.nav-logo img { width: 48px; height: 48px; object-fit: contain; }
.nav-logo span {
  font-family: var(--ff-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

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

@media (max-width: 768px) {
  nav { padding: 1rem 4vw; }
  .nav-logo span { font-size: 1.375rem; }
  .nav-logo img { width: 36px; height: 36px; }
  .nav-links .btn-outline {
    background: transparent;
    border-color: transparent;
    color: var(--ink);
    padding: 0.4rem 0.5rem;
    font-size: 0.875rem;
    box-shadow: none;
  }
  .nav-links .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 8rem 5vw 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: var(--red);
  top: -120px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: #f4a261;
  bottom: -80px; left: -80px;
}

.hero-content {
  max-width: 860px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red-light);
  color: var(--red);
  border: 1px solid rgba(232, 93, 76, 0.2);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-note span { display: flex; align-items: center; gap: 0.35rem; }

/* ─── Stats Strip ────────────────────────────────────── */
.stats {
  background: var(--ink);
  padding: 2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 3vw;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
  font-weight: 400;
}

/* ─── Section Commons ────────────────────────────────── */
section { padding: 6rem 5vw; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.875rem;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--red); }
.section-sub {
  font-size: 1.0625rem;
  color: var(--ink-2);
  margin-top: 0.875rem;
  max-width: 520px;
  line-height: 1.65;
}

/* ─── What Is ────────────────────────────────────────── */
.what {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.what-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.what-visual {
  position: relative;
}
.what-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.06);
}
.what-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.what-card-logo {
  width: 36px; height: 36px;
  object-fit: contain;
}
.what-card-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.what-card-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.what-card-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.what-card-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.what-card-icon svg { color: var(--red); }
.what-card-row-text { font-size: 0.875rem; font-weight: 500; color: var(--ink-2); }
.what-card-row-value {
  margin-left: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
}
.what-float {
  position: absolute;
  top: -18px; right: -18px;
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(232,93,76,0.35);
}
.what-float-num {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

/* ─── Features ───────────────────────────────────────── */
.features { background: var(--cream); }
.features-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 26, 46, 0.08);
  border-color: var(--red);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.feature-card:hover .feature-icon { background: var(--red); }
.feature-icon svg { color: var(--red); transition: color 0.3s; }
.feature-card:hover .feature-icon svg { color: var(--white); }
.feature-name {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.feature-desc { font-size: 0.9rem; color: var(--ink-3); line-height: 1.6; }

/* ─── For Whom ───────────────────────────────────────── */
.forwhom {
  background: var(--ink);
  color: var(--white);
}
.forwhom-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.forwhom .section-label { color: #f4a261; }
.forwhom .section-title { color: var(--white); }
.forwhom .section-sub { color: rgba(255,255,255,0.55); }
.forwhom-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.forwhom-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: background 0.3s, border-color 0.3s;
}
.forwhom-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,93,76,0.4);
}
.forwhom-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.forwhom-title {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.forwhom-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ─── Pricing ────────────────────────────────────────── */
.pricing { background: var(--white); }
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pricing-inner .section-sub {
  margin: 0 auto;
}
.pricing-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.pricing-card {
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  border-color: var(--red);
  box-shadow: 0 20px 48px rgba(232,93,76,0.1);
}
.pricing-card.featured {
  border-color: var(--red);
  background: linear-gradient(160deg, #fff9f8 0%, var(--white) 100%);
  box-shadow: 0 20px 60px rgba(232,93,76,0.12);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-plan {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--ff-head);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}
.pricing-price span { font-size: 1.1rem; font-weight: 500; color: var(--ink-3); }
.pricing-desc {
  font-size: 0.875rem;
  color: var(--ink-3);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}
.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  margin-bottom: 1.75rem;
}
.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--ink-2);
}
.pricing-features-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.pricing-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.875rem;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--ink);
  transition: all 0.2s var(--ease-out);
  text-align: center;
}
.pricing-btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.pricing-btn.pricing-btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.pricing-btn.pricing-btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 8px 24px rgba(232,93,76,0.3);
  transform: translateY(-2px);
}

/* Skeleton loader */
.pricing-skeleton {
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.skeleton-line {
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0ece8 25%, #e8e3de 50%, #f0ece8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skeleton-line.w-40 { width: 40%; }
.skeleton-line.w-60 { width: 60%; }
.skeleton-line.w-80 { width: 80%; }
.skeleton-line.h-10 { height: 40px; border-radius: 100px; margin-top: 0.5rem; }

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

/* ─── CTA ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #E85D4C 0%, #C94A40 60%, #a83530 100%);
  padding: 7rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.cta-title em { font-style: italic; opacity: 0.75; }
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Footer ─────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 3rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.footer-logo img { width: 28px; height: 28px; object-fit: contain; }
.footer-logo span {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .what-inner { grid-template-columns: 1fr; }
  .what-visual { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .forwhom-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
  section { padding: 4rem 5vw; }
  .features-grid { grid-template-columns: 1fr; }
  .forwhom-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1rem 3vw; width: 50%; }
  .stats { flex-wrap: wrap; }
  footer { flex-direction: column; align-items: flex-start; }
  .features-header { flex-direction: column; align-items: flex-start; }
}
