:root {
  color-scheme: light;
  --ink: #f5f1e8;
  --muted: #c6cbc4;
  --soft: rgba(245, 241, 232, 0.72);
  --line: rgba(245, 241, 232, 0.18);
  --panel: rgba(19, 25, 27, 0.84);
  --panel-strong: rgba(29, 37, 39, 0.94);
  --paper: #f1ead9;
  --navy: #111a1e;
  --green: #1f7d67;
  --cyan: #48b9d0;
  --amber: #d5a54b;
  --red: #b65353;
  --blue: #4d8bd6;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  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: #ffffff;
  color: #15191b;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header[data-elevated="true"] {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.footer,
.hero-stats {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  color: #ffffff;
}

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

.nav-links {
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.nav-icon-link {
  display: inline-flex;
  min-width: 32px;
  height: 32px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 10px;
  background: #5865f2;
  color: #ffffff;
  font-weight: 800;
}

.discord-icon {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.nav-links a,
.footer a {
  text-decoration: none;
}

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

.footer a:hover {
  color: #15191b;
}

.header-action,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
}

.header-action {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-action-free {
  background: #236d75;
  border-color: #236d75;
}

.header-action-discord {
  background: #5865f2;
  border-color: #5865f2;
}

.hero {
  position: relative;
  min-height: 0;
  display: block;
  padding: 65px 0 0;
  overflow: hidden;
  background: #ffffff;
  color: #15191b;
}

.hero-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(100svh - 65px);
  overflow: hidden;
  background: #000000;
}

.hero-map img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.hero-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.16), transparent 34%);
}

.map-grid {
  position: absolute;
  inset: -20%;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(245, 241, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: rotate(-8deg);
}

.terrain {
  position: absolute;
  opacity: 0.6;
  filter: blur(0.2px);
}

.terrain-a {
  width: 62vw;
  height: 48vh;
  left: -5vw;
  bottom: 7vh;
  clip-path: polygon(0 68%, 12% 48%, 24% 56%, 38% 26%, 52% 42%, 67% 22%, 88% 46%, 100% 40%, 100% 100%, 0 100%);
  background-color: rgba(38, 104, 80, 0.76);
}

.terrain-b {
  width: 54vw;
  height: 62vh;
  right: 7vw;
  top: 11vh;
  clip-path: polygon(0 16%, 16% 10%, 34% 22%, 48% 4%, 68% 20%, 86% 8%, 100% 18%, 100% 100%, 0 100%);
  background-color: rgba(152, 112, 53, 0.45);
}

.airspace {
  position: absolute;
  border: 2px solid rgba(77, 139, 214, 0.72);
  border-radius: 999px;
  box-shadow: inset 0 0 0 10px rgba(77, 139, 214, 0.08);
}

.ring-one {
  width: 34vw;
  aspect-ratio: 1;
  left: 12vw;
  top: 18vh;
}

.ring-two {
  width: 28vw;
  aspect-ratio: 1;
  right: 18vw;
  bottom: 14vh;
  border-color: rgba(181, 83, 83, 0.66);
}

.route-line {
  position: absolute;
  inset: 12vh 14vw 14vh 10vw;
  z-index: 2;
  width: 70vw;
  height: 60vh;
  overflow: visible;
}

.route-line path {
  fill: none;
  stroke: #f7f0d6;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.55));
}

.route-line circle {
  fill: #152126;
  stroke: #f7f0d6;
  stroke-width: 5;
}

.plate-preview {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 7vw, 110px);
  top: 17vh;
  width: min(360px, 38vw);
  min-height: 250px;
  background: var(--paper);
  color: #16120e;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.plate-head {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 3px solid #16120e;
  font-weight: 900;
}

