:root {
    --navy: #0f1c2e;
    --navy-mid: #162540;
    --blue: #2a5fa5;
    --ice: #b8d4f0;
    --ice-light: #e8f2fc;
    --orange: #f59e2b;
    --white: #ffffff;
    --ping-green: #22c55e;
  }

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

  body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--navy);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
  }

  /* ── ANIMATED BACKGROUND ── */
  .bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, #1e3a5f 0%, var(--navy) 70%);
    overflow: hidden;
  }

  .bg-circles {
    position: absolute;
    inset: 0;
  }

  .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(184, 212, 240, 0.08);
    animation: expandRing 6s linear infinite;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  .ring:nth-child(1) { width: 300px; height: 300px; animation-delay: 0s; }
  .ring:nth-child(2) { width: 600px; height: 600px; animation-delay: 2s; }
  .ring:nth-child(3) { width: 900px; height: 900px; animation-delay: 4s; }
  .ring:nth-child(4) { width: 1200px; height: 1200px; animation-delay: 6s; }
  .ring:nth-child(5) { width: 1600px; height: 1600px; animation-delay: 8s; }

  @keyframes expandRing {
    0%   { transform: translate(-50%,-50%) scale(0); opacity: 0.6; }
    100% { transform: translate(-50%,-50%) scale(1); opacity: 0; }
  }

  /* Floating dots */
  .dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(184, 212, 240, 0.15);
    animation: floatDot linear infinite;
  }
  @keyframes floatDot {
    0%   { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50%  { opacity: 0.7; }
    100% { transform: translateY(-80px) rotate(180deg); opacity: 0; }
  }

  /* ── LAYOUT ── */
  .page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    gap: 0;
  }

  /* ── LOGO BADGE ── */
  .logo-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(184,212,240,0.2);
    border-radius: 100px;
    padding: 8px 20px 8px 12px;
    margin-bottom: 40px;
    animation: fadeUp 0.6s ease both;
    animation-delay: 0.1s;
  }

  .logo-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--ping-green);
    box-shadow: 0 0 8px var(--ping-green);
    animation: pulse 2s ease infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 6px var(--ping-green); }
    50%       { box-shadow: 0 0 14px var(--ping-green), 0 0 24px rgba(34,197,94,0.4); }
  }

  .logo-text {
  	font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ice);
  }

  /* ── HERO ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    width: 100%;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  /* ── HEADLINE ── */
  .headline {
	font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3rem, 7vw, 5.2rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.02em;
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.2s;
  }

  .headline .line1 { color: var(--white); }
  .headline .line2 {
    color: var(--orange);
    position: relative;
    display: inline-block;
  }

  .brand-name {
    display: inline-block;
    transition: transform 0.2s ease;
    cursor: default;
  }
  .brand-name:hover {
    animation: wobble 0.5s ease;
  }
  @keyframes wobble {
    0%   { transform: rotate(0deg); }
    20%  { transform: rotate(-4deg) scale(1.04); }
    40%  { transform: rotate(4deg) scale(1.04); }
    60%  { transform: rotate(-2deg); }
    80%  { transform: rotate(2deg); }
    100% { transform: rotate(0deg); }
  }

  .tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--ice);
    font-weight: 600;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 38ch;
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.35s;
  }

  /* ── EMAIL FORM ── */
  .email-section {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.5s;
  }

  .email-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ice);
    opacity: 0.6;
    margin-bottom: 12px;
  }

  .email-row {
    display: flex;
    gap: 8px;
    max-width: 480px;
  }

  .email-input {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(184,212,240,0.25);
    border-radius: 14px;
    padding: 14px 18px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .email-input::placeholder { color: rgba(184,212,240,0.4); }
  .email-input:focus {
    border-color: var(--ice);
    background: rgba(255,255,255,0.1);
  }

  .notify-btn {
    background: var(--orange);
    color: var(--navy);
    border: none;
    border-radius: 14px;
    padding: 14px 22px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    box-shadow: 0 4px 20px rgba(245,158,43,0.35);
  }
  .notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245,158,43,0.5);
    background: #fbbf24;
  }
  .notify-btn:active { transform: translateY(0); }

  .success-msg {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--ping-green);
    font-weight: 700;
    font-size: 0.95rem;
  }
  .success-msg.show { display: flex; }

  /* ── FEATURES GRID ── */
  .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.65s;
  }

  .feat {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(184,212,240,0.12);
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    cursor: default;
  }
  .feat:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(184,212,240,0.3);
    transform: translateY(-2px);
  }

  .feat-icon {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }

  .feat-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
  }

  .feat-desc {
    font-size: 0.78rem;
    color: var(--ice);
    opacity: 0.6;
    line-height: 1.4;
  }

  /* ── MASCOT ── */
  .mascot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: mascotDrop 0.8s cubic-bezier(0.34,1.56,0.64,1) both;
    animation-delay: 0.3s;
  }

  @keyframes mascotDrop {
    0%   { opacity: 0; transform: translateY(-40px) scale(0.85); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }

  .mascot-wrapper {
    position: relative;
    animation: bobble 6s ease-in-out infinite;
    animation-delay: 1s;
  }

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

  .mascot-img {
    width: 340px;
    max-width: 100%;
    filter: drop-shadow(0 24px 40px rgba(0,0,0,0.5)) drop-shadow(0 0 60px rgba(42,95,165,0.3));
    position: relative;
    z-index: 1;
  }

  /* Ping ripple behind mascot */
  .mascot-ping {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(42,95,165,0.35) 0%, transparent 70%);
    border-radius: 50%;
  }

  /* Speech bubble */
  .speech-bubble {
    position: absolute;
    top: 18px;
    right: -60px;
    background: var(--orange);
    color: var(--navy);
      font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 20px 20px 20px 4px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(245,158,43,0.4);
    animation: bubblePop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
    animation-delay: 1.2s;
    opacity: 0;
    z-index: 10;
  }
  @keyframes bubblePop {
    0%   { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
  }

  /* ── BOTTOM STATUS BAR ── */
  .status-bar {
    margin-top: 56px;
    display: flex;
    align-items: center;
    gap: 28px;
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.8s;
  }

  .status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ice);
    opacity: 0.55;
    letter-spacing: 0.03em;
  }
  .status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ping-green);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 720px) {
    .hero {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .mascot-col { order: -1; }
    .mascot-img { width: 220px; }
    .speech-bubble { right: -20px; }
    .email-row { flex-direction: column; }
    .notify-btn { width: 100%; }
    .features { grid-template-columns: 1fr 1fr; }
    .email-label, .email-row { text-align: left; }
    .status-bar { flex-wrap: wrap; justify-content: center; }
  }