    :root {
      --terracotta: #FF6B35;
      --terracotta-light: #FFE8DE;
      --terracotta-dark: #E85A25;
      --navy: #004E89;
      --navy-light: #E0ECF6;
      --amber: #F7B801;
      --paper: #FAF8F5;
      --cloud: #F2EFE9;
      --silver: #D4CFC7;
      --gray: #9E9890;
      --graphite: #6B6560;
      --ink: #1C1A17;
      --radius-md: 16px;
      --radius-lg: 24px;
      --shadow-sm: 0 2px 8px rgba(28, 26, 23, 0.08);
      --shadow-md: 0 8px 32px rgba(28, 26, 23, 0.12);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--paper);
      color: var(--ink);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

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

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

    h1,
    h2,
    h3 {
      font-family: 'Nunito', sans-serif;
      line-height: 1.1;
    }

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

    section {
      padding: 96px 0;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(250, 248, 245, 0.88);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(212, 207, 199, 0.4);
      transition: all 0.3s ease;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: var(--terracotta);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(255, 107, 53, 0.35);
    }

    .nav-icon svg {
      width: 20px;
      height: 20px;
    }

    .nav-wordmark {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 18px;
      color: var(--ink);
      letter-spacing: -0.3px;
    }

    .nav-cta {
      background: var(--terracotta);
      color: white;
      padding: 9px 20px;
      border-radius: 100px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 14px;
      transition: all 0.2s cubic-bezier(.34, 1.56, .64, 1);
      cursor: pointer;
      border: none;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .lang-select {
      border: 1px solid var(--silver);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      color: var(--ink);
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 12px;
      padding: 7px 12px;
      cursor: pointer;
      outline: none;
    }

    .lang-select:focus-visible {
      border-color: var(--terracotta);
      box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.18);
    }

    .nav-cta:hover {
      background: var(--terracotta-dark);
      transform: scale(1.04);
    }

    .nav-cta:active {
      transform: scale(0.96);
    }

    /* HERO */
    #hero {
      padding-top: 140px;
      padding-bottom: 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: radial-gradient(ellipse 700px 500px at 80% -10%, rgba(255, 107, 53, 0.12) 0%, transparent 70%), radial-gradient(ellipse 500px 400px at -10% 60%, rgba(0, 78, 137, 0.08) 0%, transparent 70%), radial-gradient(ellipse 300px 300px at 50% 100%, rgba(247, 184, 1, 0.08) 0%, transparent 70%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: 0.03;
      background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--terracotta-light);
      color: var(--terracotta-dark);
      padding: 6px 14px;
      border-radius: 100px;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 20px;
      animation: fadeUp 0.6s ease both;
    }

    .hero-h1 {
      font-size: clamp(40px, 5vw, 60px);
      font-weight: 900;
      color: var(--ink);
      letter-spacing: -1.5px;
      line-height: 1.05;
      margin-bottom: 20px;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    .hero-h1 em {
      font-style: normal;
      color: var(--terracotta);
      position: relative;
      display: inline-block;
    }

    .hero-h1 em::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--amber);
      border-radius: 2px;
      opacity: 0.7;
    }

    .hero-sub {
      font-size: 18px;
      line-height: 1.6;
      color: var(--graphite);
      max-width: 460px;
      margin-bottom: 36px;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-form {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .hero-input {
      flex: 1;
      min-width: 220px;
      padding: 14px 18px;
      border: 1.5px solid var(--silver);
      border-radius: 14px;
      background: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      color: var(--ink);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      box-shadow: var(--shadow-sm);
    }

    .hero-input:focus {
      border-color: var(--terracotta);
      box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
    }

    .hero-input::placeholder {
      color: var(--gray);
    }

    .hero-btn {
      background: var(--terracotta);
      color: white;
      border: none;
      padding: 14px 26px;
      border-radius: 14px;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 15px;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.22s cubic-bezier(.34, 1.56, .64, 1);
      box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
    }

    .hero-btn:hover {
      background: var(--terracotta-dark);
      transform: scale(1.04) translateY(-1px);
      box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    }

    .hero-btn:active {
      transform: scale(0.96);
    }

    .hero-meta {
      margin-top: 16px;
      font-size: 13px;
      color: var(--gray);
      animation: fadeUp 0.6s 0.4s ease both;
    }

    .hero-meta strong {
      color: var(--terracotta);
    }

    /* PHONE */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      position: relative;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .phone-wrap {
      position: relative;
      filter: drop-shadow(0 40px 80px rgba(28, 26, 23, 0.2));
    }

    .phone-frame {
      width: 280px;
      background: var(--ink);
      border-radius: 48px;
      padding: 14px;
      position: relative;
    }

    .phone-notch {
      position: absolute;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      width: 90px;
      height: 30px;
      background: var(--ink);
      border-radius: 0 0 18px 18px;
      z-index: 10;
    }

    .phone-screen {
      background: var(--paper);
      border-radius: 37px;
      overflow: hidden;
      position: relative;
    }

    .screen-content {
      padding: 44px 0 0;
    }

    .screen-status {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 20px 0;
      font-size: 11px;
      font-weight: 700;
      font-family: 'Nunito', sans-serif;
      color: var(--ink);
    }

    .screen-header {
      padding: 16px 20px 12px;
    }

    .screen-eyebrow {
      font-family: 'Nunito', sans-serif;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 4px;
    }

    .screen-title {
      font-family: 'Nunito', sans-serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--ink);
      letter-spacing: -0.5px;
    }

    .screen-stats {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }

    .screen-stat {
      font-family: 'Nunito', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: var(--graphite);
      display: flex;
      align-items: center;
      gap: 3px;
    }

    .screen-stat .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--terracotta);
    }

    .meal-day {
      padding: 8px 20px;
      border-bottom: 1px solid var(--cloud);
    }

    .meal-day-label {
      font-family: 'Nunito', sans-serif;
      font-size: 10px;
      font-weight: 800;
      color: var(--gray);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .meal-day-label.today {
      color: var(--terracotta);
    }

    .meal-cards-row {
      display: flex;
      gap: 6px;
    }

    .meal-card-mini {
      flex: 1;
      background: white;
      border-radius: 10px;
      padding: 8px 8px 6px;
      border: 1px solid var(--cloud);
    }

    .meal-card-mini.ai {
      border-color: rgba(255, 107, 53, 0.25);
      background: rgba(255, 232, 222, 0.4);
    }

    .meal-card-type {
      font-family: 'Nunito', sans-serif;
      font-size: 8px;
      font-weight: 800;
      color: var(--gray);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 3px;
    }

    .meal-card-name {
      font-family: 'Nunito', sans-serif;
      font-size: 10px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.2;
    }

    .meal-card-time {
      font-size: 9px;
      color: var(--gray);
      margin-top: 2px;
    }

    .ai-badge {
      display: inline-block;
      background: var(--terracotta);
      color: white;
      font-family: 'Nunito', sans-serif;
      font-size: 7px;
      font-weight: 800;
      padding: 1px 5px;
      border-radius: 4px;
      margin-bottom: 2px;
    }

    .screen-fab {
      position: absolute;
      bottom: 16px;
      right: 16px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--terracotta);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
      color: white;
      font-size: 20px;
      font-weight: 300;
      font-family: sans-serif;
      line-height: 1;
    }

    .screen-tabbar {
      display: flex;
      padding: 10px 0 16px;
      border-top: 1px solid var(--cloud);
      background: white;
    }

    .screen-tab {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
    }

    .tab-icon {
      font-size: 14px;
    }

    .tab-label {
      font-family: 'Nunito', sans-serif;
      font-size: 8px;
      font-weight: 700;
      color: var(--gray);
    }

    .screen-tab.active .tab-label {
      color: var(--terracotta);
    }

    .phone-badge {
      position: absolute;
      background: white;
      border-radius: 14px;
      padding: 10px 14px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .phone-badge.left {
      left: -100px;
      bottom: 100px;
      animation: float 3s ease-in-out infinite;
    }

    .phone-badge.right {
      right: -90px;
      top: 120px;
      animation: float 3s 1.5s ease-in-out infinite;
    }

    .badge-icon {
      width: 32px;
      height: 32px;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .badge-icon.orange {
      background: var(--terracotta-light);
    }

    .badge-icon.blue {
      background: var(--navy-light);
    }

    .badge-label {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 12px;
      color: var(--ink);
    }

    .badge-sub {
      font-size: 11px;
      color: var(--gray);
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    /* PROBLEM */
    #problem {
      background: var(--ink);
      color: white;
      padding: 80px 0;
    }

    .problem-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .problem-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
      padding: 6px 14px;
      border-radius: 100px;
      font-family: 'Nunito', sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    #problem h2 {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 900;
      color: white;
      letter-spacing: -1px;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    #problem h2 em {
      font-style: normal;
      color: var(--terracotta);
    }

    #problem p {
      font-size: 17px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.6);
    }

    .problem-cards {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .problem-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: all 0.3s ease;
    }

    .problem-card:hover {
      background: rgba(255, 255, 255, 0.09);
      transform: translateX(4px);
    }

    .problem-card-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255, 107, 53, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .problem-card-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 15px;
      color: white;
      margin-bottom: 4px;
    }

    .problem-card-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.5;
    }

    /* FEATURES */
    #features {
      background: var(--paper);
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--terracotta-light);
      color: var(--terracotta-dark);
      padding: 6px 14px;
      border-radius: 100px;
      font-family: 'Nunito', sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 900;
      color: var(--ink);
      letter-spacing: -1px;
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .section-sub {
      font-size: 17px;
      color: var(--graphite);
      line-height: 1.6;
      max-width: 520px;
    }

    .section-header {
      margin-bottom: 56px;
    }

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

    .feature-card {
      background: white;
      border: 1.5px solid var(--cloud);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: all 0.3s cubic-bezier(.2, .9, .3, 1);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 107, 53, 0.04) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
    }

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

    .feature-card:hover::before {
      opacity: 1;
    }

    .feature-card.featured {
      background: var(--terracotta);
      border-color: var(--terracotta);
      color: white;
      grid-column: span 2;
    }

    .feature-card.featured::before {
      display: none;
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--terracotta-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 16px;
    }

    .feature-card.featured .feature-icon {
      background: rgba(255, 255, 255, 0.2);
    }

    .feature-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 17px;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .feature-card.featured .feature-title {
      color: white;
    }

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

    .feature-card.featured .feature-desc {
      color: rgba(255, 255, 255, 0.8);
    }

    .feature-tag {
      display: inline-block;
      background: rgba(255, 255, 255, 0.2);
      color: white;
      padding: 4px 10px;
      border-radius: 100px;
      font-family: 'Nunito', sans-serif;
      font-size: 11px;
      font-weight: 800;
      margin-top: 16px;
    }

    /* HOW */
    #how {
      background: var(--cloud);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
    }

    .steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(16.66% + 20px);
      right: calc(16.66% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--terracotta), var(--amber));
      z-index: 0;
    }

    .step {
      text-align: center;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }

    .step-number {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Nunito', sans-serif;
      font-size: 26px;
      font-weight: 900;
      margin: 0 auto 24px;
    }

    .step:nth-child(1) .step-number {
      background: var(--terracotta);
      color: white;
      box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
    }

    .step:nth-child(2) .step-number {
      background: var(--navy);
      color: white;
      box-shadow: 0 8px 24px rgba(0, 78, 137, 0.3);
    }

    .step:nth-child(3) .step-number {
      background: var(--amber);
      color: var(--ink);
      box-shadow: 0 8px 24px rgba(247, 184, 1, 0.35);
    }

    .step-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 18px;
      color: var(--ink);
      margin-bottom: 10px;
    }

    .step-desc {
      font-size: 14px;
      color: var(--graphite);
      line-height: 1.6;
    }

    /* PROOF */
    #proof {
      background: white;
      padding: 64px 0;
    }

    .proof-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--cloud);
      border: 1px solid var(--cloud);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .proof-stat {
      background: white;
      text-align: center;
      padding: 36px 24px;
    }

    .proof-number {
      font-family: 'Nunito', sans-serif;
      font-size: 42px;
      font-weight: 900;
      color: var(--terracotta);
      letter-spacing: -1px;
      line-height: 1;
    }

    .proof-label {
      font-size: 13px;
      color: var(--gray);
      margin-top: 6px;
      line-height: 1.4;
    }

    /* WAITLIST */
    #waitlist {
      background: linear-gradient(135deg, var(--terracotta) 0%, #E85A25 100%);
      padding: 96px 0;
      position: relative;
      overflow: hidden;
    }

    #waitlist::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(247, 184, 1, 0.15) 0%, transparent 50%);
    }

    .waitlist-inner {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    #waitlist .section-label {
      background: rgba(255, 255, 255, 0.2);
      color: white;
    }

    #waitlist h2 {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 900;
      color: white;
      letter-spacing: -1px;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    #waitlist p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
      max-width: 480px;
      margin: 0 auto 40px;
    }

    .waitlist-form {
      display: flex;
      gap: 10px;
      max-width: 480px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 18px;
      padding: 8px;
      backdrop-filter: blur(10px);
    }

    .waitlist-input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      padding: 10px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      color: white;
    }

    .waitlist-input::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .waitlist-btn {
      background: white;
      color: var(--terracotta);
      border: none;
      padding: 12px 24px;
      border-radius: 12px;
      cursor: pointer;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 14px;
      transition: all 0.22s cubic-bezier(.34, 1.56, .64, 1);
      white-space: nowrap;
    }

    .waitlist-btn:hover {
      transform: scale(1.04);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .waitlist-btn:active {
      transform: scale(0.96);
    }

    .waitlist-meta {
      margin-top: 16px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
    }

    .waitlist-meta strong {
      color: white;
    }

    .perks {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 40px;
    }

    .perk {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.85);
      font-size: 14px;
    }

    .perk-check {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      flex-shrink: 0;
    }

    /* FOOTER */
    footer {
      background: var(--ink);
      color: white;
      padding: 48px 0 32px;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: var(--terracotta);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-wordmark {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 18px;
      color: white;
    }

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

    .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: all 0.2s;
      cursor: pointer;
    }

    .social-btn:hover {
      background: var(--terracotta);
    }

    .social-btn:focus-visible {
      outline: 2px solid var(--amber);
      outline-offset: 2px;
      background: var(--terracotta);
    }

    .footer-bottom {
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

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

    .launch-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(247, 184, 1, 0.15);
      border: 1px solid rgba(247, 184, 1, 0.3);
      padding: 6px 14px;
      border-radius: 100px;
    }

    .launch-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--amber);
      animation: pulse 2s ease-in-out infinite;
    }

    .launch-text {
      font-family: 'Nunito', sans-serif;
      font-size: 12px;
      font-weight: 800;
      color: var(--amber);
      letter-spacing: 0.3px;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.6;
        transform: scale(0.8);
      }
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2, .9, .3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    /* SUCCESS */
    .success-msg {
      display: none;
      text-align: center;
      color: white;
    }

    .success-msg.show {
      display: block;
      animation: fadeUp 0.4s ease;
    }

    .success-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
    }

    .success-msg h3 {
      font-family: 'Nunito', sans-serif;
      font-size: 24px;
      font-weight: 900;
      color: white;
      margin-bottom: 8px;
    }

    .success-msg p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 16px;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-visual {
        order: -1;
      }

      .phone-badge.left,
      .phone-badge.right {
        display: none;
      }

      .phone-frame {
        width: 240px;
      }

      .problem-inner {
        grid-template-columns: 1fr;
      }

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

      .feature-card.featured {
        grid-column: span 2;
      }

      .steps {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .steps::before {
        display: none;
      }

      .proof-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      nav {
        padding: 12px 14px;
      }

      .nav-actions {
        gap: 8px;
      }

      .lang-select {
        padding: 6px 10px;
        font-size: 11px;
      }

      .nav-cta {
        padding: 8px 12px;
        font-size: 12px;
      }

      section {
        padding: 64px 0;
      }

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

      .feature-card.featured {
        grid-column: span 1;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero-form {
        flex-direction: column;
      }

      .hero-input {
        min-width: unset;
      }
    }