.plate-body {
  position: relative;
  min-height: 202px;
  background:
    linear-gradient(#16120e 2px, transparent 2px) 0 50% / 100% 62px,
    linear-gradient(90deg, #16120e 2px, transparent 2px) 50% 0 / 78px 100%;
}

.fix {
  position: absolute;
  font-size: 12px;
  font-weight: 800;
}

.fix-a {
  left: 22px;
  bottom: 28px;
}

.fix-b {
  left: 142px;
  top: 92px;
}

.fix-c {
  right: 28px;
  top: 44px;
}

.approach {
  position: absolute;
  left: 48px;
  right: 44px;
  top: 126px;
  height: 4px;
  background: #16120e;
  transform: rotate(-22deg);
}

.control-stack {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 76px;
  display: grid;
  gap: 8px;
}

.control-stack button {
  width: 54px;
  height: 38px;
  border: 1px solid rgba(245, 241, 232, 0.28);
  border-radius: 6px;
  background: rgba(9, 13, 15, 0.72);
  color: var(--ink);
  font-weight: 850;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: clamp(34px, 6vw, 76px) clamp(18px, 4vw, 56px) 58px;
}

.hero-logo {
  width: min(340px, 76vw);
  height: auto;
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero p {
  width: min(700px, 100%);
  margin: 24px 0 0;
  color: #596365;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.35;
}

.hero-actions {
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.button.primary {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.button.secondary {
  background: #ffffff;
  color: #15191b;
  border-color: rgba(21, 25, 27, 0.22);
}

.button.free {
  background: #236d75;
  color: #ffffff;
  border-color: #236d75;
}

.button.discord {
  margin-top: 12px;
  background: #5865f2;
  color: #ffffff;
  border-color: #5865f2;
}

.hero-stats {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.95fr;
  align-items: stretch;
  gap: 16px;
  margin: 40px 0 0;
}

.hero-stats .stat-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  height: 100%;
  min-height: 214px;
  padding: 22px 24px;
  border: 1px solid rgba(10, 18, 22, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 249, 0.92)),
    #ffffff;
  box-shadow: 0 18px 42px rgba(12, 22, 28, 0.08);
  overflow: hidden;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-stats .stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--cyan);
}

.stat-card.stat-msfs::before {
  background: #0a6fb7;
}

.stat-card.stat-maps::before {
  background: #1f7d67;
}

.stat-card.stat-nav::before {
  background: #d5a54b;
}

.stat-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #0b1114;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  box-shadow: inset 0 -10px 18px rgba(255, 255, 255, 0.08);
}

.stat-maps .stat-icon {
  background: #1f7d67;
}

.stat-nav .stat-icon {
  background: #ad7d25;
}

.hero-stats dt {
  position: relative;
  z-index: 1;
  color: #101719;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.1;
}

.hero-stats dd {
  position: relative;
  z-index: 1;
  margin: 7px 0 0;
  color: #4f5a5d;
  font-size: 17px;
  line-height: 1.35;
}

.section {
  padding: 92px clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.headline-anchor {
  display: inline-flex;
  gap: 0.22em;
  align-items: baseline;
  color: inherit;
  text-decoration: none;
}

.headline-anchor::after {
  content: "#";
  color: #236d75;
  font-size: 0.54em;
  opacity: 0;
  transition: opacity 160ms ease;
}

.headline-anchor:hover::after,
.headline-anchor:focus-visible::after {
  opacity: 1;
}

h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0;
}

.feature-band {
  background: #ffffff;
  color: #171613;
}

.feature-band .eyebrow {
  color: #236d75;
}

.video-embed {
  width: min(1100px, 100%);
  margin: 0 0 34px;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(23, 22, 19, 0.16);
  background: #000000;
  box-shadow: 0 22px 54px rgba(12, 22, 28, 0.12);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.available-styles {
  width: min(1100px, 100%);
  margin: -10px 0 34px;
  padding: 0;
  border: 0;
  background: transparent;
}

.available-styles h3 {
  margin: 0 0 16px;
  font-size: 18px;
  color: #171613;
}

.available-styles ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.available-styles li {
  min-height: 36px;
  padding: 9px 11px;
  border: 1px solid rgba(35, 109, 117, 0.2);
  border-radius: 6px;
  background: #ffffff;
  color: #2f393b;
  font-size: 14px;
  line-height: 1.2;
}

.available-styles sup {
  color: #7a8587;
  font-size: 10px;
  line-height: 0;
}

.available-styles .style-note {
  min-height: 0;
  padding: 0 2px;
  border: 0;
  background: transparent;
}

.available-styles .style-note span {
  color: #7a8587;
  font-size: 12px;
  line-height: 1.2;
}

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

.feature-grid article {
  --feature-accent: #236d75;
  position: relative;
  height: 320px;
  min-height: 248px;
  padding: 26px;
  border: 1px solid #000000;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 248, 248, 0.72)),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(21, 25, 27, 0.045) 30px 31px),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(21, 25, 27, 0.035) 30px 31px),
    #ffffff;
  box-shadow: 0 18px 42px rgba(12, 22, 28, 0.08);
  overflow: hidden;
}

.feature-grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -46px;
  width: 160px;
  aspect-ratio: 1;
  border: 2px solid color-mix(in srgb, var(--feature-accent), transparent 38%);
  border-radius: 50%;
  opacity: 0.36;
  z-index: 0;
}

.feature-grid article:nth-child(1)::before,
.feature-grid article:nth-child(2)::before,
.feature-grid article:nth-child(3)::before,
.feature-grid article:nth-child(5)::before,
.feature-grid article:nth-child(6)::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background: rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 1;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.feature-grid article:nth-child(1):hover::before,
.feature-grid article:nth-child(2):hover::before,
.feature-grid article:nth-child(3):hover::before,
.feature-grid article:nth-child(5):hover::before,
.feature-grid article:nth-child(6):hover::before {
  opacity: 0;
}

.feature-grid article:nth-child(1) {
  --feature-accent: #236d75;
  color: #ffffff;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent),
    url("assets/world-card.jpg") center / cover,
    #101719;
}

.feature-grid article:nth-child(1)::after {
  display: none;
}

.feature-grid article:nth-child(2) {
  --feature-accent: #d5a54b;
  color: #ffffff;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.43), transparent),
    url("assets/ifr-card.jpg") center 32% / cover,
    #101719;
}

.feature-grid article:nth-child(3) {
  --feature-accent: #4d8bd6;
  color: #ffffff;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent),
    url("assets/styles-card.png") center 38% / cover,
    #101719;
}

.feature-grid article:nth-child(4) {
  --feature-accent: #b65353;
  color: #ffffff;
  background: #101719;
}

.feature-grid article:nth-child(4)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/search-card.png") center 42% / cover;
  filter: invert(1);
}

