:root {
    --amber: #F97316;
    --amber-light: #FB923C;
    --amber-dark: #EA580C;
    --amber-pale: #FFF7ED;
    --black: #0A0A0A;
    --charcoal: #1A1A1A;
    --graphite: #2D2D2D;
    --mid: #6B6B6B;
    --light: #F5F5F5;
    --white: #FFFFFF;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -1px;
    text-decoration: none;
  }
  .nav-logo .till { color: var(--white); }
  .nav-logo .ova { color: var(--amber); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }

  .nav-cta {
    background: var(--amber);
    color: var(--black) !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--amber-dark) !important; color: var(--white) !important; }

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

  .hero-glow {
    position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 5s ease-in-out infinite;
    pointer-events: none;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
  }

  @keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(249,115,22,0.35);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 40px;
    position: relative;
    background: rgba(249,115,22,0.08);
  }

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

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.0;
    letter-spacing: -3px;
    position: relative;
    margin-bottom: 28px;
  }

  .hero-title .accent { color: var(--amber); }

  .hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 52px;
    position: relative;
  }

  .hero-subtitle strong {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .btn-primary {
    background: var(--amber);
    color: var(--black);
    border: none;
    padding: 16px 36px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-primary:hover {
    background: var(--amber-dark);
    color: var(--white);
    transform: translateY(-2px);
  }

  .btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 16px 32px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-ghost:hover {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
  }

  .hero-note {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    position: relative;
  }

  .hero-note strong { color: rgba(249,115,22,0.8); }

  /* ─── STATS STRIP ─── */
  .stats-strip {
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background: var(--charcoal);
    padding: 32px 40px;
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--amber);
    letter-spacing: -1px;
  }

  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
    font-weight: 500;
  }

  /* ─── FEATURES ─── */
  .features {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
  }

  .section-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.1;
    margin-bottom: 64px;
    letter-spacing: -1.5px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
  }

  .feature-card {
    background: var(--charcoal);
    padding: 52px 48px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .feature-card:hover::before { transform: scaleX(1); }
  .feature-card:hover { background: #212121; }

  .feature-icon {
    width: 56px; height: 56px;
    background: rgba(249,115,22,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 28px;
    border: 1px solid rgba(249,115,22,0.2);
  }

  .feature-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
  }

  .feature-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .feature-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .feature-points li {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .feature-points li::before {
    content: '';
    width: 16px; height: 16px;
    background: rgba(249,115,22,0.2);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(249,115,22,0.4);
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3 5L7 1' stroke='%23F97316' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }

  /* ─── APP PREVIEW ─── */
  .app-preview-section {
    padding: 80px 40px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
  }

  .app-preview-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .preview-text .section-heading { margin-bottom: 24px; }

  .preview-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 36px;
  }

  .phone-mockup {
    background: #111;
    border-radius: 40px;
    padding: 16px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 60px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
    max-width: 320px;
    margin: 0 auto;
  }

  .phone-screen {
    background: var(--black);
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 9/19;
  }

  .phone-header {
    background: var(--charcoal);
    padding: 20px 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .ph-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
  }
  .ph-logo .ova { color: var(--amber); }

  .ph-avatar {
    width: 32px; height: 32px;
    background: var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
  }

  .phone-body { padding: 16px; }

  .ph-revenue {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 12px;
  }

  .ph-rev-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.6);
    margin-bottom: 8px;
  }

  .ph-rev-amount {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--black);
    letter-spacing: -1px;
    margin-bottom: 4px;
  }

  .ph-rev-meta {
    font-size: 11px;
    color: rgba(0,0,0,0.5);
    font-weight: 500;
  }

  .ph-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .ph-row-label { font-size: 13px; color: rgba(255,255,255,0.6); }
  .ph-row-val { font-size: 13px; font-weight: 600; }
  .ph-row-val.pos { color: #4ade80; }
  .ph-row-val.neg { color: #f87171; }
  .ph-row-val.amber { color: var(--amber); }

  .ph-btn {
    width: 100%;
    background: var(--amber);
    color: var(--black);
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-top: 16px;
    cursor: pointer;
  }

  .ph-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: var(--charcoal);
  }

  .ph-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
  }

  .ph-nav-item.active { color: var(--amber); }

  .ph-nav-icon { font-size: 18px; }

  /* ─── PRICING ─── */
  .pricing-section {
    padding: 100px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .pricing-card {
    background: var(--charcoal);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 24px;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
    margin-top: 56px;
  }

  .pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-dark));
  }

  .pricing-tag {
    display: inline-block;
    background: rgba(249,115,22,0.15);
    color: var(--amber);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .pricing-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .price-trial {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--amber);
  }

  .price-then {
    font-size: 18px;
    color: rgba(255,255,255,0.4);
  }

  .pricing-after {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
  }

  .pricing-after strong {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
  }

  .pricing-note {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 48px;
  }

  .pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
    margin-bottom: 48px;
  }

  .pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
  }

  .pricing-feature::before {
    content: '✓';
    width: 22px; height: 22px;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--amber);
    flex-shrink: 0;
  }
  .pricing-cta {
    font-size:18px; padding: 18px 48px;
  } 
  
  .pricing-note-small {
    margin-top:16px; font-size:13px; color:rgba(255,255,255,0.3);
  }


  /* ─── TESTIMONIALS ─── */
  .testimonials {
    padding: 80px 40px;
    background: var(--charcoal);
  }

  .testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
  }

  .testimonial-card {
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.3s;
  }

  .testimonial-card:hover { border-color: rgba(249,115,22,0.3); }

  .testimonial-stars {
    color: var(--amber);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .testimonial-text {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .author-avatar {
    width: 40px; height: 40px;
    background: var(--graphite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--amber);
  }

  .author-name { font-weight: 600; font-size: 14px; }
  .author-biz { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    padding: 100px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .cta-banner .section-heading {
    margin-bottom: 20px;
  }

  .cta-note {
    margin-top:20px; font-size:13px; color:rgba(255,255,255,0.3);
  }

  .cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 48px;
    line-height: 1.7;
  }

  .cta-actions {
    display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
  }

  .cta-cta {
    font-size:18px; padding:18px 44px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 60px 40px 40px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
  .footer-logo .ova { color: var(--amber); }

  .footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 240px;
  }

  .footer-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }

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

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
  }

  .social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .social-icons a {
    
    transition: color 0.2s;
    color:rgba(255,255,255,0.3); font-size:20px; text-decoration:none;
  }

  /* ─── ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s ease forwards;
  }

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

  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }
  .delay-5 { animation-delay: 0.5s; }

  /* ─── DIVIDER ─── */
  hr.divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  @media (max-width: 900px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .app-preview-inner { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-features { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats-strip { gap: 32px; }
  }
