:root {
  color-scheme: dark;
  --bg: #030406;
  --ink: #f4f7fb;
  --muted: #9faaba;
  --dim: #687384;
  --line: rgba(255, 255, 255, 0.15);
  --line-soft: rgba(255, 255, 255, 0.08);
  --glass: rgba(8, 11, 15, 0.42);
  --glass-strong: rgba(8, 11, 15, 0.68);
  --blue: #6bb8ff;
  --blue-strong: #1988ff;
  --amber: #d8964c;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.page-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 52%, rgba(84, 111, 132, 0.18), transparent 34%),
    #030406;
}

.hero {
  position: relative;
  height: 88svh;
  min-height: 760px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.68) 30%, rgba(0, 0, 0, 0.22) 62%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.76) 100%),
    url("./assets/hero-rock.png");
  background-position: center center;
  background-size: cover;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 66% 55%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 16% 80%, rgba(216, 150, 76, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 55%);
  opacity: 0.24;
  pointer-events: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 12;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, var(--max));
  min-height: 82px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 32px;
}

.brand img {
  width: 132px;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 8px 10px;
  color: rgba(244, 247, 251, 0.72);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
}

.nav-links a {
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.menu-button {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
}

.mobile-menu {
  position: absolute;
  top: 66px;
  left: 16px;
  right: 16px;
  z-index: 14;
  display: none;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(6, 8, 11, 0.86);
  backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  padding: 13px 14px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 760;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
  padding-top: 174px;
  padding-bottom: 40px;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 88px;
  font-weight: 780;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(231, 238, 247, 0.78);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0;
  transition:
    opacity 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: none;
}

.button-primary {
  border-color: rgba(245, 245, 247, 0.95);
  background-color: rgba(245, 245, 247, 0.95);
  color: #08090b;
  box-shadow: none;
  text-shadow: none;
}

.button-primary::before,
.contact-mail::before {
  display: none;
}

.button-primary::after,
.contact-mail::after {
  display: none;
}

.button-primary:hover {
  border-color: #fff;
  background-color: #fff;
  color: #050608;
  box-shadow: none;
}

.button-primary:hover::after,
.contact-mail:hover::after {
  display: none;
}

.button-secondary {
  border-color: rgba(245, 245, 247, 0.62);
  background-color: transparent;
  color: rgba(245, 245, 247, 0.96);
  box-shadow: none;
  backdrop-filter: none;
}

.button-secondary:hover {
  border-color: rgba(245, 245, 247, 0.86);
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.scroll-cue {
  position: absolute;
  right: 42px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.scroll-cue span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.task-band {
  min-height: 24svh;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 72% 0%, rgba(107, 184, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #05070a, #070b10);
}

.task-band-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
  padding: 44px 0 58px;
}

.task-band p {
  margin: 0;
  color: rgba(246, 249, 252, 0.94);
  font-size: 34px;
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
}

.task-band ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.task-band li {
  min-height: 58px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(235, 241, 248, 0.76);
  font-size: 15px;
  font-weight: 680;
  letter-spacing: 0;
}

.section {
  position: relative;
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
  padding: 112px 0;
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.section-copy h2,
.section-heading h2,
.company-card h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 54px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-copy p,
.section-heading p,
.company-card p,
.contact-copy p {
  margin: 24px 0 0;
  color: rgba(221, 229, 239, 0.72);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.55fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading p {
  margin: 0;
}

.heading-aside {
  display: grid;
  gap: 22px;
}

.heading-aside p {
  margin: 0;
}

.store-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  align-items: center;
}

.app-heading {
  margin-bottom: 26px;
}

.app-download {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: min(1120px, 100%);
  margin: 8px auto 62px;
  padding: 0 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-download-copy {
  max-width: 620px;
}

.app-download-copy h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.app-download-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.app-store-links {
  justify-content: flex-start;
  gap: 16px;
}

.store-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 48px;
  line-height: 0;
  border-radius: 10px;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.store-badge img {
  display: block;
  width: auto;
  max-width: none;
  height: 48px;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.36));
}

.store-badge-google img {
  height: 48px;
}

.store-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.store-badge:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}

.device-section {
  padding-top: 124px;
}

.device-grid,
.setup-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 88px;
  align-items: center;
}

.device-visual {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  overflow: visible;
}

.device-visual::before {
  position: absolute;
  inset: 4% -12% 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(ellipse at 50% 42%, rgba(229, 240, 251, 0.18), transparent 34%),
    radial-gradient(ellipse at 58% 66%, rgba(107, 184, 255, 0.15), transparent 42%);
  filter: blur(10px);
  opacity: 0.92;
  pointer-events: none;
}

.device-visual::after {
  position: absolute;
  left: 50%;
  bottom: 58px;
  z-index: 1;
  width: min(50%, 330px);
  height: 68px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28) 50%, transparent 72%);
  filter: blur(14px);
  pointer-events: none;
}