.feature-grid article:nth-child(4)::after {
  inset: -1px;
  width: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.43), transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 1;
  transition: opacity 180ms ease, backdrop-filter 180ms ease;
}

.feature-grid article:nth-child(5) {
  --feature-accent: #1f7d67;
  color: #ffffff;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent),
    url("assets/route-planning-card.png") center 30% / cover,
    #101719;
}

.feature-grid article:nth-child(1):hover {
  background:
    url("assets/world-card.jpg") center / cover,
    #101719;
}

.feature-grid article:nth-child(2):hover {
  background:
    url("assets/ifr-card.jpg") center 32% / cover,
    #101719;
}

.feature-grid article:nth-child(3):hover {
  background:
    url("assets/styles-card.png") center 38% / cover,
    #101719;
}

.feature-grid article:nth-child(5):hover {
  background:
    url("assets/route-planning-card.png") center 30% / cover,
    #101719;
}

.feature-grid article:nth-child(4):hover {
  background: #101719;
}

.feature-grid article:nth-child(4):hover::after {
  opacity: 0;
}

.feature-grid article:nth-child(6) {
  --feature-accent: #5865f2;
  color: #ffffff;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent),
    url("assets/navigation-tools-card.png") center 42% / cover,
    #101719;
}

.feature-grid article:nth-child(6):hover {
  background:
    url("assets/navigation-tools-card.png") center 42% / cover,
    #101719;
}

.feature-grid h3,
.feature-grid p,
.feature-icon {
  position: relative;
  z-index: 1;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 42px;
  margin-bottom: 34px;
  border: 1px solid #000000;
  border-radius: 6px;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  box-shadow: inset 0 -10px 18px rgba(255, 255, 255, 0.48);
}

.feature-grid h3 {
  max-width: 16ch;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.04;
}

.feature-grid h3,
.feature-grid p {
  transition: background 160ms ease, color 160ms ease, padding 160ms ease;
}

.feature-grid article:nth-child(1) h3,
.feature-grid article:nth-child(1) p,
.feature-grid article:nth-child(2) h3,
.feature-grid article:nth-child(2) p,
.feature-grid article:nth-child(3) h3,
.feature-grid article:nth-child(3) p,
.feature-grid article:nth-child(4) h3,
.feature-grid article:nth-child(4) p,
.feature-grid article:nth-child(5) h3,
.feature-grid article:nth-child(5) p,
.feature-grid article:nth-child(6) h3,
.feature-grid article:nth-child(6) p {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.52);
}

