:root {
  color-scheme: dark;
  --bg: #090a0b;
  --panel: #151719;
  --panel-strong: #202326;
  --text: #f7f3ef;
  --muted: #cfc5bb;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #ff5a22;
  --accent-2: #ffd15a;
  --ink: #0f1011;
  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:
    radial-gradient(circle at top left, rgba(255, 90, 34, 0.28), transparent 34rem),
    radial-gradient(circle at 80% 20%, rgba(255, 209, 90, 0.12), transparent 30rem),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 11, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

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

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 7vw, 84px) clamp(18px, 4vw, 56px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 90, 34, 0.22), transparent 36%),
    linear-gradient(315deg, rgba(255, 209, 90, 0.13), transparent 42%),
    rgba(9, 10, 11, 0.86);
}

.hero-copy {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.94;
  max-width: 7.2em;
}

.lede {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  border-color: transparent;
  background: var(--accent);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
}

.phone-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  min-height: 560px;
  max-width: 650px;
  margin-left: auto;
  isolation: isolate;
}

.phone-strip::before {
  position: absolute;
  inset: 8% 4% 2%;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 90, 34, 0.22), rgba(255, 209, 90, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.52);
}

.shot {
  width: 100%;
  max-height: 68vh;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

.shot-a,
.shot-c {
  transform: translateY(44px);
}

.shot-b {
  transform: translateY(-20px);
}

.features {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #111315;
  color: var(--text);
}

.features .eyebrow {
  color: var(--accent-2);
}

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

.section-heading h2,
.notice h2,
.legal h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

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

.feature-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 90, 34, 0.12), rgba(255, 255, 255, 0.045)),
    var(--panel);
}

.feature-grid h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.feature-grid p,
.notice p,
.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.7;
}

.notice {
  padding: clamp(48px, 7vw, 84px) clamp(18px, 4vw, 56px);
  background: var(--panel);
}

.notice p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal {
  max-width: 880px;
  min-height: calc(100vh - 168px);
  padding: clamp(42px, 7vw, 84px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--bg);
}

.legal h1 {
  margin-bottom: 28px;
}

.legal h2 {
  margin: 34px 0 10px;
  font-size: 1.36rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .phone-strip {
    min-height: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  .phone-strip {
    grid-template-columns: 1fr 1fr;
  }

  .shot-c {
    display: none;
  }

  .shot-a,
  .shot-b {
    transform: none;
  }
}
