@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap');

:root {
  --bg: #070a12;
  --bg-soft: #0b1020;
  --surface: rgba(18, 24, 43, .72);
  --surface-strong: #11182b;
  --border: rgba(255,255,255,.09);
  --text: #f7f8fc;
  --muted: #a8b0c3;
  --primary: #8b7cff;
  --primary-2: #5b9cff;
  --cyan: #75e8ff;
  --success: #6fe6b3;
  --warning: #ffca72;
  --shadow: 0 28px 80px rgba(0,0,0,.38);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(91,156,255,.13), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(139,124,255,.16), transparent 34rem),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
              linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7, 10, 18, .68);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  background: rgba(7, 10, 18, .86);
}

.nav-wrap {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand img {
  filter: drop-shadow(0 8px 18px rgba(91,156,255,.25));
}

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav a, .footer-links a {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
  transition: color .2s ease;
}

.nav a:hover, .footer-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-picker select {
  appearance: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.045) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='m1 1 4 4 4-4' fill='none' stroke='%23bbc2d4' stroke-width='1.4'/%3E%3C/svg%3E") right 11px center/10px 6px no-repeat;
  padding: 9px 30px 9px 12px;
  font-size: .84rem;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.language-picker select:focus {
  border-color: rgba(139,124,255,.7);
  box-shadow: 0 0 0 3px rgba(139,124,255,.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 750;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 30px rgba(91,156,255,.2);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(91,156,255,.3);
}

.button-small {
  padding: 10px 14px;
  font-size: .84rem;
}

.button-large {
  padding: 13px 19px;
  min-height: 60px;
}

.button-large svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.button-large span {
  display: grid;
  text-align: left;
  gap: 1px;
}

.button-large small {
  font-size: .66rem;
  font-weight: 500;
  opacity: .82;
}

.button-large strong {
  font-size: 1.04rem;
  letter-spacing: -.015em;
}

.store-disabled {
  opacity: .7;
  pointer-events: none;
}

.hero {
  padding-top: 92px;
  min-height: 740px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c9d0df;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(111,230,179,.11), 0 0 18px rgba(111,230,179,.5);
}

h1, h2, h3 {
  font-family: Manrope, Inter, sans-serif;
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.hero h1 {
  margin: 20px 0 24px;
  font-size: clamp(3.5rem, 6vw, 6.2rem);
  max-width: 760px;
}

.gradient-text {
  background: linear-gradient(110deg, #fff 0%, #b9c9ff 38%, #8edfff 70%, #a998ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7dbea;
  font-weight: 700;
}

.text-link:hover { color: white; }

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: #8f98ab;
  font-size: .84rem;
}

.check {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(111,230,179,.1);
  color: var(--success);
  font-size: .74rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  opacity: .36;
}

.glow-a {
  width: 320px;
  height: 320px;
  background: var(--primary-2);
  top: 11%;
  left: 8%;
}

.glow-b {
  width: 280px;
  height: 280px;
  background: var(--primary);
  right: 0;
  bottom: 6%;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(365px, 82vw);
  min-height: 590px;
  padding: 10px;
  border-radius: 42px;
  background: linear-gradient(145deg, #252c42, #0b0f1c 46%, #30364d);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 45px 100px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.04);
  transform: rotate(1.8deg);
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 22px;
  border-radius: 999px;
  background: #05070c;
  z-index: 4;
}

.phone-bar {
  height: 42px;
  padding: 10px 17px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #d9deed;
  font-size: .66rem;
  font-weight: 800;
}

.status-icons { display: flex; gap: 6px; }

.phone-content {
  position: relative;
  min-height: 528px;
  overflow: hidden;
  padding: 22px 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0, rgba(126,112,255,.16), transparent 45%),
    #0b0f1a;
}

.phone-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.phone-kicker {
  color: #768199;
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}

.phone-title-row h2 {
  margin-top: 4px;
  font-size: 1.55rem;
  letter-spacing: -.04em;
}

.moon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #c8c1ff;
  background: rgba(139,124,255,.13);
  border: 1px solid rgba(139,124,255,.18);
  font-size: 1.3rem;
}

.sim-card {
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 19px;
  border: 1px solid rgba(255,255,255,.075);
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.sim-card-two {
  background: rgba(121,112,255,.065);
}

.sim-card-top, .sim-id, .schedule-row {
  display: flex;
  align-items: center;
}

.sim-card-top { justify-content: space-between; gap: 10px; }
.sim-id { gap: 10px; }

.sim-number {
  width: 32px;
  height: 38px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: linear-gradient(145deg, #688dff, #806df0);
  font-size: .83rem;
  font-weight: 900;
}

.sim-number::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 15px;
  height: 15px;
  background: rgba(0,0,0,.22);
  transform: rotate(45deg);
}

.sim-id div { display: grid; gap: 0; }
.sim-id strong { font-size: .88rem; }
.sim-id small { color: #7f899d; font-size: .67rem; }

.status-pill {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: .63rem;
  font-weight: 800;
}

.status-on {
  color: #8ff0c6;
  background: rgba(111,230,179,.09);
  border: 1px solid rgba(111,230,179,.16);
}

.status-snooze {
  color: #d2c8ff;
  background: rgba(139,124,255,.1);
  border: 1px solid rgba(139,124,255,.17);
}

.schedule-row {
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #7d879b;
  font-size: .68rem;
}

.schedule-row strong {
  color: #bac2d2;
  font-weight: 700;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.quick-actions button {
  min-height: 58px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 15px;
  background: rgba(255,255,255,.035);
  pointer-events: none;
}

.quick-actions button span { font-weight: 800; font-size: .9rem; }
.quick-actions button small { color: #7e889d; font-size: .62rem; }

.next-rule {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 15px;
  padding: 13px;
  border-radius: 15px;
  background: rgba(255,255,255,.025);
  color: #7e889d;
}

.next-rule-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(117,232,255,.08);
  color: var(--cyan);
}

.next-rule div { display: grid; }
.next-rule small { font-size: .61rem; }
.next-rule strong { color: #aeb6c8; font-size: .65rem; margin-top: 2px; }

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 155px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(16,22,39,.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 35px rgba(0,0,0,.32);
}

.floating-left { left: -4%; bottom: 20%; }
.floating-right { right: -6%; top: 24%; }

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(139,124,255,.18), rgba(91,156,255,.16));
  color: #bcb3ff;
}

.floating-card div { display: grid; }
.floating-card small { color: #7f899d; font-size: .62rem; }
.floating-card strong { font-size: .7rem; margin-top: 1px; }

.trust-strip {
  border-block: 1px solid var(--border);
  background: rgba(255,255,255,.018);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: grid;
  gap: 4px;
  min-height: 106px;
  align-content: center;
  padding: 18px 28px;
  border-right: 1px solid var(--border);
}

.trust-grid > div:first-child { border-left: 1px solid var(--border); }
.trust-grid strong { font-size: .85rem; }
.trust-grid span { color: #7f899d; font-size: .74rem; }

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-top: 15px;
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

.section-heading p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(139,124,255,.08);
  filter: blur(5px);
}

.feature-large { grid-column: span 1; }

.feature-wide {
  grid-column: span 2;
  min-height: 270px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 30px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(139,124,255,.14), rgba(91,156,255,.09));
  border: 1px solid rgba(139,124,255,.16);
  color: #c7c0ff;
  font-weight: 800;
}

.feature-card h3 {
  position: relative;
  z-index: 2;
  max-width: 360px;
  font-size: 1.32rem;
}

.feature-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: var(--muted);
  font-size: .91rem;
}

.mini-sims {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.mini-sims span {
  width: 80px;
  height: 48px;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 13px;
  border: 1px solid rgba(111,230,179,.16);
  background: rgba(111,230,179,.05);
}

.mini-sims b {
  width: 25px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, #607fff, #806ff2);
  font-size: .68rem;
}

.mini-sims i {
  width: 15px;
  height: 7px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 12px rgba(111,230,179,.28);
}

.mini-sims .mini-sim-muted {
  opacity: .5;
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}

.mini-sims .mini-sim-muted i {
  background: #7d8596;
  box-shadow: none;
}

.timeline {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  background: rgba(0,0,0,.13);
}

.timeline-hours, .timeline-labels {
  display: flex;
  justify-content: space-between;
  color: #657086;
  font-size: .65rem;
}

.timeline-track {
  position: relative;
  display: flex;
  height: 16px;
  overflow: hidden;
  margin: 12px 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.timeline-sleep { width: 20%; background: rgba(139,124,255,.22); }
.timeline-active { width: 60%; background: linear-gradient(90deg, #7b76ff, #59a2ff, #6ed9f2); }
.timeline-end { width: 20%; }

.timeline-labels {
  color: #9ba5b8;
  font-weight: 700;
}

.how-section {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent);
}

.how-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 130px;
}

.steps {
  display: grid;
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 35px 0;
  border-bottom: 1px solid var(--border);
}

.step:first-child { border-top: 1px solid var(--border); }

.step-number {
  color: #6f7890;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: .8rem;
}

.step h3 { font-size: 1.4rem; }

.step p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: .93rem;
}

.compatibility-section { padding-top: 30px; }

.compatibility-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  padding: clamp(35px, 6vw, 70px);
  border-radius: 32px;
  border: 1px solid rgba(117,232,255,.12);
  background:
    radial-gradient(circle at 100% 0, rgba(117,232,255,.08), transparent 40%),
    radial-gradient(circle at 0 100%, rgba(139,124,255,.09), transparent 38%),
    rgba(255,255,255,.027);
}

.compatibility-card h2 {
  max-width: 600px;
  margin-top: 14px;
  font-size: clamp(2rem, 3.3vw, 3.3rem);
}

.compatibility-card > div > p {
  color: var(--muted);
  max-width: 620px;
}

.compatibility-points {
  display: grid;
  gap: 16px;
}

.compatibility-points > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  background: rgba(0,0,0,.09);
}

.compatibility-points span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(111,230,179,.08);
  color: var(--success);
  font-weight: 900;
}

.compatibility-points p {
  margin: 1px 0 0;
  color: #b5bdcc;
  font-size: .88rem;
}

.faq-list {
  max-width: 860px;
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 21px;
  color: #8993a8;
  font-size: 1.3rem;
  transition: transform .2s ease;
}

.faq-list details[open] summary::after { transform: rotate(45deg); }

.faq-list details p {
  max-width: 720px;
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: .91rem;
}

.final-cta { padding-top: 60px; }

.cta-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(60px, 9vw, 100px) 25px;
  border: 1px solid rgba(139,124,255,.16);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 0, rgba(91,156,255,.18), transparent 43%),
    radial-gradient(circle at 15% 100%, rgba(139,124,255,.12), transparent 37%),
    rgba(255,255,255,.025);
}

