:root {
  --bg: #030403;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.095);
  --line: rgba(255, 255, 255, 0.18);
  --line-soft: rgba(255, 255, 255, 0.09);
  --text: #f6f6f3;
  --muted: #a8a8a2;
  --dim: #6e7069;
  --lime: #d7ff00;
  --lime-soft: rgba(215, 255, 0, 0.18);
  --radius: 8px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.62);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 58% 16%, rgba(255, 255, 255, 0.08), transparent 34rem),
    radial-gradient(circle at 22% 45%, rgba(215, 255, 0, 0.065), transparent 24rem),
    linear-gradient(135deg, #050505 0%, #020202 45%, #070806 100%);
  font-family: var(--font);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 24%, black, transparent 68%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background: radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.76) 76%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 34px 48px 36px;
  overflow: hidden;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  position: relative;
  z-index: 4;
  min-height: 52px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 700;
}

.brand-word {
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.brand sup {
  align-self: flex-start;
  margin-left: -6px;
  color: var(--muted);
  font-size: 0.54rem;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 34px;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  transform: skewY(-18deg);
}

.brand-mark span {
  border-radius: 1px;
  background: linear-gradient(180deg, #ffffff, #9f9f9a);
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a,
.site-footer nav a,
.text-link {
  transition: color 180ms ease;
}

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

.download-pill {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 22px;
  border-radius: 7px;
  color: #0b0d04;
  background: var(--lime);
  font-weight: 700;
  box-shadow: 0 0 30px rgba(215, 255, 0, 0.22);
}

.hero-section {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(330px, 0.88fr) minmax(520px, 1.25fr);
  gap: 42px;
  align-items: center;
  padding: 58px 20px 34px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 520px;
}

.accent-slash,
.accent-bar {
  display: flex;
  gap: 7px;
}

.accent-slash span,
.accent-bar span {
  width: 9px;
  height: 22px;
  border-radius: 2px;
  background: var(--lime);
  transform: skewX(-22deg);
}

.hero-copy h1,
.section-copy h2,
.download-band h2,
.legal-page h1 {
  margin: 18px 0 0;
  color: var(--text);
  font-weight: 860;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: clamp(5.2rem, 8vw, 9.2rem);
}

.hero-copy p {
  max-width: 420px;
  margin: 36px 0 22px;
  color: var(--muted);
  font-size: clamp(1.32rem, 2.1vw, 1.85rem);
  line-height: 1.15;
}

.app-store-button {
  display: inline-flex;
  min-width: 248px;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.app-store-button small,
.app-store-button strong {
  display: block;
}

.app-store-button small {
  color: #ededed;
  font-size: 0.88rem;
  line-height: 1;
}

.app-store-button strong {
  font-size: 1.42rem;
  line-height: 1.08;
}

.apple-glyph {
  position: relative;
  width: 29px;
  height: 36px;
  border-radius: 48% 48% 45% 45%;
  background: currentColor;
}

.apple-glyph::before {
  position: absolute;
  top: -8px;
  left: 16px;
  width: 10px;
  height: 15px;
  border-radius: 100% 0;
  background: currentColor;
  content: "";
  transform: rotate(35deg);
}

.apple-glyph::after {
  position: absolute;
  top: 9px;
  right: -5px;
  width: 11px;
  height: 15px;
  border-radius: 50%;
  background: #111;
  content: "";
}

.creator-note {
  display: grid;
  width: min(100%, 430px);
  grid-template-columns: 44px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 76px;
}

.creator-note strong,
.kicker {
  display: block;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-note span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.target-cross {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
}

.target-cross::before,
.target-cross::after {
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 1px;
  background: var(--lime);
  content: "";
}

.target-cross::after {
  inset: 0 auto auto 50%;
  width: 1px;
  height: 100%;
}

.target-cross span,
.target-cross::selection {
  display: none;
}

.hero-stage {
  position: relative;
  min-height: 680px;
  isolation: isolate;
}

.hero-stage::before {
  position: absolute;
  inset: 12% -10% 0 8%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 58%);
  filter: blur(38px);
  content: "";
}

.rock-base {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 4%;
  height: 190px;
  border-radius: 72% 38% 0 0;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(175deg, #161815, #070807 64%, #020202);
  clip-path: polygon(0 70%, 8% 46%, 23% 36%, 36% 54%, 55% 24%, 78% 43%, 100% 20%, 100% 100%, 0 100%);
  opacity: 0.95;
}

.phone-slot {
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(255, 255, 255, 0.23);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.015)),
    #080908;
  box-shadow:
    inset 0 0 0 9px #111211,
    inset 0 0 0 10px rgba(255, 255, 255, 0.08),
    var(--shadow);
}

.phone-slot-main {
  top: 5%;
  left: 12%;
  z-index: 2;
  width: min(42vw, 372px);
  min-width: 290px;
  aspect-ratio: 0.52;
  transform: rotate(7deg);
}

.phone-slot-side {
  top: 22%;
  right: 3%;
  z-index: 1;
  width: min(30vw, 294px);
  min-width: 230px;
  aspect-ratio: 0.52;
  transform: rotate(12deg);
}

.phone-top {
  width: 96px;
  height: 25px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: #010101;
}

.slot-body {
  position: relative;
  display: grid;
  flex: 1;
  place-items: center;
  margin: 14px 24px 18px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(120deg, rgba(215, 255, 0, 0.08), transparent 35%),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.09), transparent 38%),
    rgba(255, 255, 255, 0.025);
}

.slot-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.46);
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.74rem;
}

