/* ============================================================
   phone(2)rent — design system
   Canvas: near-black · Ink: warm off-white · Accent: volt
   Type: Archivo (display/body) · Doto (dot-matrix numerals)
         Space Mono (technical labels)
   ============================================================ */

:root {
  --ink: #0a0a0c;
  --panel: #121216;
  --panel-2: #17171c;
  --line: rgba(244, 244, 240, 0.1);
  --paper: #f4f4f0;
  --dim: #8a8a93;
  --volt: #c9ff2f;
  --volt-dim: rgba(201, 255, 47, 0.12);
  --indigo: #4252ff;
  --radius: 20px;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-doto: "Doto", "Space Mono", monospace;
  --font-mono: "Space Mono", "Courier New", monospace;
  --container: 1200px;
  --pad: clamp(20px, 4vw, 48px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--volt); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); }
.container--narrow { max-width: 860px; }

.mono { font-family: var(--font-mono); }
.doto { font-family: var(--font-doto); font-weight: 900; }
.dim { color: var(--dim); }

/* ---------- atmosphere ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 4; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain-shift 0.9s steps(2) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(1.5%, -1%); }
  100% { transform: translate(-1%, 1.5%); }
}

.glow {
  position: fixed; z-index: 0; pointer-events: none;
  width: 60vw; height: 60vw; border-radius: 50%;
  filter: blur(120px); opacity: 0.14;
}
.glow--a { top: -25vw; right: -20vw; background: var(--indigo); }
.glow--b { bottom: -30vw; left: -22vw; background: var(--volt); opacity: 0.07; }

main { position: relative; z-index: 1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 16px; letter-spacing: 0.01em;
  padding: 16px 30px; border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.25s;
  will-change: transform;
}
.btn--volt {
  background: var(--volt); color: var(--ink);
  box-shadow: 0 0 0 0 rgba(201, 255, 47, 0);
}
.btn--volt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px -8px rgba(201, 255, 47, 0.55);
}
.btn--ghost {
  border-color: var(--line); color: var(--paper);
  background: rgba(244, 244, 240, 0.03);
}
.btn--ghost:hover { border-color: var(--paper); transform: translateY(-2px); }
.btn--ghost .arrow { transition: transform 0.25s; display: inline-block; }
.btn--ghost:hover .arrow { transform: translateX(4px); }
.btn--sm { padding: 11px 22px; font-size: 14px; }
.btn--lg { padding: 20px 44px; font-size: 18px; }
.btn:active { transform: scale(0.96); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--container); margin: 0 auto; padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  font-weight: 800; font-size: 21px; letter-spacing: -0.02em;
  font-variation-settings: "wdth" 110;
  white-space: nowrap;
}
.logo__two { font-family: var(--font-doto); font-weight: 900; color: var(--volt); font-size: 0.92em; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 15px; font-weight: 500; color: var(--dim);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--paper); }
.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav__burger {
  display: none; flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
}
.nav__burger span {
  width: 24px; height: 2px; background: var(--paper);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 8px;
  padding: 12px var(--pad) 28px;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a { padding: 10px 0; font-size: 17px; font-weight: 600; }
.mobile-menu .btn { justify-content: center; margin-top: 10px; }
.mobile-menu.open { display: flex; }
@media (min-width: 721px) {
  .mobile-menu { display: none !important; }
}

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 100;
  background: var(--volt); color: var(--ink);
  font-weight: 700; font-size: 14px;
  padding: 12px 20px; border-radius: 999px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__watermark {
  position: absolute; z-index: 0;
  right: -6vw; top: 50%; transform: translateY(-50%);
  font-family: var(--font-doto); font-weight: 900;
  font-size: clamp(240px, 34vw, 480px);
  line-height: 1; color: rgba(244, 244, 240, 0.045);
  user-select: none;
}
.hero__grid {
  position: relative; z-index: 1;
  width: 100%;
}
.eyebrow {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em;
  color: var(--volt); margin-bottom: 26px;
}
.hero__title {
  font-size: clamp(52px, 8.2vw, 118px);
  line-height: 0.95; letter-spacing: -0.03em;
  font-weight: 900; font-variation-settings: "wdth" 115;
  text-transform: uppercase;
  display: flex; flex-direction: column;
}
.hero__title-volt { color: var(--volt); }
.hero__title em { font-style: normal; font-family: var(--font-doto); font-size: 0.5em; vertical-align: super; }
.hero__sub {
  margin-top: 30px; max-width: 460px;
  font-size: clamp(17px, 1.5vw, 20px); color: var(--dim);
}
.hero__sub strong { color: var(--paper); font-size: 1.25em; }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero__chips {
  margin-top: 42px; display: flex; flex-wrap: wrap; gap: 10px; list-style: none;
}
.hero__chips li {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--dim);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
}
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.3em; color: var(--dim);
}
.hero__scroll span { display: inline-block; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

.hero__copy { position: relative; z-index: 2; }
.hero__copy > * { pointer-events: none; }
.hero__copy a, .hero__copy .btn { pointer-events: auto; }

/* phone mockups */
.hero__stage {
  position: absolute; z-index: 1;
  right: clamp(0px, 3vw, 60px); top: 50%;
  transform: translateY(-54%);
  display: flex; justify-content: center;
  perspective: 1200px;
}
.js .hero__stage.reveal { transform: translateY(calc(-54% + 28px)); }
.js .hero__stage.reveal.in { transform: translateY(-54%); }
.phone { position: relative; }
.phone--front { z-index: 2; animation: float 7s ease-in-out infinite; }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}
.hero__phone {
  width: clamp(320px, 34vw, 470px); height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, #000 52%, transparent 76%);
  mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, #000 52%, transparent 76%);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}
.phone__tag {
  margin-top: 4px; text-align: center;
  font-size: 12px; letter-spacing: 0.06em; color: var(--dim);
}
.phone__tag b { color: var(--volt); font-size: 1.3em; }

/* ---------- ticker ---------- */
.ticker {
  border-block: 1px solid var(--line);
  background: rgba(201, 255, 47, 0.03);
  overflow: hidden; white-space: nowrap;
  padding: 16px 0;
  position: relative; z-index: 1;
}
.ticker__track {
  display: inline-flex; align-items: center; gap: 28px;
  animation: ticker 28s linear infinite;
  padding-right: 28px;
}
.ticker__track span {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.18em;
  color: var(--paper);
}
.ticker__track i { color: var(--volt); font-style: normal; font-size: 9px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: clamp(90px, 11vw, 150px) 0; position: relative; }
.section--line { border-top: 1px solid var(--line); }
.section__head { margin-bottom: clamp(44px, 6vw, 72px); max-width: 720px; position: relative; }
.section__head::after {
  content: ""; display: block; height: 1px; margin-top: 30px;
  background: linear-gradient(90deg, var(--volt), rgba(201, 255, 47, 0.06));
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.js .section__head:not(.in)::after { transform: scaleX(0); }
.section__title {
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.02; letter-spacing: -0.025em;
  font-weight: 900; font-variation-settings: "wdth" 112;
  text-wrap: balance;
}
.section__sub { margin-top: 18px; color: var(--dim); font-size: 18px; max-width: 560px; text-wrap: pretty; }

/* ---------- fleet ---------- */
.fleet {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.15s ease-out;
  transform-style: preserve-3d;
}
.card:hover {
  border-color: rgba(201, 255, 47, 0.45);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7), 0 0 60px -20px rgba(201, 255, 47, 0.18);
}
.card__stage {
  height: 250px;
  margin-bottom: 22px; border-radius: 14px;
  background: var(--panel-2);
  overflow: hidden;
}
.card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover .card__img { transform: scale(1.05); }

.card__brand { font-size: 11px; letter-spacing: 0.22em; color: var(--dim); }
.card__name { font-size: 24px; font-weight: 800; letter-spacing: -0.01em; margin-top: 6px; }
.card__line { color: var(--dim); font-size: 15px; margin-top: 6px; min-height: 2.6em; }
.card__row {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.card__price { font-size: 14px; color: var(--dim); }
.card__price strong { font-size: 26px; color: var(--volt); margin: 0 2px; }
.card__price span { font-size: 13px; }
.card__cta {
  font-size: 12px; letter-spacing: 0.12em; color: var(--paper);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  padding: 13px 14px; margin: -13px -14px;
}
.card__cta:hover { color: var(--volt); border-color: var(--volt); }

.fleet__note { margin-top: 36px; font-size: 13px; color: var(--dim); letter-spacing: 0.04em; }
.fleet__note a { color: var(--volt); }
.fleet__note a:hover { text-decoration: underline; }

/* ---------- steps ---------- */
.steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; counter-reset: step;
}
.step {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px 38px;
  background: linear-gradient(180deg, rgba(244, 244, 240, 0.025), transparent);
  position: relative;
}
.step__num {
  font-size: 64px; line-height: 1; color: var(--volt);
  display: block; margin-bottom: 22px;
}
.step h3 { font-size: 23px; font-weight: 800; letter-spacing: -0.01em; }
.step p { margin-top: 10px; color: var(--dim); font-size: 15.5px; }

/* ---------- bento ---------- */
.bento {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.bento__cell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: border-color 0.3s, transform 0.3s;
}
.bento__cell:hover { border-color: rgba(244, 244, 240, 0.25); transform: translateY(-4px); }
.bento__cell--big {
  grid-row: span 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  background:
    radial-gradient(120% 90% at 90% -10%, rgba(66, 82, 255, 0.22), transparent 55%),
    var(--panel);
}
.bento__stat { font-size: clamp(80px, 8vw, 130px); line-height: 1; color: var(--volt); }
.bento__cell h3 { font-size: 21px; font-weight: 800; margin-top: 14px; letter-spacing: -0.01em; }
.bento__cell p { color: var(--dim); font-size: 15px; margin-top: 8px; }
.bento__icon { font-size: 26px; color: var(--volt); display: block; }
.bento__cell--volt {
  background: var(--volt); border-color: var(--volt);
  color: var(--ink);
}
.bento__cell--volt h3 { color: var(--ink); margin-top: 0; }
.bento__cell--volt p { color: rgba(10, 10, 12, 0.72); }
.bento__cell--volt .card__cta { color: var(--ink); display: inline-block; margin-top: 16px; font-weight: 700; }
.bento__cell--volt .card__cta:hover { border-color: var(--ink); }
.bento__cell--volt:hover { border-color: var(--volt); }

/* ---------- stats ---------- */
.stats {
  border-block: 1px solid var(--line);
  padding: clamp(50px, 6vw, 80px) 0;
  background: rgba(244, 244, 240, 0.015);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 10px; }
.stat__num { font-size: clamp(44px, 5vw, 72px); line-height: 1; color: var(--paper); white-space: nowrap; }
.stat__label { font-size: 11px; letter-spacing: 0.22em; color: var(--dim); }

/* ---------- business ---------- */
.biz {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 80px);
  align-items: center;
  background:
    radial-gradient(100% 120% at 100% 0%, rgba(66, 82, 255, 0.16), transparent 55%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 72px);
}
.biz__list { list-style: none; margin: 26px 0 34px; display: grid; gap: 12px; }
.biz__list li { font-size: 13px; letter-spacing: 0.06em; color: var(--dim); }
.biz__visual { position: relative; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.biz__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.biz__grid i {
  width: 54px; aspect-ratio: 9 / 18; border-radius: 10px;
  background: var(--panel-2);
  border: 1px solid var(--line);
}
.biz__grid i.on {
  background: linear-gradient(160deg, rgba(201, 255, 47, 0.7), rgba(201, 255, 47, 0.2));
  border-color: var(--volt);
  box-shadow: 0 0 30px -6px rgba(201, 255, 47, 0.6);
}
.biz__count { font-size: 40px; color: var(--volt); }

/* ---------- faq ---------- */
.faq { display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--line); border-radius: 16px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item[open] { border-color: rgba(201, 255, 47, 0.4); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__x {
  font-family: var(--font-mono); color: var(--volt); font-size: 20px;
  transition: transform 0.3s; flex-shrink: 0;
}
.faq__item[open] .faq__x { transform: rotate(45deg); }
.faq__item p {
  padding: 0 26px 24px; color: var(--dim); font-size: 15.5px; max-width: 640px;
}

/* ---------- outro ---------- */
.outro {
  padding: clamp(100px, 13vw, 180px) 0 0;
  text-align: center; overflow: hidden;
  border-top: 1px solid var(--line);
}
.outro__inner { display: flex; flex-direction: column; align-items: center; }
.outro__title {
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 1; letter-spacing: -0.03em;
  font-weight: 900; font-variation-settings: "wdth" 115;
  text-transform: uppercase;
  margin-bottom: 44px;
}
.outro__volt { color: var(--volt); }
.outro__marquee {
  margin-top: clamp(70px, 9vw, 120px);
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--line);
  padding: 18px 0;
  opacity: 0.35;
}
.outro__marquee-track {
  display: inline-flex;
  animation: ticker 20s linear infinite;
  font-size: clamp(28px, 4vw, 54px);
}

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 90px) 0 40px; position: relative; z-index: 1; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 60px;
}
.footer__tag { margin-top: 16px; color: var(--dim); font-size: 15px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h3 {
  font-size: 11px; letter-spacing: 0.22em; color: var(--dim);
  margin-bottom: 6px; font-weight: 400;
}
.footer__col a { font-size: 15px; color: var(--paper); transition: color 0.2s; }
.footer__col a:hover { color: var(--volt); }
.footer__legal {
  border-top: 1px solid var(--line); padding-top: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.footer__legal p { font-size: 11px; letter-spacing: 0.06em; }

/* ---------- reveal animations (scoped to .js so no-JS visitors see everything) ---------- */
.js .reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal.in { opacity: 1; transform: none; }
/* once revealed, cards get their snappy hover/tilt transitions back */
.js .card.reveal.in {
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s, transform 0.15s ease-out;
}
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.4s; }
.d6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .fleet { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .hero__stage {
    position: static; transform: none; margin-top: 48px;
  }
  .js .hero__stage.reveal { transform: translateY(28px); }
  .js .hero__stage.reveal.in { transform: none; }
  .hero__watermark { right: -20vw; opacity: 0.7; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .biz { grid-template-columns: 1fr; }
  .biz__visual { order: -1; }
  .biz__grid i { width: 42px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .hero { padding-top: 110px; }
  .hero__title { font-size: clamp(34px, 10.2vw, 64px); }
  .outro__title { font-size: clamp(30px, 8.8vw, 92px); }
  .fleet { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__cell--big { grid-row: auto; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .faq__item summary { font-size: 16px; padding: 18px 20px; }
  .faq__item p { padding: 0 20px 20px; }
}