.cta-card > img {
  margin: 0 auto 22px;
  filter: drop-shadow(0 20px 30px rgba(91,156,255,.25));
}

.cta-card h2 {
  margin: 15px auto;
  max-width: 850px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.cta-card p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.cta-card .button { margin: auto; }

.site-footer {
  padding: 30px 0 42px;
  color: #737d92;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.footer-brand { color: #ced3df; }
.footer-grid p { margin: 0; text-align: center; font-size: .76rem; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: .76rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.noscript {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  padding: 14px;
  text-align: center;
  border-radius: 12px;
  background: #231b17;
  color: white;
  border: 1px solid #5f4636;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay { transition-delay: .12s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .hero { padding-top: 60px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    text-align: center;
  }
  .hero-copy { display: grid; justify-items: center; }
  .hero-lead { max-width: 760px; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 620px; }
  .floating-left { left: 10%; }
  .floating-right { right: 10%; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid > div:first-child,
  .trust-grid > div:nth-child(3) { border-left: 1px solid var(--border); }
  .trust-grid > div:nth-child(1),
  .trust-grid > div:nth-child(2) { border-bottom: 1px solid var(--border); }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .feature-wide { grid-column: span 2; }
  .how-grid { grid-template-columns: 1fr; gap: 30px; }
  .sticky-heading { position: static; }
  .compatibility-card { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 80px 0; }
  .site-header .button-small { display: none; }
  .nav-wrap { min-height: 66px; gap: 12px; }
  .brand { font-size: .98rem; }
  .brand img { width: 33px; height: 33px; }
  .language-picker select { padding-block: 8px; }

  .hero { padding-top: 48px; min-height: 0; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 16px; }
  .hero-note { align-items: flex-start; text-align: left; max-width: 350px; }

  .hero-visual { min-height: 555px; margin-top: 4px; }
  .phone-shell { width: 326px; min-height: 540px; }
  .phone-content { min-height: 480px; padding: 18px 15px; }
  .floating-card { display: none; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 86px; border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .trust-grid > div:last-child { border-bottom: 0; }

  .section-heading { margin-bottom: 36px; }
  .section-heading h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-wide { grid-column: auto; }
  .feature-wide { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }

  .step { grid-template-columns: 48px 1fr; gap: 14px; padding: 27px 0; }

  .compatibility-card { padding: 30px 22px; border-radius: 25px; }
  .compatibility-card h2 { font-size: 2.15rem; }

  .cta-card { border-radius: 27px; }
  .cta-card h2 { font-size: 2.55rem; }

  .footer-grid { grid-template-columns: 1fr; justify-items: center; }
  .footer-grid p { order: 3; }
}

@media (max-width: 380px) {
  .brand span { display: none; }
  .phone-shell { width: 300px; }
}


/* Refined app icon */
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  filter: drop-shadow(0 8px 18px rgba(91, 120, 255, .22));
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

/* Google Play badge */
.play-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
  min-height: 58px;
  padding: 9px 17px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: #090b10;
  color: #fff;
  box-shadow:
    0 10px 26px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.play-store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.32);
  box-shadow:
    0 16px 34px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.play-store-icon {
  width: 27px;
  flex: 0 0 27px;
}

.play-store-icon svg {
  width: 27px;
  height: 31px;
}

.play-store-copy {
  display: grid;
  gap: 0;
  text-align: left;
  line-height: 1.05;
}

.play-store-copy small {
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .015em;
  opacity: .86;
}

.play-store-copy strong {
  margin-top: 3px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -.025em;
}

.cta-card .play-store-badge {
  margin-inline: auto;
}

.store-disabled.play-store-badge {
  opacity: .62;
  pointer-events: none;
}

@media (max-width: 680px) {
  .brand img {
    width: 37px;
    height: 37px;
  }

  .play-store-badge {
    min-width: 190px;
  }
}


/* =========================================================
   Official SIMSnooze artwork integration
   ========================================================= */

.brand-icon-frame {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: block;
  overflow: hidden;
  border-radius: 11px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 8px 24px rgba(0,0,0,.24),
    0 0 24px rgba(32,145,255,.09);
}

.brand-icon-frame picture,
.brand-icon-frame img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-icon-frame img {
  object-fit: cover;
  transform: scale(1.22);
}

.brand-icon-frame-small {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  border-radius: 9px;
}

.brand > .brand-icon-frame + span {
  margin-left: 0;
}

.hero-brand-visual {
  min-height: 610px;
  isolation: isolate;
}

.hero-brand-visual .glow-a {
  width: 360px;
  height: 360px;
  left: 2%;
  top: 6%;
  opacity: .30;
  background: #0787ff;
}

.hero-brand-visual .glow-b {
  width: 320px;
  height: 320px;
  right: -4%;
  bottom: 3%;
  opacity: .30;
  background: #7e5cff;
}

.official-ad-card {
  position: relative;
  z-index: 2;
  width: min(500px, 100%);
  margin: 0;
  transform: rotate(1.2deg);
  filter: drop-shadow(0 42px 64px rgba(0,0,0,.42));
}

.official-ad-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22.5%;
  border: 1px solid rgba(255,255,255,.13);
  pointer-events: none;
  z-index: 2;
}

.official-ad-card picture,
.official-ad-card img {
  display: block;
  width: 100%;
}

.official-ad-card img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22.5%;
}

.official-icon-chip {
  position: absolute;
  z-index: 4;
  left: -3%;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 14px 9px 9px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(10,16,31,.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
}

.official-icon-chip-image {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.16);
}

.official-icon-chip-image picture,
.official-icon-chip-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.official-icon-chip-image img {
  object-fit: cover;
  transform: scale(1.18);
}

.official-icon-chip > div {
  display: grid;
  gap: 1px;
}

.official-icon-chip strong {
  font-size: .82rem;
  letter-spacing: -.015em;
}

.official-icon-chip small {
  color: #8d98ae;
  font-size: .65rem;
}

.cta-app-icon {
  width: 94px;
  height: 94px;
  display: block;
  overflow: hidden;
  margin: 0 auto 25px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(255,255,255,.17);
  box-shadow:
    0 20px 48px rgba(0,0,0,.26),
    0 0 42px rgba(47,142,255,.12);
}

.cta-app-icon picture,
.cta-app-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.cta-app-icon img {
  object-fit: cover;
  transform: scale(1.16);
}

/* Neutralize old direct IMG rules now that brand graphics are wrapped. */
.brand > img,
.footer-brand > img,
.cta-card > img {
  display: none;
}

@media (max-width: 980px) {
  .hero-brand-visual {
    min-height: 590px;
  }

  .official-ad-card {
    width: min(520px, 88vw);
  }

  .official-icon-chip {
    left: 8%;
    bottom: 5%;
  }
}

@media (max-width: 680px) {
  .brand-icon-frame {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
    border-radius: 10px;
  }

  .hero-brand-visual {
    min-height: auto;
    padding: 20px 0 28px;
  }

  .official-ad-card {
    width: min(470px, 94vw);
    transform: rotate(.4deg);
  }

  .official-icon-chip {
    display: none;
  }

  .cta-app-icon {
    width: 84px;
    height: 84px;
    border-radius: 21px;
  }
}


/* =========================================================
   Hero fix: phone mockup returns, with official artwork inside
   ========================================================= */

.hero-phone-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-phone-visual .glow-a {
  width: 300px;
  height: 300px;
  background: rgba(30, 135, 255, .95);
  opacity: .26;
  left: 4%;
  top: 10%;
}

.hero-phone-visual .glow-b {
  width: 300px;
  height: 300px;
  background: rgba(139, 124, 255, .95);
  opacity: .24;
  right: 2%;
  bottom: 8%;
}

.official-phone-shell {
  position: relative;
  z-index: 2;
  width: min(392px, 84vw);
  min-height: 720px;
  padding: 10px;
  border-radius: 46px;
  background:
    linear-gradient(145deg, #242b41 0%, #0b0f1c 46%, #303750 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 48px 90px rgba(0,0,0,.58),
    inset 0 0 0 1px rgba(255,255,255,.04);
  transform: rotate(1.8deg);
}

.official-phone-shell::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 23px;
  border-radius: 999px;
  background: #06080d;
  z-index: 5;
}

.official-phone-screen {
  position: relative;
  min-height: 656px;
  padding: 0;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 0, rgba(126,112,255,.10), transparent 45%),
    #09101e;
}

