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

  :root {
    --black: #080808;
    --white: #f5f5f0;
    --gray: #888;
    --mid: #1a1a1a;
    --border: rgba(255,255,255,0.08);
    --accent: #e8e0d0;
    --pad: clamp(24px, 5vw, 80px);
  }

  html { scroll-behavior: smooth; }

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

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
  }

  /* HERO */
  .hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px,8vh,100px) clamp(24px,4vw,60px) clamp(80px,10vh,120px) var(--pad);
    position: relative;
    z-index: 2;
  }
  .eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gray); flex-shrink: 0; }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 10vw, 140px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
  }
  .hero-title span { display: block; color: var(--accent); }

  .hero-desc {
    font-size: clamp(14px,1.5vw,16px);
    line-height: 1.7;
    color: rgba(245,245,240,0.6);
    max-width: 420px;
    margin-bottom: 36px;
  }
  .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; }
  .tag {
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--gray);
    background: rgba(255,255,255,0.03);
  }
  .hero-stats { display: flex; gap: clamp(24px,4vw,40px); flex-wrap: wrap; }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px,4vw,42px); line-height: 1; }
  .stat-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
  }
  .hero-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(60,60,50,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .phones-wrap { display: flex; align-items: center; justify-content: center; }
  .phone { position: relative; width: clamp(140px,14vw,200px); flex-shrink: 0; }
  .phone img { width: 100%; border-radius: 28px; display: block; box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.08); }
  .phone-1 { transform: translateX(20px) rotate(-4deg); z-index: 2; animation: float1 6s ease-in-out infinite; }
  .phone-2 { transform: translateX(-20px) rotate(4deg); z-index: 1; opacity: 0.85; animation: float2 6s ease-in-out infinite; }
  @keyframes float1 { 0%,100% { transform: translateX(20px) rotate(-4deg) translateY(0); } 50% { transform: translateX(20px) rotate(-4deg) translateY(-12px); } }
  @keyframes float2 { 0%,100% { transform: translateX(-20px) rotate(4deg) translateY(0); } 50% { transform: translateX(-20px) rotate(4deg) translateY(-8px); } }

  .hero-line { position: absolute; left: 0; bottom: 0; right: 0; height: 1px; background: var(--border); }
  .scroll-hint {
    position: absolute; bottom: 32px; left: var(--pad);
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray);
  }
  .scroll-hint-line { width: 1px; height: 40px; background: var(--gray); animation: scrollLine 2s ease-in-out infinite; }
  @keyframes scrollLine { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

  /* TICKER */
  .ticker {
    background: var(--white);
    color: var(--black);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }
  .ticker-track {
    display: inline-flex;
    align-items: center;
    animation: ticker 22s linear infinite;
    will-change: transform;
  }
  .ticker:hover .ticker-track { animation-play-state: paused; }
  @keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(12px,1.2vw,14px);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(8,8,8,0.55);
    padding: 0 clamp(24px,4vw,56px);
  }
  .ticker-item strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(15px,1.5vw,19px);
    letter-spacing: 0.06em;
    color: var(--black);
    font-weight: 400;
  }
  .ticker-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(8,8,8,0.2);
    flex-shrink: 0;
  }

  /* SECTIONS */
  .section { padding: clamp(60px,8vw,120px) var(--pad); max-width: 1400px; margin: 0 auto; }
  .section-label {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray);
    margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
  }
  .section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gray); flex-shrink: 0; }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px,6vw,80px);
    line-height: 0.95; letter-spacing: 0.02em;
    margin-bottom: clamp(40px,6vw,80px);
  }

  /* FEATURES */
  .features-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  }
  .feature-card { background: var(--black); padding: clamp(28px,4vw,48px) clamp(20px,3vw,40px); transition: background 0.3s; }
  .feature-card:hover { background: var(--mid); }
  .feature-icon { width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 20px; }
  .feature-title { font-size: clamp(15px,1.5vw,18px); font-weight: 500; margin-bottom: 10px; }
  .feature-desc { font-size: 14px; line-height: 1.7; color: rgba(245,245,240,0.5); }

  /* VIDEO */
  .video-section { padding: clamp(60px,8vw,120px) var(--pad); border-bottom: 1px solid var(--border); }
  .video-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: center;
  }
  .video-wrap {
    position: relative; border-radius: 28px; overflow: hidden;
    background: var(--mid); box-shadow: 0 32px 80px rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.07);
  }
  .video-wrap video { width: 100%; display: block; }
  .video-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px,5vw,72px); line-height: 0.95; margin-bottom: 24px; }
  .video-text p { font-size: clamp(14px,1.5vw,16px); line-height: 1.8; color: rgba(245,245,240,0.55); margin-bottom: 16px; }

  /* TRY IT */
  .try-section { padding: clamp(60px,8vw,120px) var(--pad); border-bottom: 1px solid var(--border); background: var(--mid); }
  .try-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto; gap: clamp(40px,6vw,80px); align-items: center;
  }
  .try-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px,5vw,72px); line-height: 0.95; margin-bottom: 20px; }
  .try-text p { font-size: clamp(14px,1.5vw,16px); line-height: 1.8; color: rgba(245,245,240,0.55); max-width: 480px; margin-bottom: 32px; }
  .expo-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white); color: var(--black);
    padding: 14px 28px; border-radius: 100px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: opacity 0.2s, transform 0.2s;
  }
  .expo-btn:hover { opacity: 0.85; transform: translateY(-2px); }

  .qr-block { display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .qr-block img { width: clamp(120px,14vw,180px); border-radius: 16px; background: white; padding: 8px; display: block; }
  .qr-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); text-align: center; }

  /* SCREENS */
  .screens-outer { padding: clamp(60px,8vw,120px) 0; border-bottom: 1px solid var(--border); overflow: hidden; }
  .screens-header { max-width: 1400px; margin: 0 auto; padding: 0 var(--pad); margin-bottom: clamp(32px,4vw,60px); }
  .screens-scroll {
    display: flex; gap: clamp(12px,2vw,24px);
    overflow-x: auto; padding: 16px var(--pad) 32px;
    scrollbar-width: none; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  }
  .screens-scroll::-webkit-scrollbar { display: none; }
  .screen-item { flex-shrink: 0; scroll-snap-align: start; }
  .screen-item img { height: clamp(320px,45vw,520px); border-radius: 24px; display: block; box-shadow: 0 20px 50px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.06); }
  .screen-caption { margin-top: 12px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); text-align: center; }

  /* TECH */
  .tech-inner { max-width: 1400px; margin: 0 auto; }
  .tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
  .tech-list { display: flex; flex-direction: column; }
  .tech-row { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--border); }
  .tech-row:first-child { border-top: 1px solid var(--border); }
  .tech-name { font-size: 15px; font-weight: 400; }
  .tech-badge { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); border: 1px solid var(--border); padding: 4px 12px; border-radius: 100px; white-space: nowrap; }
  .tech-right h3 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px,4vw,52px); line-height: 0.95; margin-bottom: 24px; }
  .tech-right p { font-size: clamp(14px,1.3vw,15px); line-height: 1.8; color: rgba(245,245,240,0.55); margin-bottom: 16px; }

  /* FOOTER */
  .footer { padding: clamp(40px,6vw,80px) var(--pad); max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 0.05em; }
  .footer-sub { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-top: 4px; }
  .footer-copy { font-size: 13px; color: var(--gray); }

  /* FADE */
  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 860px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .video-inner { grid-template-columns: 1fr; }
    .try-inner { grid-template-columns: 1fr; }
    .qr-block { flex-direction: row; justify-content: flex-start; }
    .tech-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 540px) {
    .features-grid { grid-template-columns: 1fr; }
    /* highlight-bar removed */
    .qr-block { flex-direction: column; align-items: flex-start; }
  }