.feature-grid article:hover h3 {
  position: absolute;
  inset: 0 0 auto;
  max-width: none;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  font-size: 20px;
  line-height: 1.12;
  text-shadow: none;
}

.feature-grid article:hover p {
  position: absolute;
  inset: auto 0 0;
  max-width: none;
  margin: 0;
  padding: 10px 16px 12px;
  background: rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.45;
  text-shadow: none;
}

.feature-grid p,
.workflow-copy p,
.buy p,
.updates-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-grid p {
  max-width: 48ch;
  color: rgba(23, 22, 19, 0.72);
}

.feature-grid article:nth-child(1) .feature-icon,
.feature-grid article:nth-child(2) .feature-icon,
.feature-grid article:nth-child(3) .feature-icon,
.feature-grid article:nth-child(4) .feature-icon,
.feature-grid article:nth-child(5) .feature-icon,
.feature-grid article:nth-child(6) .feature-icon {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
}

.feature-grid article:nth-child(1) p,
.feature-grid article:nth-child(2) p,
.feature-grid article:nth-child(3) p,
.feature-grid article:nth-child(4) p,
.feature-grid article:nth-child(5) p,
.feature-grid article:nth-child(6) p {
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  background: #ffffff;
  color: #15191b;
}

.navigation-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(21, 25, 27, 0.06) 32px 33px),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(21, 25, 27, 0.05) 32px 33px);
  color: #15191b;
}

.navigation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid rgba(21, 25, 27, 0.16);
  background: rgba(21, 25, 27, 0.16);
}

.navigation-card {
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  background: #ffffff;
}

.navigation-card.primary-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(300px, 0.58fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(72, 185, 208, 0.13), rgba(213, 165, 75, 0.08)),
    #ffffff;
}

.media-right-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(240px, 0.42fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.navigation-media {
  width: 100%;
  display: block;
  margin: 0 0 24px;
  object-fit: contain;
  object-position: top center;
  border: 1px solid rgba(21, 25, 27, 0.14);
  box-shadow: 0 18px 38px rgba(12, 22, 28, 0.12);
  background: #000000;
}

.route-video {
  width: 100%;
  margin: 0;
}

img.navigation-media {
  background: #ffffff;
}

.navigation-card h3 {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.navigation-card p {
  margin: 18px 0 0;
  color: #596365;
  line-height: 1.6;
}

.workflow-copy {
  max-width: 650px;
}

.workflow-copy p,
.buy p {
  color: #596365;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list p {
  position: relative;
  margin: 0;
  padding-left: 26px;
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
}

.tool-display {
  position: relative;
  min-height: 520px;
}

.tool-display > img,
.chrono-watch,
.computer {
  position: absolute;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.42));
}

.chrono-watch {
  --dial-x: 45.2%;
  --dial-y: 50%;
  width: 30%;
  aspect-ratio: 496 / 464;
  left: 100px;
  top: 54px;
}

.chrono,
.chrono-bezel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chrono-bezel {
  inset: 7.8% auto auto 5.7%;
  width: 79%;
  height: auto;
  aspect-ratio: 1;
  z-index: 2;
  pointer-events: none;
}

.watch-hand,
.sub-hand,
.watch-pin {
  position: absolute;
  z-index: 3;
  left: var(--dial-x);
  top: var(--dial-y);
  transform-origin: 50% 100%;
  border-radius: 999px;
  pointer-events: none;
}

.watch-hand {
  width: 3px;
  height: 31%;
  background: #f5f5f0;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.55);
}

.hour-hand {
  height: 22%;
  width: 6px;
  transform: translate(-50%, -100%) rotate(135deg);
}

.minute-hand {
  height: 33%;
  width: 5px;
  transform: translate(-50%, -100%) rotate(-42deg);
}

.second-hand {
  height: 39%;
  width: 2px;
  background: #e44c47;
  transform: translate(-50%, -100%) rotate(22deg);
}

.gmt-hand {
  height: 37%;
  width: 2px;
  background: #1a86cf;
  transform: translate(-50%, -100%) rotate(218deg);
}

.sub-hand {
  width: 2px;
  height: 9%;
  background: #f5f5f0;
}

.sub-top {
  left: var(--dial-x);
  top: 27%;
  transform: translate(-50%, -100%) rotate(24deg);
}

