:root{
  --blue: #013D59;
  --blue-dark: #013D59;  /* same as primary */

  --text: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;

  --shadow: 0 10px 24px rgba(15,23,42,.08);
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  background:#FFFFFF;
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.container{
  max-width:1000px;
  margin:0 auto;
  padding:32px 20px 64px;
}

/* Header */

.header{
  display:flex;
  justify-content:flex-start;
  align-items:center;
  margin-bottom:56px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:var(--blue);
}

.brand:hover{
  opacity:.9;
}

.logo{
  width:60px;
  height:60px;
  object-fit:contain;
}

.brand-name{
  font-weight:500;
  font-size:22px;
  letter-spacing:-0.01em;
  color:var(--blue);
}

/* Hero */

.hero{
  margin-bottom:64px;
}

.hero h1{
  font-size:52px;
  margin:0;
  letter-spacing:-1px;
  line-height:1.05;
  color:var(--blue);
}

.hero-sub{
  margin-top:18px;
  font-size:18px;
  color:var(--muted);
  max-width:740px;
  line-height:1.55;
}

.hero-secondary{
  margin-top:12px;
  font-weight:600;
  line-height:1.5;
  color:var(--blue);
}

.hero-secondary div{
  margin-top:4px;
}

.hero-status{
  margin-top:22px;
}

.status-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border-radius:999px;
  font-weight:600;
  font-size:14px;
  background:var(--blue-dark);
  color:#fff;
  letter-spacing:.01em;
  box-shadow:0 6px 18px rgba(1,61,89,.18);
}

.pricing{
  margin-top:14px;
  font-size:14px;
  color:var(--muted);
}

/* How It Works */

.how{
  margin-bottom:64px;
}

.how-head{
  margin-bottom:10px;
}

.how h2{
  color:var(--blue);
  margin:0 0 10px 0;
}

.how-row{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:28px;
  align-items:center;
  padding:22px 0;
}

.how-row.step2{
  gap:38px;
}

.how-step{
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:8px;
}

.how-copy h3{
  margin:0;
  font-size:18px;
  color:var(--blue);
}

.how-copy p{
  margin-top:10px;
  color:var(--muted);
  line-height:1.6;
}

/* Phone Frame */

.how-media{
  display:flex;
  justify-content:flex-end;
}

.phone-shell{
  max-width:380px;
}

.phone-frame{
  position:relative;
  border-radius:34px;
  padding:14px;
  background:linear-gradient(180deg,#0c1324 0%,#070b15 100%);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:
    0 44px 90px rgba(0,0,0,.30),
    0 22px 44px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.phone-frame::before{
  content:"";
  position:absolute;
  inset:6px;
  border-radius:28px;
  background:radial-gradient(120% 90% at 15% 8%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 60%);
  pointer-events:none;
}

.phone-notch{
  position:absolute;
  top:10px;
  left:50%;
  transform:translateX(-50%);
  width:42%;
  height:18px;
  background:#05070c;
  border-radius:0 0 14px 14px;
  box-shadow:0 1px 0 rgba(255,255,255,.06);
  z-index:3;
}

.phone-screen{
  border-radius:26px;
  overflow:hidden;
  background:#000;
  border:1px solid rgba(255,255,255,.06);
}

.phone-screen img{
  width:100%;
  display:block;
}

/* Desktop Tilts */

.tilt-in-left .phone-shell{
  transform:perspective(1200px) rotateY(-12deg) rotateX(3deg);
  transform-origin:center;
}

.tilt-in-right .phone-shell{
  transform:perspective(1200px) rotateY(12deg) rotateX(3deg);
  transform-origin:center;
}

/* Positioning Section */

.positioning{
  border:1px solid var(--border);
  border-radius:20px;
  padding:28px;
  margin-bottom:56px;
}

.positioning h2{
  color:var(--blue);
  margin:0;
}

.positioning p{
  margin-top:10px;
  color:var(--muted);
  line-height:1.6;
  max-width:820px;
}

/* Footer */

.footer{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  font-size:13px;
  color:var(--muted);
  border-top:1px solid var(--border);
  padding-top:18px;
}

.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.footer-link{
  color:var(--muted);
  text-decoration:none;
}

.footer-link:hover{
  text-decoration:underline;
}

/* Mobile */

@media (max-width:820px){
  .how-row{
    grid-template-columns:1fr;
    gap:16px;
    padding:32px 0;
  }

  .how-copy{ order:1; }
  .how-media{ order:2; }

  .how-media{
    margin-bottom:18px;
    justify-content:flex-start;
  }

  .phone-shell{
    max-width:100%;
    transform:none !important;
  }
}

@media (max-width:600px){
  .hero h1{
    font-size:36px;
  }
}
