/* ─── Fonts ─────────────────────────────────────────────── */

@font-face {
  font-family: 'Ciscela';
  src: url('../fonts/Ciscela-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Juturu';
  src: url('../fonts/Juturu-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Juturu';
  src: url('../fonts/Juturu-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Juturu';
  src: url('../fonts/Juturu-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Juturu';
  src: url('../fonts/Juturu-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Juturu';
  src: url('../fonts/Juturu-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

/* ─── Design Tokens ────────────────────────────────────── */

:root {
  /* Primary */
  --warm-orange: #FF6B35;
  --deep-orange: #E85D26;
  --soft-orange: #FFF0E8;
  --peach-light: #FFF8F3;

  /* Neutrals */
  --charcoal: #1A1A2E;
  --slate: #4A4A68;
  --silver: #8E8EA0;
  --cloud: #F5F5F7;
  --snow: #FAFAFA;
  --cream: #FDF8F4;
  --white: #FFFFFF;

  /* Semantic */
  --success: #34C759;
  --warning: #FF9500;
  --danger: #FF3B30;
  --purple: #7C5CFC;

  /* Macros */
  --protein: #FFB800;
  --carbs: #FF3B58;
  --fat: #B24BF3;
  --fiber: #34C759;

  /* Typography */
  --font-display: 'Ciscela', Georgia, serif;
  --font-body: 'Juturu', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* 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;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 8px 30px rgba(26, 26, 46, 0.1);
  --shadow-xl: 0 16px 50px rgba(26, 26, 46, 0.12);
  --shadow-orange: 0 8px 30px rgba(255, 107, 53, 0.25);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
  --section-radius: 32px;
}


/* ─── Reset ────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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


/* ─── Shared ───────────────────────────────────────────── */

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-orange);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--slate);
  max-width: 560px;
}


/* ─── Section Block (Parallax Overlap System) ──────────── */

.section-block {
  position: relative;
  width: 100%;
  border-radius: var(--section-radius) var(--section-radius) 0 0;
  margin-top: calc(-1 * var(--section-radius));
  will-change: transform;
  z-index: 1;
}

.section-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--section-radius);
  box-shadow: 0 -8px 24px rgba(26, 26, 46, 0.06);
  border-radius: var(--section-radius) var(--section-radius) 0 0;
  z-index: 1;
  pointer-events: none;
}

.section-block--white { background: var(--white); }
.section-block--cream { background: var(--cream); }
.section-block--peach { background: var(--peach-light); }
.section-block--soft-orange { background: var(--soft-orange); }
.section-block--charcoal {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
}
.section-block--charcoal::before {
  box-shadow: none;
}


/* ─── Buttons ──────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn--primary {
  background: var(--warm-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn--primary:hover {
  background: var(--deep-orange);
  transform: translateY(-1px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--cloud);
}

.btn--ghost:hover {
  border-color: var(--warm-orange);
  color: var(--warm-orange);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--cloud);
  width: 100%;
}

.btn--outline:hover {
  border-color: var(--warm-orange);
  color: var(--warm-orange);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: var(--radius-xl);
}

.btn--xl {
  padding: 22px 48px;
  font-size: 18px;
  border-radius: var(--radius-2xl);
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* ─── Navigation (Centered Logo) ──────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.nav--scrolled {
  border-bottom-color: var(--cloud);
  background: rgba(253, 248, 244, 0.95);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav__left {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  justify-self: end;
  padding-right: var(--space-2xl);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  justify-self: start;
  padding-left: var(--space-2xl);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--charcoal);
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--warm-orange);
  border-radius: 1px;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover {
  color: var(--charcoal);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--charcoal);
}

.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--charcoal);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav__cta:hover {
  background: var(--warm-orange);
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  grid-column: 3;
  justify-self: end;
}

.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 1px;
  transition: all 0.3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-lg);
  gap: var(--space-md);
  border-top: 1px solid var(--cloud);
}

.nav__mobile.active {
  display: flex;
}

.nav__mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--slate);
  padding: var(--space-sm) 0;
}

.nav__mobile-cta {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--warm-orange);
  padding: 14px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: var(--space-sm);
}


/* ─── Hero ─────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  padding-bottom: var(--space-3xl);
  overflow: hidden;
}

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

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero__shape--1 {
  width: 600px;
  height: 600px;
  background: var(--soft-orange);
  top: -200px;
  right: -200px;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: rgba(178, 75, 243, 0.08);
  bottom: -100px;
  left: -100px;
}

.hero__shape--3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 184, 0, 0.08);
  top: 40%;
  left: 30%;
}

.hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--warm-orange);
  background: var(--soft-orange);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--warm-orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}

.hero__title-accent {
  color: var(--warm-orange);
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}


/* ─── Hero Phone Area + Floating Cards ─────────────────── */

.hero__phone-area {
  position: relative;
  margin: var(--space-3xl) 0 var(--space-xl);
  width: 100%;
  max-width: 620px;
  display: flex;
  justify-content: center;
}

.hero__phone {
  display: flex;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

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

.hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  opacity: 0;
}

.hero__float-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--icon-bg);
  color: var(--icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__float-icon svg {
  width: 18px;
  height: 18px;
}

.hero__float-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--silver);
}