.swatch-row {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding: 0 0 24px;
}

.swatch-row span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: #2c2f2b;
}

.swatch-row span:nth-child(1) { background: #e6e7dd; }
.swatch-row span:nth-child(2) { background: #aab060; }
.swatch-row span:nth-child(4) { background: #1d2424; }
.swatch-row span:nth-child(5) { background: #6b750c; }

.swatch-row .swatch-plus,
.tab-bar b {
  display: grid;
  place-items: center;
  border-color: transparent;
  color: #070807;
  background: var(--lime);
  font-weight: 900;
}

.mini-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 36px 28px;
}

.mini-controls span {
  height: 4px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 4px 20px 42px;
}

.feature-card {
  display: grid;
  min-height: 150px;
  grid-template-columns: 74px 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(13, 14, 13, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.feature-card strong {
  display: block;
  font-size: 1.25rem;
}

.feature-card em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.35;
}

.feature-card b {
  color: var(--muted);
  font-size: 1.4rem;
  font-weight: 400;
}

.line-icon {
  position: relative;
  width: 52px;
  height: 52px;
  color: var(--lime);
}

.cube-icon {
  border: 3px solid currentColor;
  transform: rotate(30deg) skewY(-8deg);
}

.cube-icon::before,
.cube-icon::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.cube-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
}

.cube-icon::after {
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
}

.walk-icon::before,
.walk-icon::after {
  position: absolute;
  content: "";
}

.walk-icon::before {
  top: 2px;
  left: 21px;
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
}

.walk-icon::after {
  top: 18px;
  left: 25px;
  width: 3px;
  height: 36px;
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    -13px 13px 0 0 currentColor,
    12px 18px 0 0 currentColor,
    -8px 37px 0 0 currentColor,
    10px 42px 0 0 currentColor;
  content: "";
  transform: rotate(14deg);
}

.walk-icon span {
  display: none;
}

.sparkle-icon::before,
.sparkle-icon::after {
  position: absolute;
  border: 3px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.sparkle-icon::before {
  inset: 4px 12px 18px 12px;
}

.sparkle-icon::after {
  right: 2px;
  bottom: 3px;
  width: 18px;
  height: 18px;
}

.workflow-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: center;
  margin: 38px 0 34px;
  padding: 0 20px;
}

.section-copy h2,
.legal-page h1 {
  font-size: clamp(3.3rem, 5vw, 5.8rem);
}

.section-copy p:not(.kicker) {
  max-width: 310px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.35;
}

.accent-bar {
  margin: 32px 0 0 210px;
}

.accent-bar span {
  width: 12px;
  height: 12px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text);
  font-weight: 600;
}

.showcase-panel {
  display: grid;
  min-height: 530px;
  grid-template-columns: 1.05fr 1fr 0.93fr;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(3, 3, 3, 0.52);
}

.app-screen-slot {
  position: relative;
  display: grid;
  min-height: 482px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018));
}

.screen-label {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  color: var(--text);
  font-weight: 700;
  text-align: center;
}

