:root {
  color-scheme: light dark;
  --ink: #06133d;
  --ink-soft: #425170;
  --paper: #ffffff;
  --line: #d7e7ff;
  --blue: #0b68f4;
  --blue-deep: #0752c4;
  --orange: #ff7a13;
  --shadow: 0 32px 80px rgba(6, 19, 61, 0.16);
  --content: 1280px;
  --gutter: clamp(22px, 5vw, 72px);
  font-family: "Avenir Next", Avenir, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.section-inner,
.header-inner {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 64%, transparent);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 118px 0 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 34%, rgba(11, 104, 244, 0.08), transparent 28%),
    linear-gradient(180deg, var(--paper), #fbfdff);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}

.hero-copy {
  padding-block: 12px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: var(--orange);
}

h1,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 5.6vw, 5rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.65;
}

.coming-soon {
  margin: 0;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-height: min(70svh, 650px);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.phone {
  position: relative;
  z-index: 2;
  width: min(76%, 370px);
  height: min(68svh, 650px);
  min-height: 520px;
  padding: 11px;
  overflow: hidden;
  border: 2px solid #17213c;
  border-radius: 50px;
  background: #05070c;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.phone::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 38px;
  content: "";
  pointer-events: none;
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 50%;
  width: 32%;
  height: 25px;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  object-fit: cover;
  object-position: top;
}

.orbit {
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 440px;
  border: 2px solid;
  border-radius: 50%;
  opacity: 0.55;
}

.orbit-blue {
  top: 7%;
  left: 0;
  border-color: var(--blue);
}

.orbit-orange {
  right: -22%;
  bottom: 1%;
  border-color: var(--orange);
}

.path {
  position: absolute;
  border: 2px solid;
  border-radius: 50%;
  opacity: 0.3;
}

.path-one {
  top: 230px;
  right: -240px;
  width: 680px;
  height: 430px;
  border-color: var(--blue);
}

.path-two {
  bottom: -330px;
  left: -280px;
  width: 760px;
  height: 570px;
  border-color: var(--orange);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 124px 0 58px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow {
    justify-content: center;
  }

  .hero-visual {
    min-height: 570px;
  }

  .phone {
    width: min(72%, 330px);
    height: 610px;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 20px;
  }

  .header-inner {
    min-height: 74px;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 3.65rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 10px;
  }

  .phone {
    width: min(72%, 270px);
    height: 500px;
    min-height: 0;
    border-radius: 42px;
  }

  .phone::after,
  .phone img {
    border-radius: 31px;
  }

  .orbit {
    width: 340px;
    height: 340px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f4f7ff;
    --ink-soft: #b7c7e5;
    --paper: #001039;
    --line: #213764;
    --blue-deep: #77a9ff;
    --shadow: 0 34px 84px rgba(0, 0, 0, 0.45);
  }

  .hero {
    background:
      radial-gradient(circle at 88% 34%, rgba(11, 104, 244, 0.18), transparent 28%),
      linear-gradient(180deg, #001039, #02133d);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