.device-visual img {
  position: relative;
  z-index: 2;
  width: min(82%, 520px);
  height: auto;
  transform: translateY(-12px);
  filter:
    drop-shadow(0 42px 80px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 42px rgba(180, 211, 238, 0.13));
}

.work-section {
  padding-top: 92px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  min-height: 360px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    rgba(7, 10, 14, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 184, 255, 0.32);
  background:
    radial-gradient(circle at 70% 0%, rgba(107, 184, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.026)),
    rgba(7, 10, 14, 0.82);
}

.card-index {
  display: block;
  color: rgba(107, 184, 255, 0.72);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
}

.work-card h3 {
  margin: 86px 0 0;
  color: #fff;
  font-size: 27px;
  font-weight: 820;
  line-height: 1.05;
  letter-spacing: 0;
}

.work-card p {
  margin: 20px 0 0;
  color: rgba(221, 229, 239, 0.68);
  font-size: 15px;
  line-height: 1.64;
  letter-spacing: 0;
}

.setup-section {
  width: 100%;
  padding: 112px max(32px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 36%, rgba(107, 184, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #06080c, #030406);
}

.phone-stack {
  position: relative;
  min-height: 620px;
}

.phone-shot {
  position: absolute;
  width: min(58%, 320px);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
}

.phone-shot-back {
  right: 4%;
  top: 18px;
  opacity: 0.72;
  transform: rotate(5deg);
  filter: saturate(0.86);
}

.phone-shot-front {
  left: 8%;
  top: 70px;
  z-index: 2;
  transform: rotate(-3deg);
}

.setup-steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.setup-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(233, 240, 248, 0.78);
  font-size: 15px;
  font-weight: 680;
  line-height: 1.45;
}

.setup-steps span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
}

.app-section {
  overflow: visible;
}

.app-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto;
  isolation: isolate;
}

.app-gallery::before {
  position: absolute;
  inset: 14% -6% 4%;
  z-index: -1;
  content: "";
  background:
    radial-gradient(ellipse at 50% 42%, rgba(107, 184, 255, 0.18), transparent 34%),
    radial-gradient(ellipse at 84% 58%, rgba(108, 111, 255, 0.12), transparent 34%);
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

.app-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow:
    0 38px 96px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.spec-panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(420px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.spec-visual,
.spec-list {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.spec-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    radial-gradient(circle at 54% 42%, rgba(255, 185, 86, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.spec-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    radial-gradient(circle at 46% 52%, transparent 0, rgba(0, 0, 0, 0.22) 74%);
  pointer-events: none;
}

.spec-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 52%;
  filter: saturate(0.96) contrast(1.05);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.spec-list div {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-list div:nth-child(2n) {
  border-right: 0;
}

.spec-list span {
  display: block;
  color: var(--dim);
  font-size: 12px;
  font-weight: 760;
}

.spec-list strong {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 780;
  line-height: 1.34;
}

.progress-section {
  width: 100%;
  padding: 118px max(32px, calc((100vw - var(--max)) / 2)) 126px;
  background:
    radial-gradient(circle at 76% 12%, rgba(216, 150, 76, 0.12), transparent 26%),
    linear-gradient(180deg, #030406, #07090d);
}

.progress-section .section-heading {
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 820px;
  margin-bottom: 58px;
}

.progress-section .section-heading p {
  max-width: 680px;
}

.timeline {
  counter-reset: milestone;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  padding: 1px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at 88% 0%, rgba(107, 184, 255, 0.1), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 36px 80px rgba(0, 0, 0, 0.28);
}

.timeline::before {
  position: absolute;
  z-index: 0;
  top: 78px;
  right: 34px;
  left: 34px;
  height: 1px;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(216, 150, 76, 0.3),
    rgba(255, 255, 255, 0.22),
    rgba(107, 184, 255, 0.3)
  );
}

.timeline article {
  counter-increment: milestone;
  position: relative;
  z-index: 1;
  min-height: 272px;
  padding: 112px 22px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.006)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.018), transparent 52%);
}

.timeline article::before {
  position: absolute;
  top: 69px;
  left: 24px;
  width: 16px;
  height: 16px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 252, 241, 0.96), rgba(216, 181, 126, 0.92));
  box-shadow:
    0 0 0 7px rgba(216, 150, 76, 0.1),
    0 0 32px rgba(216, 150, 76, 0.24);
}

.timeline article::after {
  position: absolute;
  top: 30px;
  left: 22px;
  content: "0" counter(milestone);
  color: rgba(221, 229, 239, 0.42);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
}