.sub-left {
  left: 24%;
  top: 50%;
  transform: translate(-50%, -100%) rotate(270deg);
}

.sub-bottom {
  left: var(--dial-x);
  top: 71%;
  transform: translate(-50%, -100%) rotate(180deg);
}

.watch-pin {
  width: 12px;
  height: 12px;
  z-index: 4;
  background: #f5f5f0;
  border: 2px solid #596365;
  transform: translate(-50%, -50%);
}

.calc {
  width: 32%;
  right: 6%;
  top: 0;
}

.computer {
  width: 64%;
  aspect-ratio: 1;
  left: 21%;
  bottom: 0;
}

.computer-base,
.computer-rotor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.computer-rotor {
  transform: rotate(-18deg);
  transform-origin: 50% 50%;
}

.buy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: center;
  background: #ffffff;
  color: #15191b;
}

.comparison {
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(35, 109, 117, 0.06) 44px 45px);
  color: #15191b;
}

.comparison .eyebrow {
  color: #236d75;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(21, 25, 27, 0.16);
  background: rgba(21, 25, 27, 0.12);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #ffffff;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border: 1px solid rgba(21, 25, 27, 0.14);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}

.comparison-table thead th {
  background: #101719;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.comparison-table tbody th {
  width: 26%;
  color: #101719;
  font-weight: 850;
}

.comparison-table td {
  width: 37%;
  color: #596365;
}

.comparison-table tbody tr:nth-child(even) td,
.comparison-table tbody tr:nth-child(even) th {
  background: #f7f8f8;
}

.comparison-muted {
  color: rgba(89, 99, 101, 0.62);
}

.comparison-table .comparison-cta-row th,
.comparison-table .comparison-cta-row td {
  background: #ffffff;
  border-bottom: 0;
  padding: 12px 20px 8px;
}

.buy-panel {
  padding: 24px;
  border: 1px solid rgba(21, 25, 27, 0.16);
  background: #f7f8f8;
}

.buy-panel .button {
  width: 100%;
  margin-top: 10px;
}

.buy-panel .button.primary {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.buy-panel .button.secondary {
  background: #ffffff;
  border-color: rgba(21, 25, 27, 0.22);
  color: #15191b;
}

.buy-panel .button.free {
  background: #236d75;
  border-color: #236d75;
  color: #ffffff;
}

.button[aria-disabled="true"] {
  opacity: 0.72;
  pointer-events: none;
}

.updates {
  background: #ffffff;
  color: #171613;
}

.updates .eyebrow {
  color: #236d75;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.updates-grid article {
  padding: 24px;
  border: 1px solid rgba(23, 22, 19, 0.18);
  background: rgba(255, 255, 255, 0.26);
}

.updates-grid p {
  color: rgba(23, 22, 19, 0.74);
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(21, 25, 27, 0.16);
  background: #ffffff;
  color: #596365;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .plate-preview {
    width: min(330px, 80vw);
    top: 14vh;
    right: 4vw;
    opacity: 0.62;
  }

  .feature-grid,
  .split,
  .buy,
  .updates-grid,
  .navigation-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .navigation-card.primary-card {
    grid-template-columns: 1fr;
  }

  .media-right-card {
    grid-template-columns: 1fr;
  }

  .tool-display {
    min-height: 440px;
  }

  .route-video {
    width: 100%;
  }

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

@media (max-width: 600px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand span {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    min-height: 0;
    padding: 58px 0 0;
  }

  .hero-logo {
    width: 210px;
  }

  .hero-content {
    padding: 30px 16px 42px;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stats .stat-card {
    grid-template-columns: auto 1fr;
    min-height: 128px;
    padding: 18px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }

  .hero-stats dt {
    font-size: 18px;
  }

  .hero-stats dd {
    font-size: 15px;
  }

  .plate-preview {
    top: 10vh;
    right: -90px;
  }

  .route-line {
    inset: 20vh 2vw 20vh -14vw;
    width: 112vw;
  }

  .control-stack {
    right: 12px;
    bottom: 34px;
  }

  .section {
    padding: 64px 16px;
  }

  .available-styles {
    padding: 18px;
  }

  .available-styles ul {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: auto;
  }

  .comparison-table {
    min-width: 640px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px;
  }

  .tool-display {
    min-height: 360px;
  }
}
