:root {
  color-scheme: light;
  --ink: #11151b;
  --muted: #5d6470;
  --paper: #f6f3ec;
  --paper-2: #fffdf7;
  --graphite: #0b111d;
  --graphite-2: #18202c;
  --line: #d7d1c6;
  --orange: #ff6b1a;
  --amber: #ffb15c;
  --mint: #4ab6a7;
  --ice: #dcebf5;
  --shadow: 0 24px 70px rgba(15, 20, 30, 0.16);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--orange);
  color: #120c08;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(11, 17, 29, 0.72);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: 6px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-toggle__bar {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(34px, 6vw, 90px);
  min-height: 88svh;
  padding: clamp(118px, 16vh, 170px) max(24px, calc((100vw - var(--max)) / 2)) 48px;
  overflow: hidden;
}

.section-dark {
  background:
    linear-gradient(112deg, rgba(255, 107, 26, 0.1), transparent 34%),
    linear-gradient(180deg, #111827 0%, #070b12 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(246, 243, 236, 0.98));
  pointer-events: none;
}

.hero__copy,
.hero__visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(4.2rem, 11vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5.4vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.9vw, 1.4rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero__lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.14rem, 2vw, 1.45rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
}

.button-primary {
  background: var(--orange);
  color: #170d06;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: clamp(36px, 6vh, 62px) 0 0;
}

.hero-stats div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
}

.hero__visual {
  display: grid;
  min-height: 560px;
  align-items: center;
}

.phone-stage {
  position: relative;
  width: min(100%, 520px);
  height: 620px;
  margin: 0 auto;
}

.phone {
  position: absolute;
  border-radius: 42px;
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.34);
}

.phone-back {
  right: 28px;
  top: 30px;
  width: 235px;
  height: 520px;
  transform: rotate(7deg);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.78), rgba(238, 218, 188, 0.4) 36%, rgba(42, 49, 61, 0.96)),
    var(--ice);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.phone-front {
  left: 14px;
  top: 78px;
  width: 250px;
  height: 520px;
  transform: rotate(-6deg);
  border: 10px solid #e7edf4;
  background: #0b111d;
}

.screen-glow {
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 107, 26, 0.84), transparent 42%),
    linear-gradient(22deg, rgba(74, 182, 167, 0.55), transparent 40%),
    #111827;
}

.screen-copy {
  position: absolute;
  left: 34px;
  bottom: 36px;
  color: #fff;
}

.screen-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 900;
}

.screen-copy strong {
  display: block;
  font-size: 4rem;
  line-height: 0.9;
}

.camera-plate {
  position: absolute;
  left: 28px;
  top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 56px);
  gap: 12px;
  width: 136px;
  padding: 14px;
  border-radius: 30px;
  background: rgba(12, 18, 29, 0.86);
}

.camera-plate span {
  display: block;
  width: 56px;
  height: 56px;
  border: 6px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: #070b12;
}

.camera-plate span:first-child {
  border-color: var(--amber);
}

.camera-plate span:last-child {
  grid-column: 1 / 3;
  justify-self: center;
}

.energy-streak {
  position: absolute;
  left: 30px;
  right: 34px;
  bottom: 70px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--amber), #fff);
}

.kinetic-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.kinetic-lines span {
  position: absolute;
  display: block;
  width: 82%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 177, 92, 0.82), transparent);
  transform: rotate(-24deg);
}

.kinetic-lines span:nth-child(1) {
  right: -12%;
  top: 28%;
}

.kinetic-lines span:nth-child(2) {
  right: -3%;
  top: 46%;
  opacity: 0.55;
}

.kinetic-lines span:nth-child(3) {
  right: 2%;
  top: 64%;
  opacity: 0.32;
}

.quick-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(calc(100% - 32px), var(--max));
  margin: -24px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-strip article {
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper-2);
}

.quick-strip span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--orange);
  font-weight: 900;
}

.quick-strip h2 {
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.08;
}

.quick-strip p {
  margin: 12px 0 0;
  color: var(--muted);
}

.feature-section,
.specs-section,
.faq-section,
.split-section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(70px, 12vw, 128px) 0;
}

.section-heading {
  max-width: 840px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

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

.feature-card,
.metric,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: 0 12px 34px rgba(17, 21, 27, 0.06);
}

.feature-card {
  min-width: 0;
  padding: 26px;
}

.feature-card-accent {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.feature-card-accent p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.14);
  color: var(--orange);
  font-weight: 900;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.section-tint {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(74, 182, 167, 0.14), transparent 58%),
    #ebe4d8;
}

.device-panel {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(17, 21, 27, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.15)),
    repeating-linear-gradient(90deg, rgba(17, 21, 27, 0.06), rgba(17, 21, 27, 0.06) 1px, transparent 1px, transparent 34px);
  overflow: hidden;
}

.display-chip {
  position: absolute;
  left: 28px;
  top: 28px;
  padding: 9px 12px;
  border-radius: 6px;
  background: var(--graphite);
  color: #fff;
  font-weight: 900;
}

.display-bars {
  position: absolute;
  inset: auto 34px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: end;
  height: 270px;
}

.display-bars span {
  display: block;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--amber), var(--orange));
}

.display-bars span:nth-child(1) {
  height: 38%;
  background: linear-gradient(180deg, var(--mint), #d9f0ec);
}

.display-bars span:nth-child(2) {
  height: 58%;
}

.display-bars span:nth-child(3) {
  height: 78%;
  background: linear-gradient(180deg, #f4f6fa, #9fb2c5);
}

.display-bars span:nth-child(4) {
  height: 100%;
}

.split-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #3f4650;
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #27303a;
  font-weight: 700;
}

.check-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mint);
  font-weight: 900;
}

.section-light {
  padding-top: clamp(74px, 11vw, 120px);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.metric {
  min-width: 0;
  padding: 26px;
}

.metric span {
  display: block;
  color: var(--orange);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1;
}

.metric p {
  margin: 14px 0 0;
  color: var(--muted);
}

.spec-table-wrap {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr + tr {
  border-top: 1px solid var(--line);
}

.spec-table th,
.spec-table td {
  padding: 22px 24px;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 28%;
  color: #111827;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.spec-table td {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  color: #111827;
  font-weight: 900;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.faq-list p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 36px max(24px, calc((100vw - var(--max)) / 2));
  background: #0a0f18;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 680px;
}

.site-footer img {
  border-radius: 8px;
  flex: 0 0 auto;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 8px;
    background: rgba(11, 17, 29, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding-top: 112px;
  }

  .hero__visual {
    min-height: 430px;
  }

  .phone-stage {
    height: 440px;
    transform: scale(0.78);
    transform-origin: center top;
  }

  .quick-strip,
  .feature-grid,
  .metric-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: 0;
  }

  .device-panel {
    min-height: 320px;
  }

  .display-bars {
    height: 190px;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    padding: 18px;
  }

  .spec-table td {
    padding-top: 0;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .brand span {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: clamp(3.5rem, 23vw, 5.2rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 360px;
  }

  .phone-stage {
    margin-left: -34px;
    transform: scale(0.64);
  }

  .feature-section,
  .specs-section,
  .faq-section,
  .split-section {
    width: min(calc(100% - 24px), var(--max));
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-tint {
    width: 100%;
    padding-inline: 12px;
  }

  .quick-strip {
    width: calc(100% - 24px);
  }
}
