:root {
  color-scheme: light;
  --bg: #f7faff;
  --surface: #ffffff;
  --surface-soft: #eef5ff;
  --ink: #182235;
  --muted: #66748a;
  --line: #d9e3f1;
  --primary: #075bdc;
  --primary-dark: #064bb6;
  --teal: #0d8b8b;
  --shadow: 0 24px 70px rgba(26, 42, 72, 0.13);
  --radius: 8px;
  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;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.96)),
    radial-gradient(circle at 12% 16%, rgba(7, 91, 220, 0.08), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(13, 139, 139, 0.08), transparent 30%),
    var(--bg);
  color: var(--ink);
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(217, 227, 241, 0.82);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 760;
  font-size: 1.08rem;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
}

.project-nav {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(96px, auto);
  align-items: end;
  gap: 4px;
  padding: 0 8px;
}

.project-nav__item {
  position: relative;
  display: grid;
  place-items: center;
  gap: 5px;
  min-height: 54px;
  padding: 8px 14px 11px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  letter-spacing: 0;
}

.project-nav__item::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: transparent;
  content: "";
}

.project-nav__item svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.project-nav__item span {
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-nav__item:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.project-nav__item.is-active {
  color: var(--primary);
}

.project-nav__item.is-active::after {
  background: var(--primary);
}

main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.panel {
  display: none;
  min-height: calc(100vh - 164px);
  padding: clamp(38px, 6vw, 70px) 0 40px;
  scroll-margin-top: 132px;
}

.panel.is-active {
  display: block;
  animation: panel-in 220ms ease-out;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-grid,
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.02fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.hero-copy,
.product-copy,
.content-narrow {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.79rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2.7rem, 5.7vw, 4.65rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
  letter-spacing: 0;
}

.lede {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.6vw, 1.24rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 760;
}

.button--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(7, 91, 220, 0.2);
}

.button--primary:hover {
  background: var(--primary-dark);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.brand-card,
.product-visual {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(217, 227, 241, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 244, 255, 0.9)),
    var(--surface);
  box-shadow: var(--shadow);
}

.brand-card {
  display: grid;
  place-items: center;
  padding: 34px;
}

.brand-card img {
  width: min(86%, 430px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(7, 91, 220, 0.15));
}

.section-band {
  margin-top: clamp(34px, 5vw, 56px);
}

.product-section {
  margin-top: clamp(44px, 6vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.section-heading--compact {
  align-items: start;
}

.section-heading--compact > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

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

.project-strip--apps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card,
.steps article,
.roadmap-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(26, 42, 72, 0.06);
}

.project-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  color: var(--ink);
  text-align: left;
}

.project-card.is-current {
  border-color: rgba(7, 91, 220, 0.3);
  background: #fff;
}

.project-card--button {
  cursor: pointer;
}

.project-card--button:hover {
  border-color: rgba(7, 91, 220, 0.44);
  transform: translateY(-1px);
}

.project-card--button:focus-visible {
  outline: 3px solid rgba(7, 91, 220, 0.28);
  outline-offset: 3px;
}

.project-card--empty {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.52);
}

.project-card img,
.project-card__mark {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
}

.project-card img {
  object-fit: cover;
}

.project-card__mark {
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--primary);
  font-weight: 820;
}

.project-card__mark--muted {
  color: var(--teal);
}

.project-card p,
.steps p,
.roadmap-list span {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-visual {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 30px;
}

.product-visual > img {
  width: min(100%, 520px);
  justify-self: center;
  border-radius: var(--radius);
}

.product-visual--timer {
  background:
    linear-gradient(145deg, rgba(12, 13, 13, 0.98), rgba(29, 31, 29, 0.96)),
    #111;
  border-color: rgba(255, 178, 56, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.product-visual--timer > img {
  width: min(64%, 270px);
  filter: drop-shadow(0 18px 34px rgba(255, 178, 56, 0.16));
}

.timer-screen {
  width: min(100%, 430px);
  justify-self: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(25, 26, 25, 0.95);
  color: #f7f1e9;
}

.timer-screen__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  color: rgba(247, 241, 233, 0.68);
  font-weight: 760;
}

.timer-screen__status strong {
  color: #ffbd6e;
  font-size: 1.24rem;
  letter-spacing: 0;
}

.timer-ring {
  display: grid;
  place-items: center;
  width: min(68vw, 220px);
  max-width: 100%;
  aspect-ratio: 1;
  margin: 0 auto 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #191a19 0 58%, transparent 59%),
    conic-gradient(#ffae22 0 72%, rgba(255, 255, 255, 0.12) 72% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.timer-ring span {
  color: #fff7ed;
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  font-weight: 760;
  letter-spacing: 0;
}

.timer-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.timer-controls span {
  height: 42px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.timer-controls span:nth-child(2) {
  background: rgba(255, 174, 34, 0.28);
}

.product-actions {
  margin-top: 30px;
}

.steps--timer span {
  color: #c76f13;
}

.mini-screen {
  width: min(100%, 460px);
  justify-self: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 250, 255, 0.94);
}

.mini-screen__top,
.mini-screen__row,
.mini-screen__nav span {
  border-radius: 3px;
  background: #d8e4f2;
}

.mini-screen__top {
  width: 42%;
  height: 13px;
  margin-bottom: 20px;
}

.mini-screen__row {
  height: 34px;
  margin-bottom: 10px;
}

.mini-screen__row.is-active {
  background: rgba(7, 91, 220, 0.14);
  box-shadow: inset 4px 0 0 var(--primary);
}

.mini-screen__row--short {
  width: 66%;
}

.mini-screen__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.mini-screen__nav span {
  height: 26px;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
}

.feature-list div {
  padding-left: 16px;
  border-left: 3px solid var(--primary);
}

.feature-list--timer div {
  border-left-color: #e8871a;
}

.feature-list dt {
  margin-bottom: 4px;
  font-weight: 820;
}

.feature-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.content-narrow {
  margin: 0 auto;
  text-align: center;
}

.content-narrow .lede {
  margin-right: auto;
  margin-left: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  text-align: left;
}

.steps--product {
  margin-top: 0;
}

.steps article {
  padding: 22px;
}

.steps span {
  display: block;
  margin-bottom: 26px;
  color: var(--primary);
  font-weight: 820;
}

.roadmap-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  text-align: left;
}

.roadmap-list div {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
}

.roadmap-list strong {
  color: var(--ink);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 820;
}

@media (max-width: 860px) {
  .site-header {
    display: grid;
    gap: 12px;
    padding: 12px 12px 0;
  }

  .brand {
    justify-self: center;
  }

  .project-nav {
    width: 100%;
    grid-auto-columns: 1fr;
    gap: 0;
    overflow-x: auto;
    padding: 0;
  }

  .project-nav__item {
    min-width: 82px;
    min-height: 58px;
    padding-inline: 8px;
  }

  .project-nav__item span {
    font-size: 0.68rem;
  }

  main {
    width: min(100% - 28px, 680px);
  }

  .panel {
    min-height: calc(100vh - 178px);
    padding-top: 34px;
  }

  .hero-grid,
  .product-layout,
  .project-strip,
  .project-strip--apps,
  .steps {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading--compact > p {
    margin-top: 12px;
  }

  .brand-card,
  .product-visual {
    min-height: 290px;
  }

  .brand-card img {
    width: min(82%, 300px);
  }

  .roadmap-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
