:root {
  color-scheme: dark;
  --ink: #050706;
  --ink-2: #0a0d0c;
  --surface: rgba(18, 21, 20, 0.78);
  --surface-strong: rgba(13, 16, 15, 0.94);
  --line: rgba(245, 246, 238, 0.14);
  --line-strong: rgba(245, 246, 238, 0.24);
  --text: #f6f3e8;
  --muted: #abaea6;
  --muted-2: #737a74;
  --yellow: #ffd51a;
  --yellow-2: #fff07a;
  --teal: #26d6c8;
  --steel: #8f9a9a;
  --danger: #ff705f;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
  --container: 1180px;
  --gutter: 24px;
  --pointer-x: 0;
  --pointer-y: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #050706 0%, #090c0b 48%, #050706 100%);
  color: var(--text);
  font-family:
    Inter, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

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

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

::selection {
  background: rgba(255, 213, 26, 0.32);
  color: var(--text);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  border-radius: 8px;
  background: var(--yellow);
  color: #0a0a06;
  font-size: 14px;
  font-weight: 900;
  padding: 10px 14px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 6, 0.34);
  border: 1px solid transparent;
  border-radius: 8px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 50%;
  max-width: calc(var(--container) + 48px);
  min-height: 64px;
  padding: 10px 12px 10px 14px;
  position: fixed;
  top: 14px;
  transform: translateX(-50%);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    top 180ms ease;
  width: calc(100% - 28px);
  z-index: 50;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 6, 0.76);
  border-color: var(--line);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.28);
  top: 10px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-height: 44px;
}

.brand-mark {
  background:
    linear-gradient(135deg, var(--yellow), #f3b914);
  border-radius: 8px;
  color: #0d0d08;
  display: grid;
  font-size: 18px;
  font-style: italic;
  font-weight: 1000;
  height: 40px;
  place-items: center;
  width: 40px;
}

.brand-word,
.logo-type {
  color: var(--text);
  font-style: italic;
  font-weight: 1000;
  letter-spacing: 0;
}

.brand-word {
  font-size: 16px;
}

.main-nav {
  align-items: center;
  display: none;
  gap: 4px;
}

.main-nav a {
  border-radius: 8px;
  color: rgba(246, 243, 232, 0.76);
  font-size: 13px;
  font-weight: 800;
  min-height: 42px;
  padding: 12px 13px;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(246, 243, 232, 0.08);
  color: var(--text);
  outline: none;
}

.header-cta {
  align-items: center;
  background: var(--yellow);
  border-radius: 8px;
  color: #0d0d08;
  display: inline-flex;
  font-size: 13px;
  font-weight: 1000;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--yellow-2);
  outline: none;
  transform: translateY(-1px);
}

.hero {
  align-items: stretch;
  display: flex;
  min-height: 96svh;
  overflow: hidden;
  padding: 104px var(--gutter) 24px;
  position: relative;
}

.hero-media,
.hero-shade,
.hero-noise {
  inset: 0;
  position: absolute;
}

.hero-media {
  overflow: hidden;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0.82;
  transform:
    translate3d(calc(var(--pointer-x) * -8px), calc(var(--pointer-y) * -8px), 0)
    scale(1.06);
  transition: transform 260ms ease-out;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.96) 0%, rgba(5, 7, 6, 0.84) 33%, rgba(5, 7, 6, 0.38) 62%, rgba(5, 7, 6, 0.76) 100%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.92) 0%, rgba(5, 7, 6, 0.08) 42%, rgba(5, 7, 6, 0.94) 100%);
}

.hero-noise {
  background-image:
    linear-gradient(rgba(246, 243, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 243, 232, 0.03) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.74), transparent 76%);
  opacity: 0.42;
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr);
  margin: 0 auto;
  max-width: var(--container);
  position: relative;
  width: 100%;
  z-index: 2;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy {
  max-width: 710px;
  padding-top: 26px;
}

.logo-type {
  font-size: 24px;
  margin: 0 0 26px;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  color: var(--text);
  font-size: 46px;
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1.04;
  max-width: 760px;
  text-wrap: balance;
  word-break: keep-all;
}

