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

  :root {
    --bg: #000000;
    --bg-card: #080808;
    --bg-elevated: #0F0F0F;
    --border: rgba(255, 255, 255, 0.08);
    --border-bright: rgba(255, 255, 255, 0.16);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-tertiary: rgba(255, 255, 255, 0.4);
    --gradient-blue: linear-gradient(135deg, #FFFFFF 0%, #B8D4FF 40%, #4A8FFF 100%);
    --gradient-button: linear-gradient(135deg, #FFFFFF 0%, #B8D4FF 50%, #6EA8FF 100%);
    --accent-blue: #6EA8FF;
    --font: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  }

  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
  }

  /* ===== GLOW BLOBS - the Opal secret sauce ===== */
  .glow {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.5;
  }

  .glow-hero {
    width: 800px;
    height: 800px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(74, 143, 255, 0.5) 0%, rgba(74, 143, 255, 0.1) 40%, transparent 70%);
  }

  .glow-blue {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 143, 255, 0.4) 0%, rgba(74, 143, 255, 0.05) 40%, transparent 70%);
  }

  .glow-cyan {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(110, 168, 255, 0.4) 0%, rgba(110, 168, 255, 0.05) 40%, transparent 70%);
  }

  .glow-purple {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(140, 110, 255, 0.35) 0%, rgba(140, 110, 255, 0.05) 40%, transparent 70%);
  }

  /* Section positioning */
  .section-wrap {
    position: relative;
    overflow: hidden;
  }

  /* ===== Navigation ===== */
  .nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: calc(100% - 24px);
    max-width: 1140px;
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border-bright);
    border-radius: 100px;
    padding: 10px 12px 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

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

  .nav-logo img {
    height: 36px;
    width: auto;
    display: block;
  }

  .nav-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-button);
    color: #0A1633;
    text-decoration: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(74, 143, 255, 0.35);
  }

  .nav-download:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(74, 143, 255, 0.5);
  }

  .nav-download svg { width: 16px; height: 16px; fill: currentColor; }

  /* ===== Hero ===== */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
    z-index: 1;
  }

  .hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.1s forwards;
  }

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

  .rating-stars svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.8);
  }

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

  .hero-rating-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 4px;
  }

  .hero-title {
    font-size: clamp(56px, 11vw, 128px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.045em;
    margin-bottom: 36px;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.3s forwards;
    max-width: 1000px;
  }

  .hero-title-emphasis {
    font-style: italic;
    font-weight: 400;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-subtitle {
    font-size: clamp(17px, 2.2vw, 21px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.5s forwards;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 44px;
    background: var(--gradient-button);
    color: #0A1633;
    text-decoration: none;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
      0 10px 40px rgba(74, 143, 255, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.7s forwards;
    border: none;
    cursor: pointer;
  }

  .cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
      0 20px 60px rgba(74, 143, 255, 0.6),
      0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  }

  .cta-btn svg { width: 22px; height: 22px; fill: currentColor; }

  /* Phone */
  .hero-phone-wrap {
    width: 100%;
    max-width: 380px;
    margin-top: 80px;
    opacity: 0;
    animation: heroFadeIn 1.4s ease 0.9s forwards, phoneFloat 6s ease-in-out 2s infinite;
    perspective: 1500px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
  }

  .hero-phone-inner {
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

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

  .hero-phone {
    width: 100%;
    aspect-ratio: 10 / 19;
    background: #000;
    border-radius: 56px;
    border: 14px solid #1a1a1a;
    box-shadow:
      0 60px 120px rgba(74, 143, 255, 0.25),
      0 30px 80px rgba(0, 0, 0, 0.9),
      0 0 0 1px rgba(255, 255, 255, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
  }

  .hero-phone::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 32px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
  }

  .hero-phone-screen {
    width: 100%;
    height: 100%;
    background:
      radial-gradient(ellipse 60% 40% at 50% 65%, rgba(74, 143, 255, 0.5) 0%, rgba(74, 143, 255, 0.15) 40%, transparent 70%),
      radial-gradient(ellipse 80% 60% at 50% 100%, rgba(74, 143, 255, 0.3) 0%, transparent 60%),
      linear-gradient(180deg, #0F1B4D 0%, #0A1438 50%, #050A20 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 22px 22px;
    position: relative;
  }

  .phone-top-bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 18px;
    align-items: center;
  }

  .phone-bell {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(74, 143, 255, 0.4);
    box-shadow: 0 0 20px rgba(74, 143, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .phone-bell svg { width: 14px; height: 14px; fill: rgba(255, 255, 255, 0.95); }

  .phone-mode {
    padding: 6px 14px;
    background: rgba(74, 143, 255, 0.25);
    border: 1px solid rgba(74, 143, 255, 0.5);
    border-radius: 100px;
    font-size: 11px;
    color: #C5DAFF;
    font-weight: 600;
  }

  .phone-settings { width: 24px; height: 24px; opacity: 0.7; }

  .phone-status-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    font-weight: 500;
  }

  .phone-timer-display {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
    color: #FFFFFF;
  }

  .phone-server-name {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
  }

  .phone-power-btn {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.5) 0%, rgba(74, 222, 128, 0.15) 60%, transparent 100%);
    border: 2.5px solid rgba(74, 222, 128, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
    position: relative;
    box-shadow: 0 0 60px rgba(74, 222, 128, 0.3);
  }

  .phone-power-btn::before,
  .phone-power-btn::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1.5px solid rgba(74, 222, 128, 0.4);
    animation: powerRing 2.5s infinite ease-out;
  }

  .phone-power-btn::after { animation-delay: 1.25s; }

  @keyframes powerRing {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
  }

  .phone-power-btn svg {
    width: 52px;
    height: 52px;
    fill: none;
    stroke: white;
    stroke-width: 2.5;
    stroke-linecap: round;
  }

  .phone-server-card {
    position: absolute;
    bottom: 22px;
    left: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
  }

  .phone-flag-emoji { font-size: 22px; }
  .phone-server-info { flex: 1; text-align: left; }

  .phone-server-title {
    font-size: 13px;
    font-weight: 600;
    color: white;
  }

  .phone-server-status {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
  }

  @keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== Sections ===== */
  section.content {
    padding: 140px 24px;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 20px;
    letter-spacing: 0;
  }

  .section-title {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
  }

  .section-title-italic {
    font-style: italic;
    font-weight: 400;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.55;
  }

  .section-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .section-header .section-description {
    margin-left: auto;
    margin-right: auto;
  }

  /* ===== Features Bento Grid ===== */
  .features-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }

  .feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 40px 36px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }

  /* Gradient border effect - brighter at top, fading down */
  .feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 30%, rgba(255, 255, 255, 0) 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  /* Top inner glow */
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 28px 28px 0 0;
  }

  .feature-card:hover {
    transform: translateY(-4px);
    background: var(--bg-elevated);
  }

  .feature-card > * {
    position: relative;
    z-index: 1;
  }

  /* Bento sizes */
  .feature-large { grid-column: span 4; min-height: 380px; }
  .feature-medium { grid-column: span 2; min-height: 380px; }
  .feature-wide { grid-column: span 3; min-height: 320px; }

  .feature-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(74, 143, 255, 0.2) 0%, rgba(74, 143, 255, 0.05) 100%);
    border: 1px solid rgba(74, 143, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
  }

  .feature-icon-wrap svg {
    width: 32px;
    height: 32px;
    stroke: #A8C5FF;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .feature-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.1;
  }

  .feature-large .feature-title { font-size: 32px; }

  .feature-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  /* ===== Privacy ===== */
  .privacy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .privacy-icon-big {
    width: 96px;
    height: 96px;
    margin: 0 auto 32px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(74, 143, 255, 0.2) 0%, rgba(74, 143, 255, 0.05) 100%);
    border: 1px solid rgba(74, 143, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .privacy-icon-big svg {
    width: 48px;
    height: 48px;
    stroke: #A8C5FF;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .privacy-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .privacy-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-bright);
    border-radius: 100px;
    transition: all 0.3s ease;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
  }

  .privacy-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .privacy-link:hover {
    background: var(--bg-elevated);
    transform: translateY(-1px);
  }

  .privacy-link > * {
    position: relative;
    z-index: 1;
  }

  /* ===== Contact ===== */
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }

  .contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 28px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    text-align: center;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 30%, rgba(255, 255, 255, 0) 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 24px 24px 0 0;
  }

  .contact-card > * {
    position: relative;
    z-index: 1;
  }

  .contact-card:hover {
    background: var(--bg-elevated);
    transform: translateY(-2px);
  }

  .contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(74, 143, 255, 0.2) 0%, rgba(74, 143, 255, 0.05) 100%);
    border: 1px solid rgba(74, 143, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: #A8C5FF;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .contact-label {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .contact-value {
    font-size: 17px;
    font-weight: 600;
  }

  /* ===== Final CTA ===== */
  .final-cta-section {
    padding: 140px 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .final-cta-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
  }

  .final-cta-desc {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 48px;
  }

  /* ===== Footer ===== */
  .footer {
    border-top: 1px solid var(--border);
    padding: 60px 24px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer-logo img {
    height: 64px;
    width: auto;
    opacity: 0.95;
  }

  .footer-text {
    color: var(--text-tertiary);
    font-size: 13px;
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  @media (max-width: 900px) {
    .features-bento { grid-template-columns: 1fr; }
    .feature-large, .feature-medium, .feature-wide { grid-column: span 1; min-height: 280px; }
    .feature-large .feature-title { font-size: 26px; }
    section.content { padding: 100px 20px; }
  }

  @media (max-width: 768px) {
    .hero-phone-wrap { max-width: 300px; margin-top: 60px; }
  }