.official-phone-screen picture,
.official-phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
}

.official-phone-screen img {
  min-height: 656px;
  object-fit: cover;
  object-position: center top;
  background: #05070d;
}

.floating-card-brand {
  left: -2%;
  bottom: 9%;
}

.floating-icon-brand {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.floating-icon-brand picture,
.floating-icon-brand img {
  width: 100%;
  height: 100%;
  display: block;
}

.floating-icon-brand img {
  object-fit: cover;
  transform: scale(1.16);
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
    gap: 52px;
  }

  .official-phone-shell {
    width: min(360px, 84vw);
    min-height: 664px;
  }

  .official-phone-screen {
    min-height: 600px;
  }

  .official-phone-screen img {
    min-height: 600px;
  }
}

@media (max-width: 980px) {
  .hero-phone-visual {
    min-height: 660px;
  }

  .official-phone-shell {
    transform: rotate(.85deg);
  }

  .floating-card-brand {
    left: 6%;
    bottom: 7%;
  }

  .floating-right {
    right: 8%;
    top: 20%;
  }
}

@media (max-width: 680px) {
  .hero-phone-visual {
    min-height: 560px;
    padding-top: 10px;
  }

  .official-phone-shell {
    width: min(318px, 82vw);
    min-height: 585px;
    border-radius: 38px;
  }

  .official-phone-screen {
    min-height: 526px;
    border-radius: 28px;
  }

  .official-phone-screen img {
    min-height: 526px;
    object-position: center top;
  background: #05070d;
  }

  .floating-right {
    display: none;
  }

  .floating-card-brand {
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
  }
}