.hero-lead {
  color: rgba(246, 243, 232, 0.78);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.75;
  margin-top: 24px;
  max-width: 640px;
  word-break: keep-all;
}

.hero-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  max-width: 380px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 1000;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button-primary {
  background: var(--yellow);
  box-shadow: 0 20px 60px rgba(255, 213, 26, 0.24);
  color: #0d0d08;
}

.button-secondary {
  background: rgba(246, 243, 232, 0.08);
  border-color: rgba(246, 243, 232, 0.22);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(246, 243, 232, 0.14);
  border-color: rgba(255, 213, 26, 0.48);
  outline: none;
  transform: translateY(-1px);
}

.hero-device-stage {
  display: grid;
  height: 520px;
  margin: 0 auto;
  max-width: 560px;
  position: relative;
  width: 100%;
}

.phone {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 26%),
    linear-gradient(180deg, #171b1a 0%, #080a09 100%);
  border: 1px solid rgba(246, 243, 232, 0.16);
  border-radius: 34px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 34px 120px rgba(0, 0, 0, 0.46);
  overflow: hidden;
  padding: 12px;
  position: absolute;
}

.phone-top {
  background: rgba(0, 0, 0, 0.42);
  border-radius: 999px;
  height: 5px;
  left: 50%;
  position: absolute;
  top: 12px;
  transform: translateX(-50%);
  width: 76px;
  z-index: 2;
}

.phone-screen {
  background:
    linear-gradient(180deg, rgba(255, 213, 26, 0.1), transparent 22%),
    #0d100f;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  overflow: hidden;
  padding: 34px 16px 18px;
}

.phone-main {
  height: 480px;
  left: 50%;
  top: 22px;
  transform:
    translate3d(calc(-50% + var(--pointer-x) * 12px), calc(var(--pointer-y) * 8px), 0)
    rotate(-2deg);
  width: 238px;
  z-index: 4;
}

.phone-rider {
  height: 394px;
  left: 4%;
  top: 78px;
  transform:
    translate3d(calc(var(--pointer-x) * 8px), calc(var(--pointer-y) * 6px), 0)
    rotate(-9deg);
  width: 208px;
  z-index: 3;
}

.phone-workshop {
  height: 390px;
  right: 3%;
  top: 108px;
  transform:
    translate3d(calc(var(--pointer-x) * -8px), calc(var(--pointer-y) * 6px), 0)
    rotate(8deg);
  width: 208px;
  z-index: 2;
}

.screen-header {
  display: grid;
  gap: 4px;
}

.screen-header span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 1000;
}

.screen-header b {
  color: var(--text);
  font-size: 19px;
  line-height: 1.24;
}

.bike-card,
.work-order {
  background: rgba(246, 243, 232, 0.08);
  border: 1px solid rgba(246, 243, 232, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 12px;
}

.bike-card strong,
.work-order strong {
  color: var(--text);
  display: block;
  font-size: 14px;
}

.bike-card span,
.work-order span,
.timeline small {
  color: var(--muted);
  display: block;
  font-size: 11px;
  margin-top: 4px;
}

.bike-silhouette {
  background:
    radial-gradient(circle at 18% 76%, transparent 0 16px, var(--yellow) 17px 19px, transparent 20px),
    radial-gradient(circle at 76% 76%, transparent 0 16px, var(--teal) 17px 19px, transparent 20px),
    linear-gradient(155deg, transparent 0 18%, rgba(255, 213, 26, 0.95) 19% 31%, transparent 32%),
    linear-gradient(14deg, transparent 0 24%, rgba(246, 243, 232, 0.88) 25% 39%, transparent 40%),
    linear-gradient(0deg, transparent 0 64%, rgba(246, 243, 232, 0.55) 65% 72%, transparent 73%);
  height: 74px;
  opacity: 0.9;
}

.bike-silhouette.large {
  height: 118px;
}

.timeline {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 14px 1fr;
}

.timeline b {
  color: var(--text);
  display: block;
  font-size: 13px;
}

.timeline-dot {
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(38, 214, 200, 0.12);
  height: 10px;
  width: 10px;
}

.timeline-dot.yellow {
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 213, 26, 0.14);
}