.timeline article:last-child {
  border-right: 0;
}

.timeline article.is-current {
  background:
    radial-gradient(circle at 70% 24%, rgba(216, 150, 76, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.012));
}

.timeline article.is-current::before {
  background: linear-gradient(180deg, #ffffff, #8ccaff 54%, #d8a05a);
  box-shadow:
    0 0 0 8px rgba(107, 184, 255, 0.1),
    0 0 36px rgba(107, 184, 255, 0.32),
    0 0 24px rgba(216, 150, 76, 0.2);
}

.timeline article.is-current::after {
  color: rgba(255, 255, 255, 0.66);
}

.timeline span {
  display: block;
  color: rgba(242, 221, 184, 0.86);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.01em;
}

.timeline h3 {
  margin: 16px 0 0;
  color: #fff;
  font-size: 19px;
  font-weight: 820;
  line-height: 1.16;
}

.timeline p {
  max-width: 240px;
  margin: 14px 0 0;
  color: rgba(221, 229, 239, 0.66);
  font-size: 14px;
  line-height: 1.56;
}

.timeline-stat {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(216, 150, 76, 0.28);
  border-radius: 999px;
  background: rgba(216, 150, 76, 0.08);
  color: rgba(255, 244, 224, 0.96);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.04em;
}

.company-section {
  padding-top: 104px;
  padding-bottom: 68px;
}

.company-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.5fr);
  gap: 54px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 18%, rgba(107, 184, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
}

.company-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: center;
}

.company-facts span {
  min-height: 52px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(235, 241, 248, 0.76);
  font-size: 14px;
  font-weight: 760;
}

.contact-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 416px);
  align-items: center;
  gap: clamp(72px, 8vw, 132px);
  width: min(100% - 64px, var(--max));
  min-height: 360px;
  margin: 0 auto 64px;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 58% 58%, rgba(97, 179, 255, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.56) 47%, rgba(3, 9, 13, 0.82) 72%, rgba(0, 0, 0, 0.94)),
    url("./assets/hero-rock.png");
  background-position: 36% 62%;
  background-size: cover;
  overflow: hidden;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 41%, rgba(0, 0, 0, 0.68) 53%, rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(circle at 72% 42%, rgba(115, 192, 255, 0.08), transparent 22%);
}

.contact-copy,
.contact-card {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  max-width: 640px;
  font-size: 58px;
}

.contact-copy p {
  max-width: 620px;
}

.contact-card {
  justify-self: end;
  display: grid;
  gap: 0;
  width: min(100%, 416px);
  padding: 8px 22px 22px;
  border: 1px solid rgba(184, 220, 244, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(11, 24, 33, 0.9), rgba(3, 8, 12, 0.98)),
    rgba(5, 10, 14, 0.94);
  box-shadow:
    0 28px 84px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px);
}