.tool-rail {
  position: absolute;
  top: 72px;
  left: 14px;
  display: grid;
  gap: 12px;
}

.tool-rail i {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.compact {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
}

.compact span {
  width: 28px;
  height: 28px;
}

.product-grid-placeholder {
  display: grid;
  width: 80%;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-grid-placeholder i {
  aspect-ratio: 1.15;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent),
    rgba(255, 255, 255, 0.08);
}

.tab-bar {
  position: absolute;
  right: 16px;
  bottom: 17px;
  left: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: center;
}

.tab-bar span,
.tab-bar b {
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.tab-bar b {
  width: 34px;
  height: 34px;
  justify-self: center;
  font-size: 1.3rem;
}

.timeline {
  position: absolute;
  right: 34px;
  bottom: 40px;
  left: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.timeline span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--text);
}

.download-band {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 34px;
  align-items: center;
  margin: 36px 0 22px;
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    radial-gradient(circle at 12% 50%, rgba(215, 255, 0, 0.08), transparent 28%),
    rgba(9, 10, 9, 0.82);
}

.download-band h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  line-height: 0.96;
}

.download-band p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.coordinate-block {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.app-store-button-lime {
  border-color: transparent;
  color: #070807;
  background: var(--lime);
  box-shadow: 0 0 42px rgba(215, 255, 0, 0.28);
}

.app-store-button-lime small {
  color: #202500;
}

.app-store-button-lime .apple-glyph::after {
  background: var(--lime);
}

.site-footer {
  min-height: 90px;
  border-top: 1px solid var(--line-soft);
}

.site-footer nav {
  display: flex;
  gap: 44px;
  color: var(--muted);
}

.footer-stripes {
  width: 204px;
  height: 80px;
  opacity: 0.28;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0 22px, transparent 22px 44px);
}

.legal-page {
  max-width: 860px;
  margin: 82px auto 120px;
  padding: 0 20px;
}

.legal-page h1 {
  margin-bottom: 24px;
}

.legal-page h2 {
  margin: 42px 0 12px;
  color: var(--text);
  font-size: 1.3rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-page a {
  color: var(--lime);
}

.legal-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

@media (max-width: 1080px) {
  .page-shell {
    padding: 26px 22px 30px;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 48px 0 26px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-stage {
    min-height: 590px;
  }

  .feature-grid,
  .workflow-section,
  .download-band {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    margin: 22px 0 46px;
  }

  .workflow-section {
    padding: 0;
  }

  .section-copy {
    max-width: 620px;
  }

  .showcase-panel {
    grid-template-columns: 1fr 1fr;
  }

  .walking-slot {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .download-band {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding-inline: 16px;
  }

  .site-header {
    align-items: flex-start;
  }

  .brand-word {
    font-size: 1.35rem;
  }

  .download-pill {
    width: 44px;
    min-height: 40px;
    padding: 0;
    font-size: 0.88rem;
  }

  .download-pill span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero-copy h1 {
    font-size: clamp(3.8rem, 16.5vw, 5.55rem);
  }

  .hero-copy p {
    margin-top: 24px;
    font-size: 1.22rem;
  }

  .app-store-button {
    min-width: 220px;
    min-height: 68px;
  }

  .hero-stage {
    min-height: 490px;
  }

  .phone-slot-main {
    left: 2%;
    min-width: 230px;
  }

  .phone-slot-side {
    right: -4%;
    min-width: 184px;
  }

  .creator-note {
    margin-top: 46px;
  }

  .feature-grid {
    gap: 12px;
  }

  .feature-card {
    min-height: 126px;
    grid-template-columns: 48px 1fr 20px;
    gap: 15px;
    padding: 20px 18px;
  }

  .line-icon {
    width: 40px;
    height: 40px;
  }

  .workflow-section {
    gap: 28px;
  }

  .section-copy h2 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .accent-bar {
    margin-left: 150px;
  }

  .showcase-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .app-screen-slot,
  .walking-slot {
    min-height: 360px;
  }

  .download-band {
    padding: 24px 18px;
  }

  .coordinate-block {
    display: none;
  }

  .site-footer {
    display: grid;
    gap: 26px;
  }

  .site-footer nav {
    gap: 24px;
  }

  .footer-stripes {
    width: 100%;
    height: 44px;
  }
}