@media (max-width: 430px) {
  .official-phone-shell {
    width: min(294px, 82vw);
    min-height: 548px;
  }

  .official-phone-screen {
    min-height: 490px;
  }

  .official-phone-screen img {
    min-height: 490px;
  }

  .floating-card-brand {
    padding: 8px 11px 8px 8px;
    min-width: 148px;
  }
}


/* Real app screenshot inside hero phone */
.official-phone-screen {
  background: #05070d;
}

.official-phone-screen img {
  background: #05070d;
  object-fit: cover;
  object-position: center top;
}


/* =========================================================
   Final hero: real SIMSnooze app screenshot, uncropped
   ========================================================= */
.hero-phone-visual {
  min-height: 790px;
}

.official-phone-shell {
  width: min(366px, 82vw);
  min-height: 0;
  padding: 10px;
  border-radius: 46px;
}

.official-phone-shell .phone-bar {
  height: 46px;
}

.official-phone-screen {
  min-height: 0 !important;
  aspect-ratio: 853 / 1844;
  border-radius: 34px;
  overflow: hidden;
  background: #05070d;
}

.official-phone-screen picture {
  display: block;
  width: 100%;
  height: 100%;
}

.official-phone-screen img {
  display: block;
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #05070d;
}

@media (max-width: 1180px) {
  .official-phone-shell {
    width: min(346px, 82vw);
    min-height: 0;
  }

  .official-phone-screen {
    min-height: 0 !important;
  }
}