.maintenance-ring {
  align-items: center;
  aspect-ratio: 1;
  background:
    conic-gradient(var(--yellow) 0 82%, rgba(246, 243, 232, 0.12) 82% 100%);
  border-radius: 50%;
  display: grid;
  margin: 8px auto;
  place-items: center;
  position: relative;
  width: 144px;
}

.maintenance-ring::after {
  background: #0d100f;
  border-radius: 50%;
  content: "";
  inset: 13px;
  position: absolute;
}

.maintenance-ring span,
.maintenance-ring small {
  position: relative;
  z-index: 1;
}

.maintenance-ring span {
  font-size: 32px;
  font-weight: 1000;
}

.maintenance-ring small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 42px;
  position: absolute;
}

.mini-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mini-list li {
  align-items: center;
  background: rgba(246, 243, 232, 0.08);
  border: 1px solid rgba(246, 243, 232, 0.1);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  min-height: 40px;
  padding: 9px 10px;
}

.mini-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mini-list b {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 1000;
}

.mini-list.dark li {
  background: rgba(0, 0, 0, 0.2);
}

.inventory-strip {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(4, 1fr);
}

.inventory-strip i {
  background:
    linear-gradient(180deg, var(--teal), rgba(38, 214, 200, 0.08));
  border-radius: 999px;
  display: block;
  height: 70px;
}

.inventory-strip i:nth-child(2) {
  background: linear-gradient(180deg, var(--yellow), rgba(255, 213, 26, 0.08));
  height: 46px;
  margin-top: 24px;
}

.inventory-strip i:nth-child(3) {
  height: 58px;
  margin-top: 12px;
}

.inventory-strip i:nth-child(4) {
  background: linear-gradient(180deg, var(--steel), rgba(143, 154, 154, 0.08));
  height: 34px;
  margin-top: 36px;
}

.hero-bottom {
  align-items: center;
  background: rgba(5, 7, 6, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 20px;
  display: none;
  gap: 18px;
  left: 50%;
  max-width: var(--container);
  padding: 12px 16px;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  z-index: 3;
}

.hero-bottom span {
  color: rgba(246, 243, 232, 0.55);
  font-size: 11px;
  font-weight: 1000;
}

.section {
  padding: 82px var(--gutter);
  position: relative;
}

.section::before {
  background: linear-gradient(90deg, transparent, rgba(255, 213, 26, 0.18), rgba(38, 214, 200, 0.1), transparent);
  content: "";
  height: 1px;
  left: var(--gutter);
  position: absolute;
  right: var(--gutter);
  top: 0;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--container);
  width: 100%;
}

.section-heading,
.copy-block,
.preview-copy,
.beta-copy {
  display: grid;
  gap: 18px;
}

.section-index {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 1000;
}

h2 {
  color: var(--text);
  font-size: 34px;
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1.14;
  text-wrap: balance;
}

.copy-block p,
.preview-copy p,
.beta-copy p {
  color: rgba(246, 243, 232, 0.7);
  font-size: 16px;
  font-weight: 620;
  line-height: 1.8;
  max-width: 560px;
  word-break: keep-all;
}

.section-problem {
  background:
    linear-gradient(180deg, rgba(9, 12, 11, 1), rgba(12, 15, 14, 0.96));
}

.problem-grid,
.rider-layout,
.workshop-layout,
.preview-layout,
.beta-layout {
  display: grid;
  gap: 34px;
}

.problem-lines {
  border-top: 1px solid var(--line);
  display: grid;
}

.problem-lines article {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(96px, 0.42fr) minmax(0, 1fr);
  padding: 22px 0;
}

.problem-lines span {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 1000;
}

.problem-lines p {
  color: rgba(246, 243, 232, 0.76);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.65;
  word-break: keep-all;
}

.section-riders {
  background:
    linear-gradient(145deg, rgba(255, 213, 26, 0.08), transparent 32%),
    #070908;
}

.feature-rail {
  display: grid;
  gap: 10px;
}