.hero__float-value {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.hero__float-card--1 {
  top: 15%;
  left: 0;
  animation: float-card-1 5s ease-in-out infinite;
  animation-delay: 0s;
}

.hero__float-card--2 {
  top: 40%;
  right: 0;
  animation: float-card-2 5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.hero__float-card--3 {
  bottom: 15%;
  left: 5%;
  animation: float-card-3 5s ease-in-out infinite;
  animation-delay: 3s;
}

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

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

@keyframes float-card-3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* ─── Hero Social Proof ────────────────────────────────── */

.hero__proof {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__proof-avatars {
  display: flex;
}

.hero__proof-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--avatar-color, var(--warm-orange));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid var(--cream);
  margin-left: -6px;
}

.hero__proof-avatar:first-child {
  margin-left: 0;
}

.hero__proof-sep {
  color: var(--silver);
  font-size: 14px;
}

.hero__stars {
  display: flex;
  gap: 2px;
}

.hero__proof-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
}


/* ─── Phone Frame ──────────────────────────────────────── */

.phone-frame {
  width: 280px;
  height: 570px;
  background: var(--charcoal);
  border-radius: 40px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    var(--shadow-xl),
    0 30px 80px rgba(26, 26, 46, 0.2);
}

.phone-frame__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--charcoal);
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.phone-frame__screen {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 30px;
  overflow: hidden;
}

.phone-screen {
  padding: 52px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.phone-screen__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.phone-screen__greeting {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--charcoal);
}

.phone-screen__date {
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
}

.phone-screen__cal-ring {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 8px auto;
}

.phone-screen__ring-svg {
  width: 120px;
  height: 120px;
}

.phone-screen__cal-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.phone-screen__cal-number {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.phone-screen__cal-label {
  font-size: 10px;
  color: var(--silver);
  margin-top: 2px;
}

.phone-screen__macros {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-screen__macro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px;
  align-items: center;
}

.phone-screen__macro-bar {
  grid-column: 1 / -1;
  height: 6px;
  background: var(--cloud);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.phone-screen__macro-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--bar-width);
  background: var(--bar-color);
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-screen__macro-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--slate);
}

.phone-screen__macro-value {
  font-size: 11px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: right;
}

.phone-screen__meal-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--cloud);
  margin-top: auto;
}

.phone-screen__meal-icon {
  width: 36px;
  height: 36px;
  background: var(--soft-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen__meal-icon svg {
  width: 18px;
  height: 18px;
}

.phone-screen__meal-info {
  display: flex;
  flex-direction: column;
}

.phone-screen__meal-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.phone-screen__meal-cals {
  font-size: 11px;
  color: var(--silver);
}


/* ─── Features ─────────────────────────────────────────── */

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

.features::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--soft-orange);
  filter: blur(80px);
  opacity: 0.3;
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.features__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

.features__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.features__header .section-subtitle {
  margin: 0 auto;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--cloud);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--icon-bg);
  color: var(--icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

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

.feature-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.feature-card__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
}


/* ─── How It Works ─────────────────────────────────────── */

.how-it-works {
  padding: var(--space-5xl) 0;
}

.how-it-works__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  max-width: 960px;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step__number {
  font-family: var(--font-body);
  font-size: 56px;
  font-weight: 700;
  color: var(--soft-orange);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.step__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.step__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
}


/* ─── Showcase ─────────────────────────────────────────── */

.showcase {
  padding: var(--space-5xl) 0;
}

.showcase__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-5xl);
}

.showcase__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.showcase__block--reverse {
  direction: rtl;
}

.showcase__block--reverse > * {
  direction: ltr;
}

.showcase__visual {
  display: flex;
  justify-content: center;
}

.showcase__phone-mini {
  width: 260px;
  background: var(--cream);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--cloud);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.showcase__screen {
  padding: var(--space-lg);
}

