:root {
  color-scheme: light;
  --ink: #081927;
  --muted: #536675;
  --surface: #ffffff;
  --surface-soft: #f5fbff;
  --surface-blue: #eaf6ff;
  --line: rgba(28, 82, 129, 0.16);
  --blue: #1769e8;
  --blue-dark: #0f4ca8;
  --green: #20ad62;
  --red: #dc3f3f;
  --gold: #e7a72f;
  --violet: #7c4dff;
  --shadow: 0 22px 58px rgba(12, 42, 74, 0.16);
  --content: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface-soft);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 251, 255, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--content), calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(23, 105, 232, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.nav-links a:hover,
.text-link:hover {
  color: var(--blue);
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-cta,
.primary-button {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(23, 105, 232, 0.24);
}

.nav-cta {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.secondary-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.apple-mark svg {
  width: 17px;
  height: 21px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - 92px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 66px 0 76px;
  background:
    linear-gradient(115deg, rgba(246, 251, 255, 0.98) 0%, rgba(238, 248, 255, 0.88) 44%, rgba(192, 226, 250, 0.72) 100%),
    linear-gradient(150deg, #ffffff 0%, #dff2ff 54%, #b9defa 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(246, 251, 255, 0.98));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding-right: min(50vw, 620px);
}

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

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

figure {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

h1,
h2,
h3 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(2.85rem, 7vw, 5.6rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: #26394e;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  min-width: 142px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(31, 87, 139, 0.08);
}

.hero-stats dt {
  font-size: 1rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-boxer {
  position: absolute;
  right: max(24px, calc((100% - var(--content)) / 2 + 38px));
  bottom: 38px;
  width: clamp(170px, 24vw, 320px);
  height: auto;
  opacity: 0.13;
  filter: drop-shadow(0 28px 46px rgba(8, 25, 39, 0.18));
}

.device-frame {
  position: relative;
  overflow: hidden;
  background: #08121e;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: var(--shadow);
}

.device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 416 / 496;
  object-fit: contain;
}

.phone-frame {
  border-radius: 34px;
}

.watch-frame {
  border-radius: 42px;
}

.hero-phone-main {
  position: absolute;
  z-index: 3;
  right: max(246px, calc((100% - var(--content)) / 2 + 248px));
  top: 76px;
  width: clamp(230px, 23vw, 318px);
  aspect-ratio: 1320 / 2868;
  transform: rotate(-5deg);
}

.hero-phone-side {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100% - var(--content)) / 2 + 22px));
  top: 118px;
  width: clamp(210px, 21vw, 290px);
  aspect-ratio: 1320 / 2868;
  transform: rotate(6deg);
}

.hero-watch {
  position: absolute;
  z-index: 4;
  right: max(110px, calc((100% - var(--content)) / 2 + 96px));
  top: 504px;
  width: clamp(142px, 14vw, 186px);
  aspect-ratio: 416 / 496;
}

.proof-strip {
  position: relative;
  z-index: 3;
  width: min(var(--content), calc(100% - 32px));
  margin: -24px auto 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(31, 87, 139, 0.12);
}

.proof-strip span {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: #24394c;
  background: rgba(23, 105, 232, 0.08);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.section-shell {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
}

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

.section-heading p:last-child {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.screenshots-section {
  padding: 96px 0;
}

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

.screen-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(31, 87, 139, 0.08);
}

.screen-card {
  padding: 16px;
}

.screen-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  column-gap: 28px;
  align-items: center;
}

.screen-card-wide .shot-frame {
  margin-bottom: 0;
}

.screen-card-wide .screen-card-copy {
  max-width: 620px;
}

.screen-card-featured {
  background: #ffffff;
}

.shot-frame {
  overflow: hidden;
  margin-bottom: 18px;
  background: #08121e;
  border: 1px solid rgba(8, 25, 39, 0.1);
  border-radius: 22px;
}

.phone-shot {
  aspect-ratio: 1320 / 2868;
}

.watch-widget-shot {
  aspect-ratio: 832 / 992;
}

.shot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-card p,
.feature-grid p,
.faq-list p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.feature-band {
  padding: 92px 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(8, 25, 39, 0.98), rgba(18, 61, 103, 0.96)),
    linear-gradient(90deg, #081927, #15518f);
}

.feature-band .eyebrow {
  color: #8fd8ff;
}

.feature-band h2,
.feature-band h3 {
  color: #ffffff;
}

.feature-band p {
  color: rgba(235, 247, 255, 0.78);
}

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

.feature-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.feature-marker {
  display: block;
  width: 32px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
}

.marker-green {
  background: var(--green);
}

.marker-blue {
  background: #58a5ff;
}

.marker-red {
  background: var(--red);
}

.marker-gold {
  background: var(--gold);
}

.marker-violet {
  background: var(--violet);
}

.marker-slate {
  background: #b9cce0;
}

.together-section {
  padding: 96px 0 104px;
}

.together-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.together-copy {
  display: grid;
  gap: 14px;
}

.together-copy article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(31, 87, 139, 0.08);
}

.together-copy p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.together-shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.together-shots .shot-frame {
  margin-bottom: 0;
  box-shadow: var(--shadow);
}

.group-participant-shot {
  transform: translateY(26px);
}

.compare-section {
  padding: 96px 0;
}

.comparison-table-wrap {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(31, 87, 139, 0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}

.comparison-table thead th {
  color: #ffffff;
  background: #0f4ca8;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table tbody th {
  width: 64%;
  color: #203448;
  font-size: 0.98rem;
  font-weight: 800;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f7fbff;
}

.check,
.cross {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
}

.check {
  color: #0f6f3d;
  background: rgba(32, 173, 98, 0.14);
}

.cross {
  color: #a73232;
  background: rgba(220, 63, 63, 0.12);
}

.watch-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 96px 0;
}

.watch-copy {
  max-width: 480px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}

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

.watch-card {
  padding: 12px;
  color: #ffffff;
  background: #08121e;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.watch-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 416 / 496;
  object-fit: contain;
  border-radius: 24px;
}

.watch-card figcaption {
  padding: 10px 4px 2px;
  color: #d9e8f4;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.faq-section {
  padding: 24px 0 96px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin-top: 10px;
}

.download-section {
  padding: 52px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.download-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.download-shell img {
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(23, 105, 232, 0.24);
}

.download-shell h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.download-shell p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 28px 0;
  color: #b9cce0;
  background: var(--ink);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-shell a {
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .hero-content {
    padding-right: 40vw;
  }

  .hero-phone-main {
    right: 218px;
  }

  .hero-phone-side {
    right: 16px;
  }

  .hero-watch {
    right: 84px;
  }

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

  .together-layout {
    grid-template-columns: 1fr;
  }

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

  .watch-section {
    grid-template-columns: 1fr;
  }

  .watch-copy {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    align-items: start;
    min-height: calc(100svh - 64px);
    padding: 54px 0 260px;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero-stage {
    opacity: 0.22;
  }

  .hero-phone-main {
    right: 34%;
    top: auto;
    bottom: 8px;
    width: 224px;
  }

  .hero-phone-side {
    right: -52px;
    top: auto;
    bottom: 0;
    width: 210px;
  }

  .hero-watch {
    right: 52px;
    top: auto;
    bottom: 32px;
    width: 136px;
  }

  .hero-stats {
    display: none;
  }

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

  .together-section {
    padding: 72px 0;
  }

  .together-copy {
    grid-template-columns: 1fr;
  }

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

  .group-participant-shot {
    transform: none;
  }

  .watch-section {
    padding: 72px 0;
  }

  .download-shell {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 660px) {
  .brand span {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero-actions,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .screens-grid,
  .together-shots,
  .watch-grid {
    grid-template-columns: 1fr;
  }

  .screen-card {
    padding: 14px;
  }

  .screen-card-wide {
    display: block;
  }

  .screen-card-wide .shot-frame {
    margin-bottom: 18px;
  }

  .phone-shot {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }

  .watch-widget-shot {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }

  .together-shots .phone-shot {
    width: 100%;
  }

  .comparison-table-wrap {
    border-radius: 8px;
  }

  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .comparison-table tr {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table tbody tr:last-child {
    border-bottom: 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0;
    border-bottom: 0;
  }

  .comparison-table tbody th {
    width: auto;
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .comparison-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 42px;
  }

  .comparison-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 800;
  }

  .watch-card {
    max-width: 260px;
    margin-right: auto;
    margin-left: auto;
  }

  .screenshots-section,
  .feature-band,
  .together-section,
  .compare-section,
  .faq-section {
    padding-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