.feature-rail article {
  background:
    linear-gradient(135deg, rgba(246, 243, 232, 0.09), rgba(246, 243, 232, 0.025));
  border: 1px solid rgba(246, 243, 232, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 18px;
}

.feature-rail b {
  color: var(--text);
  font-size: 17px;
}

.feature-rail span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.6;
  word-break: keep-all;
}

.section-workshops {
  background:
    linear-gradient(215deg, rgba(38, 214, 200, 0.09), transparent 38%),
    #050706;
}

.workshop-layout {
  align-items: center;
}

.workshop-board {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(12, 15, 14, 0.92);
  border: 1px solid rgba(246, 243, 232, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  padding: 18px;
}

.board-header {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 6px;
  padding: 6px 4px 18px;
}

.board-header span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 1000;
}

.board-header b {
  color: var(--text);
  font-size: 20px;
}

.flow-row {
  align-items: center;
  background: rgba(246, 243, 232, 0.055);
  border: 1px solid rgba(246, 243, 232, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 44px 1fr;
  min-height: 82px;
  padding: 14px;
}

.flow-row.active {
  background: rgba(255, 213, 26, 0.12);
  border-color: rgba(255, 213, 26, 0.34);
}

.flow-row > span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 1000;
}

.flow-row b {
  color: var(--text);
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.flow-row small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.section-preview {
  background:
    linear-gradient(180deg, #090c0b, #0d100f 52%, #060807);
}

.preview-layout {
  align-items: center;
}

.preview-tabs {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 8px;
}

.preview-tabs button {
  background: rgba(246, 243, 232, 0.055);
  border: 1px solid rgba(246, 243, 232, 0.12);
  border-radius: 8px;
  color: rgba(246, 243, 232, 0.76);
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  min-height: 48px;
  padding: 0 12px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.preview-tabs button:hover,
.preview-tabs button:focus-visible,
.preview-tabs button.is-active {
  background: rgba(255, 213, 26, 0.14);
  border-color: rgba(255, 213, 26, 0.4);
  color: var(--text);
  outline: none;
}

.preview-tabs button.is-active {
  color: var(--yellow);
}

.preview-phone-wrap {
  display: grid;
  min-height: 570px;
  place-items: center;
}

.preview-phone {
  height: 540px;
  position: relative;
  width: 270px;
}

.preview-screen p {
  color: rgba(246, 243, 232, 0.72);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.62;
}

.preview-visual {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 213, 26, 0.12), rgba(38, 214, 200, 0.07));
  border: 1px solid rgba(246, 243, 232, 0.12);
  border-radius: 8px;
  display: grid;
  min-height: 150px;
  overflow: hidden;
  padding: 14px;
}

.preview-visual.history-mode {
  background:
    repeating-linear-gradient(180deg, rgba(246, 243, 232, 0.08) 0 1px, transparent 1px 36px),
    linear-gradient(135deg, rgba(255, 213, 26, 0.14), rgba(38, 214, 200, 0.07));
}

.preview-visual.motogram-mode {
  background:
    linear-gradient(135deg, rgba(255, 213, 26, 0.16), rgba(246, 243, 232, 0.02)),
    radial-gradient(circle at 70% 40%, rgba(38, 214, 200, 0.24), transparent 70px);
}

.motogram-stack {
  display: grid;
  gap: 9px;
}

.motogram-stack span {
  background:
    linear-gradient(135deg, rgba(246, 243, 232, 0.24), rgba(246, 243, 232, 0.04));
  border: 1px solid rgba(246, 243, 232, 0.16);
  border-radius: 8px;
  display: block;
  height: 38px;
}

.motogram-stack span:nth-child(2) {
  margin-left: 22px;
}

.motogram-stack span:nth-child(3) {
  margin-left: 44px;
}

.preview-visual.erp-mode {
  background:
    linear-gradient(90deg, rgba(38, 214, 200, 0.16), transparent 2px),
    linear-gradient(180deg, rgba(255, 213, 26, 0.13), rgba(246, 243, 232, 0.03));
}

.section-beta {
  background:
    linear-gradient(160deg, rgba(255, 213, 26, 0.14), transparent 42%),
    #050706;
  padding-bottom: 92px;
}

.beta-layout {
  align-items: start;
}

.beta-form {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(10, 13, 12, 0.92);
  border: 1px solid rgba(246, 243, 232, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 18px;
}

fieldset {
  border: 0;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

legend,
.beta-form label > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 1000;
  margin-bottom: 7px;
}

fieldset label {
  align-items: center;
  background: rgba(246, 243, 232, 0.055);
  border: 1px solid rgba(246, 243, 232, 0.12);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  min-height: 48px;
  padding: 0 12px;
}

fieldset input {
  accent-color: var(--yellow);
}

.form-grid {
  display: grid;
  gap: 12px;
}

.beta-form label {
  display: grid;
}

.beta-form input:not([type="radio"]),
.beta-form textarea {
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(246, 243, 232, 0.16);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  min-height: 52px;
  outline: none;
  padding: 14px 14px;
  resize: vertical;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.beta-form input:focus,
.beta-form textarea:focus {
  border-color: rgba(255, 213, 26, 0.62);
  box-shadow: 0 0 0 3px rgba(255, 213, 26, 0.14);
}

.form-submit {
  border: 0;
  cursor: pointer;
  margin-top: 2px;
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
  min-height: 42px;
}

.form-note.is-success {
  color: var(--yellow);
}

.site-footer {
  align-items: start;
  background: #030403;
  border-top: 1px solid var(--line);
  color: rgba(246, 243, 232, 0.58);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px var(--gutter);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer b {
  color: var(--text);
  font-style: italic;
}

.site-footer a {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 560px) {
  :root {
    --gutter: 32px;
  }

  .hero-actions {
    flex-direction: row;
    max-width: none;
  }

  .button {
    min-width: 190px;
  }

  .form-grid,
  fieldset {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .site-footer {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 820px) {
  .main-nav {
    display: flex;
  }

  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 48px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.72fr);
  }

  .hero-copy {
    padding-bottom: 74px;
  }

  .hero-device-stage {
    height: 600px;
    max-width: none;
  }

  .phone-main {
    height: 520px;
    width: 258px;
  }

  .phone-rider,
  .phone-workshop {
    height: 420px;
    width: 218px;
  }

  .hero-bottom {
    display: flex;
  }

  .problem-grid,
  .rider-layout,
  .workshop-layout,
  .preview-layout,
  .beta-layout {
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  }

  .workshop-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  }

  .section {
    padding-bottom: 108px;
    padding-top: 108px;
  }

  .problem-lines article {
    gap: 28px;
    grid-template-columns: 160px minmax(0, 1fr);
  }

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

  .feature-rail article:first-child,
  .feature-rail article:last-child {
    grid-column: span 2;
  }

  .preview-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  h1 {
    font-size: 84px;
  }

  .hero {
    min-height: 98svh;
    padding-top: 110px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .phone-rider {
    left: 1%;
  }

  .phone-workshop {
    right: 0;
  }
}

@media (max-width: 719px) {
  .hero {
    min-height: auto;
  }

  .hero-media img {
    opacity: 0.68;
    object-position: 49% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 7, 6, 0.94) 0%, rgba(5, 7, 6, 0.7) 36%, rgba(5, 7, 6, 0.92) 100%),
      linear-gradient(90deg, rgba(5, 7, 6, 0.9) 0%, rgba(5, 7, 6, 0.64) 58%, rgba(5, 7, 6, 0.74) 100%);
  }

  .hero-device-stage {
    height: 440px;
    margin-top: 8px;
  }

  .phone-main {
    height: 420px;
    width: 214px;
  }

  .phone-rider {
    height: 326px;
    left: -4%;
    top: 86px;
    width: 178px;
  }

  .phone-workshop {
    height: 324px;
    right: -5%;
    top: 112px;
    width: 178px;
  }

  .maintenance-ring {
    width: 112px;
  }

  .problem-lines article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  :root {
    --gutter: 18px;
  }

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

  .brand-word {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

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

  .preview-phone {
    width: 250px;
  }
}

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