.sc-log__input {
  background: var(--cloud);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--silver);
  margin-bottom: var(--space-md);
}

.sc-log__result {
  background: var(--soft-orange);
  border-radius: var(--radius-md);
  padding: 14px;
}

.sc-log__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.sc-log__food {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.sc-log__cal {
  font-size: 13px;
  font-weight: 600;
  color: var(--warm-orange);
}

.sc-log__macros {
  display: flex;
  gap: var(--space-md);
  font-size: 12px;
  font-weight: 600;
}

.showcase__screen--swap {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.sc-swap__original,
.sc-swap__suggestion {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: center;
}

.sc-swap__original {
  background: var(--cloud);
}

.sc-swap__suggestion {
  background: rgba(52, 199, 89, 0.08);
  border: 1px solid rgba(52, 199, 89, 0.2);
}

.sc-swap__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--silver);
  margin-bottom: 4px;
}

.sc-swap__label--green {
  color: var(--success);
}

.sc-swap__food {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.sc-swap__cal {
  display: block;
  font-size: 13px;
  color: var(--slate);
}

.sc-swap__cal--save {
  color: var(--success);
}

.sc-swap__save {
  display: inline-block;
  background: rgba(52, 199, 89, 0.12);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  margin-left: 4px;
}

.sc-swap__arrow {
  width: 32px;
  height: 32px;
  background: var(--soft-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.showcase__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

.showcase__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 440px;
}


/* ─── Pricing ──────────────────────────────────────────── */

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

.pricing__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.pricing__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.pricing__header .section-subtitle {
  margin: 0 auto;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 720px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--featured {
  background: var(--charcoal);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}

.pricing-card--featured .pricing-card__name,
.pricing-card--featured .pricing-card__amount {
  color: var(--white);
}

.pricing-card--featured .pricing-card__period {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-card--featured .pricing-card__savings {
  color: var(--warm-orange);
}

.pricing-card--featured li {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card--featured li::before {
  color: var(--warm-orange) !important;
}

.pricing-card--featured .btn {
  margin-top: auto;
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__head {
  margin-bottom: var(--space-lg);
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

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

.pricing-card__amount {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.pricing-card__period {
  font-size: 14px;
  color: var(--silver);
}

.pricing-card__savings {
  font-size: 13px;
  font-weight: 600;
  color: var(--warm-orange);
  margin-top: 4px;
}

.pricing-card__features {
  margin-bottom: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.pricing-card__features li {
  font-size: 14px;
  color: var(--slate);
  padding-left: 24px;
  position: relative;
}

.pricing-card__features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 13px;
}


/* ─── Reviews ──────────────────────────────────────────── */

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

.reviews__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
}

.reviews__inner::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--soft-orange);
  opacity: 0.5;
  pointer-events: none;
}

.reviews__inner::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--soft-orange);
  opacity: 0.4;
  pointer-events: none;
}

.reviews__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.reviews__header .section-subtitle {
  margin: 0 auto;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card__stars {
  display: flex;
  gap: 2px;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--avatar-color, var(--warm-orange));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.review-card__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.review-card__date {
  display: block;
  font-size: 12px;
  color: var(--silver);
}


/* ─── Download CTA ─────────────────────────────────────── */

.download {
  padding: var(--space-5xl) 0;
}

.download__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
  position: relative;
}

.download__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--soft-orange);
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.5;
}

.download__icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  margin: 0 auto var(--space-lg);
  position: relative;
  box-shadow: var(--shadow-orange);
}

.download__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  position: relative;
}

.download__subtitle {
  font-size: 18px;
  color: var(--slate);
  margin-bottom: var(--space-xl);
  position: relative;
}

.download__btn {
  position: relative;
}

.download__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  position: relative;
}

.download__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.download__badge-stars {
  display: flex;
  gap: 2px;
}

.download__badge-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
}

.download__badge-text {
  font-size: 13px;
  color: var(--silver);
  font-weight: 500;
}

.download__badge-check {
  display: flex;
  align-items: center;
  justify-content: center;
}

.download__badge-sep {
  width: 1px;
  height: 40px;
  background: var(--cloud);
}


/* ─── Footer ───────────────────────────────────────────── */

.footer {
  padding: var(--space-3xl) 0 0;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
}

.footer__logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--warm-orange);
}

.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__newsletter-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
}

.footer__newsletter-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
}

.footer__form {
  display: flex;
  gap: var(--space-sm);
}

.footer__input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.footer__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer__input:focus {
  border-color: var(--warm-orange);
}

.footer__submit {
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 13px;
}