@media (max-width: 980px) {
  .hero-phone-visual {
    min-height: 760px;
  }

  .official-phone-shell {
    width: min(340px, 78vw);
  }
}

@media (max-width: 680px) {
  .hero-phone-visual {
    min-height: 690px;
    padding-bottom: 0;
  }

  .official-phone-shell {
    width: min(310px, 80vw);
    min-height: 0;
    border-radius: 39px;
  }

  .official-phone-screen {
    min-height: 0 !important;
    border-radius: 29px;
  }
}

@media (max-width: 430px) {
  .hero-phone-visual {
    min-height: 640px;
  }

  .official-phone-shell {
    width: min(286px, 80vw);
    min-height: 0;
  }
}


/* =========================================================
   Compact hero phone: reduced app whitespace
   ========================================================= */
.hero-phone-visual {
  min-height: 650px;
}

.official-phone-shell {
  width: min(360px, 82vw);
  min-height: 0 !important;
}

.official-phone-screen {
  min-height: 0 !important;
  aspect-ratio: 853 / 1344 !important;
}

.official-phone-screen img {
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: contain !important;
}

@media (max-width: 1180px) {
  .hero-phone-visual {
    min-height: 625px;
  }

  .official-phone-shell {
    width: min(340px, 80vw);
  }
}

@media (max-width: 980px) {
  .hero-phone-visual {
    min-height: 610px;
  }

  .official-phone-shell {
    width: min(335px, 78vw);
  }
}

@media (max-width: 680px) {
  .hero-phone-visual {
    min-height: 565px;
  }

  .official-phone-shell {
    width: min(305px, 80vw);
  }
}

@media (max-width: 430px) {
  .hero-phone-visual {
    min-height: 525px;
  }

  .official-phone-shell {
    width: min(282px, 80vw);
  }
}
