:root {
  --black: #070707;
  --black-2: #0d0d0d;
  --panel: #111111;
  --white: #f5f4f1;
  --muted: #a7a49f;
  --line: rgba(255,255,255,.12);
  --orange: #f18747;
  --orange-dark: #bd5e2d;
  --max: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  z-index: 10;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  height: 92px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand img { width: 184px; height: auto; }
.site-nav { display: flex; gap: 38px; }
.site-nav a {
  color: #d8d6d1;
  font-size: .83rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--orange); }
.menu-button { display: none; }

.hero {
  max-width: var(--max);
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 46px 34px 64px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 24px;
}
.hero-copy { position: relative; z-index: 2; padding-left: clamp(0px, 3vw, 44px); }
.eyebrow {
  margin: 0 0 28px;
  color: #c9c6c0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .23em;
}
.eyebrow span { color: var(--orange); margin-right: 14px; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 28px;
  font-size: clamp(4.5rem, 7.2vw, 7.5rem);
  line-height: .84;
  letter-spacing: -.065em;
  text-transform: uppercase;
  font-weight: 800;
}
h1 span { color: var(--orange); }
.hero-lead {
  max-width: 530px;
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 52px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #0a0a0a; border-color: var(--orange); }
.button-ghost:hover { background: #fff; color: #0a0a0a; }
.hero-specs {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  max-width: 610px;
}
.hero-specs div { padding: 20px 8px 0 0; border-right: 1px solid var(--line); }
.hero-specs div + div { padding-left: 18px; }
.hero-specs strong { display: block; font-size: 1.55rem; color: #f3f1ed; }
.hero-specs span { color: #77746f; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }

.hero-visual { position: relative; min-width: 0; }
.hero-visual img {
  width: min(100%, 760px);
  margin-left: auto;
  aspect-ratio: 1;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: contrast(1.04) saturate(.94);
  position: relative;
  z-index: 2;
}
.product-halo {
  position: absolute;
  inset: 12% 8% 8% 12%;
  background: radial-gradient(circle, rgba(241,135,71,.2), transparent 63%);
  filter: blur(34px);
}
.power-badge {
  position: absolute;
  right: 6%;
  top: 12%;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(241,135,71,.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(8,8,8,.7);
  backdrop-filter: blur(10px);
  z-index: 4;
}
.power-badge b { font-size: 2.4rem; color: var(--orange); line-height: 1; }
.power-badge span { font-size: .68rem; font-weight: 700; line-height: 1.1; letter-spacing: .08em; }
.product-caption {
  position: absolute;
  left: 10%;
  bottom: 5%;
  z-index: 4;
  font-size: .7rem;
  letter-spacing: .2em;
  color: #aaa6a0;
}
.product-caption span { display: inline-block; width: 35px; height: 1px; background: var(--orange); vertical-align: middle; margin-right: 10px; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: #0a0a0a; }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 17px 0; animation: ticker 24s linear infinite; }
.ticker span { font-size: .75rem; letter-spacing: .2em; color: #aaa6a0; }
.ticker i { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { max-width: var(--max); margin: 0 auto; padding: 136px 34px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.section-heading .eyebrow { align-self: flex-start; margin-top: 12px; }
h2 {
  font-size: clamp(3.5rem, 6vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
  margin: 0;
}
h2 em { color: var(--orange); font-style: normal; }
.feature-grid { display: grid; grid-template-columns: 1.35fr .82fr .82fr; gap: 14px; }
.feature-card {
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #141414, #0b0b0b);
  position: relative;
  overflow: hidden;
}
.feature-card::after { content: ""; position: absolute; inset: auto -30% -45% 25%; height: 75%; background: radial-gradient(circle, rgba(241,135,71,.13), transparent 65%); }
.feature-number { color: #696661; font-size: .72rem; letter-spacing: .16em; }
.feature-card h3 { font-size: 1.75rem; text-transform: uppercase; margin-bottom: 11px; }
.feature-card p { font-family: "Helvetica Neue", Arial, sans-serif; color: #96928d; line-height: 1.65; margin-bottom: 0; max-width: 500px; }
.feature-main { background: linear-gradient(145deg, #1b100b, #0d0d0d 63%); }
.pd-icon { font-size: clamp(5rem, 8vw, 8rem); font-weight: 800; color: var(--orange); letter-spacing: -.08em; line-height: 1; }
.pd-icon span { font-size: .22em; letter-spacing: .02em; }
.line-icon { display: flex; gap: 9px; transform: rotate(-7deg); margin: 45px auto; }
.line-icon span { width: 15px; height: 110px; background: linear-gradient(var(--orange), #713415); border-radius: 20px; }
.meter-icon { margin: 45px auto; font-size: 2rem; color: var(--orange); }
.meter-icon span { font-size: 7rem; font-weight: 800; letter-spacing: -.08em; }

.design-section { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(48px, 8vw, 120px); align-items: center; border-top: 1px solid var(--line); }
.detail-visual { position: relative; overflow: hidden; min-height: 680px; background: #0c0c0c; }
.detail-visual img { width: 100%; height: 680px; object-fit: cover; object-position: 15% 80%; transform: scale(1.32); }
.detail-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 58%, rgba(7,7,7,.8)); }
.focus-ring { position: absolute; z-index: 2; width: 180px; height: 180px; border: 1px solid var(--orange); border-radius: 50%; bottom: 14%; left: 20%; box-shadow: 0 0 0 24px rgba(241,135,71,.05); }
.focus-label { position: absolute; z-index: 3; bottom: 8%; left: 48%; color: #e8e5e0; font-size: .7rem; line-height: 1.5; letter-spacing: .18em; }
.detail-copy > p:not(.eyebrow) { max-width: 580px; margin: 34px 0; color: #9c9892; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 1.05rem; line-height: 1.8; }
.detail-list { list-style: none; padding: 0; margin: 44px 0 0; border-top: 1px solid var(--line); }
.detail-list li { padding: 20px 0; border-bottom: 1px solid var(--line); color: #d2cfca; text-transform: uppercase; font-size: .8rem; letter-spacing: .12em; }
.detail-list span { color: var(--orange); margin-right: 20px; }

.compatibility { border-top: 1px solid var(--line); text-align: center; }
.compatibility .eyebrow { margin-bottom: 24px; }
.device-row { margin-top: 80px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.device { min-height: 250px; padding: 34px 20px 26px; border: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: space-between; background: #0b0b0b; }
.device b { color: #aaa6a0; text-transform: uppercase; font-size: .72rem; letter-spacing: .15em; }
.device-shape { display: block; position: relative; border: 2px solid #dfdcd6; border-radius: 8px; opacity: .88; }
.phone { width: 54px; height: 104px; }
.tablet { width: 84px; height: 112px; }
.laptop { width: 126px; height: 78px; border-radius: 6px 6px 2px 2px; }
.laptop::after { content: ""; position: absolute; width: 150px; height: 5px; background: #dfdcd6; left: 50%; bottom: -10px; transform: translateX(-50%); border-radius: 0 0 10px 10px; }
.bank { width: 65px; height: 112px; border-radius: 12px; }
.bank::before { content: ""; position: absolute; width: 18px; height: 3px; left: 50%; top: 9px; transform: translateX(-50%); background: var(--orange); }
.compatibility-note { margin: 32px auto 0; max-width: 660px; color: #77746f; font-family: "Helvetica Neue", Arial, sans-serif; line-height: 1.6; }

.technical-section { border-top: 1px solid var(--line); display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.spec-table { margin: 0; border-top: 1px solid var(--line); }
.spec-table div { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.spec-table dt { color: #77746f; font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; }
.spec-table dd { margin: 0; text-align: right; color: #e4e1dc; font-size: .92rem; }

.closing-section { min-height: 72vh; padding: 120px 34px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle at 50% 40%, rgba(241,135,71,.13), transparent 38%), #050505; border-top: 1px solid var(--line); }
.closing-section img { width: min(650px, 72vw); margin-bottom: 38px; }
.closing-section p { color: #aaa6a0; font-size: clamp(1rem, 2vw, 1.5rem); letter-spacing: .18em; text-transform: uppercase; }
.closing-meta { margin-top: 50px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.closing-meta span { padding: 11px 15px; border: 1px solid var(--line); color: #77746f; font-size: .68rem; letter-spacing: .14em; }

footer { max-width: var(--max); margin: 0 auto; padding: 28px 34px 40px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: #6f6c67; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
footer a:hover { color: var(--orange); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 76px; }
  .hero-copy { padding-left: 0; }
  .hero-visual { margin-top: 24px; }
  .hero-visual img { margin: 0 auto; }
  .section-heading { display: block; }
  .section-heading .eyebrow { margin-bottom: 24px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-main { grid-column: 1 / -1; }
  .design-section, .technical-section { grid-template-columns: 1fr; }
  .detail-copy { max-width: 720px; }
}

@media (max-width: 720px) {
  .site-header { height: 74px; padding: 0 20px; }
  .brand img { width: 144px; }
  .menu-button { width: 44px; height: 44px; border: 0; background: transparent; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; color: #fff; }
  .menu-button span { width: 23px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: absolute; top: 74px; left: 20px; right: 20px; padding: 24px; display: none; flex-direction: column; gap: 24px; background: rgba(10,10,10,.98); border: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .hero { min-height: auto; padding: 62px 20px 52px; }
  h1 { font-size: clamp(3.8rem, 18vw, 5.5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-specs { grid-template-columns: 1fr 1fr; }
  .hero-specs div:nth-child(2) { border-right: 0; }
  .hero-visual { margin-inline: -12px; }
  .power-badge { width: 82px; height: 82px; top: 6%; right: 3%; }
  .power-badge b { font-size: 1.9rem; }
  .product-caption { left: 6%; bottom: 2%; }
  .section { padding: 92px 20px; }
  h2 { font-size: clamp(3.1rem, 14vw, 4.7rem); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-main { grid-column: auto; }
  .feature-card { min-height: 320px; }
  .detail-visual { min-height: 480px; }
  .detail-visual img { height: 480px; }
  .focus-ring { width: 130px; height: 130px; left: 14%; }
  .focus-label { left: 51%; }
  .device-row { grid-template-columns: 1fr 1fr; margin-top: 52px; }
  .device { min-height: 210px; }
  .technical-section { gap: 50px; }
  .spec-table div { grid-template-columns: .85fr 1.15fr; }
  .closing-section { min-height: 60vh; padding: 90px 20px; }
  footer { padding: 24px 20px 34px; flex-direction: column; gap: 13px; align-items: center; text-align: center; }
}

@media (max-width: 420px) {
  .hero-actions .button { width: 100%; }
  .hero-specs div + div { padding-left: 12px; }
  .hero-specs strong { font-size: 1.3rem; }
  .device-row { gap: 8px; }
  .device { min-height: 190px; }
}