.footer__love {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  margin-top: var(--space-md);
}

.footer__color-cell {
  height: 100%;
}


/* ─── Blog Page ────────────────────────────────────────── */

.blog-hero {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-3xl);
  text-align: center;
  background: var(--cream);
}

.blog-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.blog-list {
  padding: var(--space-3xl) 0 var(--space-5xl);
  background: var(--white);
  border-radius: var(--section-radius) var(--section-radius) 0 0;
  margin-top: calc(-1 * var(--section-radius));
  position: relative;
}

.blog-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--section-radius);
  box-shadow: 0 -8px 24px rgba(26, 26, 46, 0.06);
  border-radius: var(--section-radius) var(--section-radius) 0 0;
  pointer-events: none;
}

.blog-list__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.blog-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-xl);
  align-items: start;
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--cloud);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.blog-card__thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.blog-card__thumb-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--grad-from), var(--grad-to));
}

.blog-card__meta {
  display: flex;
  gap: var(--space-md);
  font-size: 13px;
  color: var(--silver);
  margin-bottom: var(--space-sm);
}

.blog-card__author {
  font-weight: 600;
  color: var(--warm-orange);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: var(--space-md);
}

.blog-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--warm-orange);
  transition: opacity 0.2s;
}

.blog-card__link:hover {
  opacity: 0.8;
}


/* ─── About Page ───────────────────────────────────────── */

.about-hero {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  background: var(--cream);
}

.about-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 140px);
  gap: var(--space-md);
}

.about-grid__cell {
  background: var(--cell-bg);
  border-radius: var(--cell-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.about-grid__cell:hover {
  transform: scale(1.03);
}

.about-grid__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.about-story {
  padding: 0;
}

.about-story__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-lg);
  text-align: center;
}

.about-story__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: var(--space-2xl);
}

.about-story__body {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-story__body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--slate);
}


/* ─── Legal Pages (Privacy & Terms) ────────────────────── */

.legal-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: var(--cream);
}

.legal-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.legal-content {
  padding: var(--space-2xl) 0;
}

.legal-content__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.legal-content__inner h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content__inner h2:first-child {
  margin-top: 0;
}

.legal-content__inner h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.legal-content__inner p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: var(--space-sm);
}

.legal-content__inner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
}

.legal-content__inner ul li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
  padding-left: 24px;
  position: relative;
  margin-bottom: 4px;
}

.legal-content__inner ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}


/* ─── Animations ───────────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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


/* ─── Responsive ───────────────────────────────────────── */

@media (max-width: 1024px) {
  .nav__left,
  .nav__right {
    display: none;
  }

  .nav__inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .nav__logo {
    grid-column: 2;
  }

  .nav__hamburger {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .hero__title {
    font-size: clamp(36px, 5vw, 52px);
  }

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

  .steps {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .showcase__block,
  .showcase__block--reverse {
    grid-template-columns: 1fr;
    text-align: center;
    direction: ltr;
  }

  .showcase__text {
    align-items: center;
  }

  .showcase__body {
    max-width: 100%;
  }

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

  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .section-block {
    border-radius: 24px 24px 0 0;
    margin-top: -24px;
  }

  .hero__float-card {
    display: none;
  }

  .hero__phone-area {
    max-width: 100%;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .pricing__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .phone-frame {
    width: 240px;
    height: 490px;
    border-radius: 34px;
  }

  .phone-frame__screen {
    border-radius: 24px;
  }

  .phone-frame__notch {
    width: 100px;
    height: 24px;
    border-radius: 0 0 14px 14px;
  }

  .phone-screen {
    padding: 44px 16px 16px;
    gap: 14px;
  }

  .phone-screen__greeting {
    font-size: 18px;
  }

  .phone-screen__cal-ring {
    width: 100px;
    height: 100px;
  }

  .phone-screen__ring-svg {
    width: 100px;
    height: 100px;
  }

  .phone-screen__cal-number {
    font-size: 20px;
  }

  .btn--lg {
    padding: 16px 28px;
    font-size: 15px;
  }

  .btn--xl {
    padding: 18px 36px;
    font-size: 16px;
  }

  .download__badges {
    flex-direction: column;
    gap: var(--space-md);
  }

  .download__badge-sep {
    width: 40px;
    height: 1px;
  }

  /* Blog responsive */
  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card__thumb {
    aspect-ratio: 16/9;
  }

  /* About responsive */
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 100px);
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__proof {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .hero__proof-sep {
    display: none;
  }

  .footer__form {
    flex-direction: column;
  }

  .footer__submit {
    width: 100%;
  }
}