.contact-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-row span {
  display: block;
  margin-bottom: 8px;
  color: rgba(168, 183, 202, 0.72);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

.contact-row strong,
.contact-row a {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.25;
  letter-spacing: 0;
  text-decoration: none;
}

.contact-row a:hover {
  color: #d8efff;
}

.contact-row p {
  margin: 6px 0 0;
  color: rgba(221, 229, 239, 0.66);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.5;
}

.contact-mail {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 21px;
  border: 1px solid rgba(245, 245, 247, 0.95);
  border-radius: 999px;
  background-color: rgba(245, 245, 247, 0.95);
  color: #08090b;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: none;
  text-shadow: none;
  transition:
    opacity 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.contact-mail:hover {
  transform: none;
  border-color: #fff;
  background-color: #fff;
  color: #050608;
  box-shadow: none;
}

@media (max-width: 1060px) {
  .site-header,
  .hero-copy,
  .task-band-inner,
  .section,
  .contact-section {
    width: min(100% - 44px, var(--max));
  }

  h1 {
    max-width: 650px;
    font-size: 70px;
  }

  .lead {
    max-width: 560px;
    font-size: 19px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .company-card h2,
  .contact-copy h2 {
    font-size: 44px;
  }

  .section-heading,
  .device-grid,
  .setup-grid,
  .spec-panel,
  .company-card {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card {
    min-height: 300px;
  }

  .work-card h3 {
    margin-top: 54px;
  }

  .setup-section,
  .progress-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .phone-stack {
    min-height: 560px;
  }

  .phone-shot-front {
    left: 18%;
  }

  .phone-shot-back {
    right: 16%;
  }

  .app-gallery {
    gap: 16px;
  }

  .app-gallery img {
    border-radius: 20px;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0;
    padding: 1px;
  }

  .timeline::before {
    display: none;
  }

  .timeline article {
    min-height: 240px;
    padding: 88px 24px 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .timeline article::before {
    top: 50px;
    left: 24px;
  }

  .timeline article::after {
    top: 25px;
    left: 24px;
  }

  .timeline article:nth-child(2n) {
    border-right: 0;
  }

  .timeline article:nth-child(odd):not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .timeline article:last-child {
    grid-column: span 2;
    border-bottom: 0;
  }

  .contact-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(330px, 390px);
    gap: 64px;
    background-position: 30% 62%;
  }
}

@media (max-width: 760px) {
  .hero {
    height: 90svh;
    min-height: 760px;
    background-position: 58% center;
  }

  .site-header {
    min-height: 70px;
  }

  .brand img {
    width: 118px;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-copy {
    padding-top: 132px;
    padding-bottom: 34px;
  }

  h1 {
    max-width: 470px;
    font-size: 48px;
    line-height: 0.98;
  }

  .lead {
    max-width: 420px;
    font-size: 16px;
    line-height: 1.5;
  }

  .actions {
    gap: 10px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .task-band-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 34px;
  }

  .task-band p {
    font-size: 28px;
  }

  .task-band ul {
    grid-template-columns: 1fr;
  }

  .section,
  .setup-section,
  .progress-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-copy h2,
  .section-heading h2,
  .company-card h2,
  .contact-copy h2 {
    font-size: 34px;
    line-height: 1.03;
  }

  .section-copy p,
  .section-heading p,
  .company-card p,
  .contact-copy p {
    font-size: 15px;
    line-height: 1.62;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 28px;
  }

  .app-heading {
    margin-bottom: 24px;
  }

  .app-download {
    gap: 16px;
    align-items: start;
    margin: 0 0 38px;
    padding: 0 0 30px;
  }

  .app-download-copy h3 {
    font-size: 24px;
  }

  .app-download-copy p {
    font-size: 14px;
  }

  .app-store-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .store-badge {
    height: 44px;
  }

  .store-badge img,
  .store-badge-google img {
    height: 44px;
  }

  .device-grid,
  .setup-grid {
    gap: 34px;
  }

  .device-visual {
    min-height: 360px;
  }

  .device-visual img {
    width: min(88%, 390px);
  }

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

  .work-card {
    min-height: 250px;
  }

  .work-card h3 {
    margin-top: 42px;
    font-size: 24px;
  }

  .phone-stack {
    min-height: 500px;
  }

  .phone-shot {
    width: min(62%, 250px);
    border-radius: 28px;
  }

  .phone-shot-front {
    left: 2%;
    top: 64px;
  }

  .phone-shot-back {
    right: 0;
    top: 12px;
  }

  .setup-steps li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    font-size: 14px;
  }

  .app-gallery {
    display: flex;
    gap: 14px;
    padding: 0 6px 22px;
    margin-right: -22px;
    margin-left: -2px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .app-gallery img {
    flex: 0 0 min(76vw, 280px);
    scroll-snap-align: center;
    border-radius: 22px;
  }

  .spec-panel {
    gap: 12px;
  }

  .spec-visual {
    min-height: 330px;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .spec-list div,
  .spec-list div:nth-child(2n) {
    min-height: 86px;
    border-right: 0;
  }

  .timeline {
    display: block;
    overflow: visible;
    padding: 4px 0 0 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .timeline::before {
    display: block;
    top: 5px;
    right: auto;
    bottom: 0;
    left: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(216, 150, 76, 0.18),
      rgba(255, 255, 255, 0.28),
      rgba(107, 184, 255, 0.18)
    );
  }

  .timeline article,
  .timeline article:nth-child(2n),
  .timeline article:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 0 0 38px 26px;
    border-right: 0;
    border-bottom: 0;
    background: transparent;
  }

  .timeline article::before {
    top: 1px;
    left: -28px;
    width: 15px;
    height: 15px;
  }

  .timeline article::after {
    display: none;
  }

  .timeline article:last-child {
    padding-bottom: 0;
  }

  .timeline article.is-current {
    background: transparent;
  }

  .timeline h3 {
    margin-top: 12px;
  }

  .timeline p {
    max-width: none;
  }

  .company-card {
    padding: 28px;
    gap: 28px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    min-height: 360px;
    margin-bottom: 32px;
    padding: 28px;
    background-position: 42% 62%;
  }

  .contact-section::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.82)),
      radial-gradient(circle at 78% 50%, rgba(115, 192, 255, 0.08), transparent 22%);
  }

  .contact-card {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .site-header,
  .hero-copy,
  .task-band-inner,
  .section,
  .contact-section {
    width: min(100% - 32px, var(--max));
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 15px;
  }
}
