:root {
  --color-navy-950: #06111f;
  --color-navy-900: #08182b;
  --color-navy-800: #0d2238;
  --color-blue-500: #2f80ed;
  --color-blue-400: #4da3ff;
  --color-text-dark: #0f172a;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-surface: #ffffff;
  --color-surface-soft: #f8fafc;
  --color-green: #22c55e;
  --color-teal: #0f766e;
  --color-amber: #f59e0b;
  --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 16px 42px rgba(15, 23, 42, 0.09);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text-dark);
  background: var(--color-surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(77, 163, 255, 0.9);
  outline-offset: 4px;
}

.section-shell {
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(6, 17, 31, 0.98), rgba(8, 24, 43, 0.98) 58%, rgba(13, 34, 56, 0.98)),
    linear-gradient(135deg, var(--color-navy-950), var(--color-navy-900));
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(77, 163, 255, 0.22) 1px, transparent 1.2px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 58%, #000 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, rgba(47, 128, 237, 0.12), transparent);
}

.site-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
  padding: 30px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: #ffffff;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1;
  border: 2px solid rgba(77, 163, 255, 0.8);
  border-radius: 10px 4px 10px 4px;
  background: linear-gradient(145deg, rgba(47, 128, 237, 0.24), rgba(77, 163, 255, 0.08));
  box-shadow: 0 10px 24px rgba(47, 128, 237, 0.25);
}

.brand-word {
  display: inline-flex;
  font-size: 1.45rem;
  line-height: 1;
}

.brand-word span:first-child {
  color: #ffffff;
}

.brand-word span:last-child {
  color: var(--color-blue-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  transition: color var(--transition), transform var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-blue-400);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 1.02fr);
  gap: 44px;
  align-items: center;
  min-height: 590px;
  padding: 28px 0 76px;
}

.section-eyebrow {
  margin: 0 0 12px;
  color: var(--color-blue-500);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .section-eyebrow {
  color: var(--color-blue-400);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: 3.85rem;
  line-height: 1.04;
}

.hero h1 span {
  display: inline-block;
  color: var(--color-blue-400);
}

.hero-lede {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.button svg,
.store-button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  padding: 0 20px;
}

.button-primary {
  color: #ffffff;
  border: 1px solid rgba(77, 163, 255, 0.55);
  background: linear-gradient(135deg, var(--color-blue-500), #1768d7);
  box-shadow: 0 16px 32px rgba(47, 128, 237, 0.32);
}

.button-primary:hover,
.store-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(47, 128, 237, 0.38);
}

.button-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 640px;
  margin-top: 44px;
}

.feature-callout {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(77, 163, 255, 0.36);
  border-radius: 16px;
  background: rgba(47, 128, 237, 0.22);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-callout h2 {
  margin: 0 0 6px;
  font-size: 0.96rem;
}

.feature-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-visual {
  min-width: 0;
}

.device-stage {
  position: relative;
  min-height: 430px;
}

.laptop-mockup {
  position: absolute;
  top: 28px;
  right: 58px;
  width: 470px;
  filter: drop-shadow(0 35px 52px rgba(0, 0, 0, 0.35));
}

.laptop-screen {
  display: grid;
  grid-template-columns: 90px 1fr;
  height: 282px;
  overflow: hidden;
  border: 10px solid #101722;
  border-radius: 20px 20px 10px 10px;
  background: #f9fbff;
}

.laptop-camera {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.laptop-base {
  position: relative;
  width: 560px;
  height: 22px;
  margin-left: -44px;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(180deg, #97a7bd, #334155);
}

.laptop-base::after {
  position: absolute;
  left: 50%;
  top: 0;
  width: 110px;
  height: 7px;
  content: "";
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
  background: rgba(255, 255, 255, 0.22);
}

.mock-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px 18px;
  background: #172337;
}

.mock-sidebar span {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.mock-sidebar span:nth-child(1),
.mock-sidebar span:nth-child(3) {
  background: rgba(77, 163, 255, 0.75);
}

.mock-dashboard {
  padding: 24px;
  color: var(--color-text-dark);
}

.mock-dashboard p {
  margin: 0 0 4px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.mock-dashboard strong {
  font-size: 1.02rem;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 14px;
  margin-top: 22px;
}

.mock-grid section {
  min-height: 88px;
  padding: 13px;
  border: 1px solid #e8eef6;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.mock-grid section span,
.phone-ui span,
.mini-panel span {
  display: block;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
}

.mock-grid section b {
  display: block;
  margin-top: 6px;
}

.mock-grid section i {
  display: block;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: #e2e8f0;
}

.mock-grid section i:nth-of-type(1) {
  width: 82%;
  background: #bfe6ff;
}

.mock-grid section i:nth-of-type(2) {
  width: 62%;
}

.mock-grid .wide {
  grid-column: 1 / -1;
  min-height: 72px;
}

.ring {
  width: 44px;
  height: 44px;
  margin-top: 10px;
  border: 7px solid #dbeafe;
  border-top-color: var(--color-green);
  border-radius: 50%;
}

.bars {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 34px;
  margin-top: 10px;
}

.bars i {
  width: 18px;
  margin: 0;
  background: linear-gradient(180deg, #4da3ff, #2f80ed);
}

.bars i:nth-child(1) {
  height: 45%;
}

.bars i:nth-child(2) {
  height: 72%;
}

.bars i:nth-child(3) {
  height: 55%;
}

.bars i:nth-child(4) {
  height: 88%;
}

.bars i:nth-child(5) {
  height: 64%;
}

.hero-phone {
  position: absolute;
  right: 86px;
  top: 168px;
  width: 158px;
  height: 276px;
  padding: 18px 13px 13px;
  border: 8px solid #0a101a;
  border-radius: 32px;
  background: #07111f;
  box-shadow: 0 28px 46px rgba(0, 0, 0, 0.36);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 44px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #1d2939;
}

.phone-ui {
  height: 100%;
  padding: 26px 12px 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #0d2238, #08182b);
}

.phone-ui b {
  display: block;
  margin: 8px 0 16px;
  font-size: 0.92rem;
}

.phone-ui i {
  display: block;
  height: 30px;
  margin-top: 9px;
  border: 1px solid rgba(77, 163, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.phone-ui i:nth-of-type(2) {
  border-color: rgba(34, 197, 94, 0.32);
}

.watch-mockup {
  position: absolute;
  right: -4px;
  top: 226px;
  display: grid;
  width: 90px;
  height: 124px;
  place-items: center;
  padding: 19px 9px 13px;
  color: #ffffff;
  border: 7px solid #111827;
  border-radius: 30px;
  background: linear-gradient(180deg, #182233, #08111f);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.32);
}

.watch-mockup::before,
.watch-mockup::after {
  position: absolute;
  left: 50%;
  width: 52px;
  height: 18px;
  content: "";
  transform: translateX(-50%);
  background: #111827;
}

.watch-mockup::before {
  top: -20px;
  border-radius: 18px 18px 0 0;
}

.watch-mockup::after {
  bottom: -20px;
  border-radius: 0 0 18px 18px;
}

.watch-mockup span {
  width: 38px;
  height: 38px;
  border: 3px solid var(--color-blue-400);
  border-radius: 50%;
}

.watch-mockup span::after {
  display: block;
  width: 10px;
  height: 18px;
  margin: 4px auto;
  content: "";
  transform: rotate(45deg);
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}

.watch-mockup strong {
  font-size: 0.78rem;
}

.watch-mockup small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.64rem;
}

.about-band {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border-bottom: 1px solid var(--color-border);
}

.about-shell {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 54px 0;
}

.about-shell h2,
.section-heading h2,
.contact-shell h2 {
  margin: 0;
  font-size: 2.3rem;
  line-height: 1.16;
}

.about-shell p:last-child {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.apps-section {
  padding: 62px 0 36px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 42%, #f6faff 100%);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:last-child {
  margin: 16px auto 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.app-list {
  display: grid;
  gap: 22px;
}

.app-card {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 286px;
  gap: 28px;
  align-items: center;
  min-height: 226px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 128, 237, 0.24);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
}

.app-card-featured {
  border-color: rgba(47, 128, 237, 0.42);
  background:
    linear-gradient(135deg, rgba(239, 248, 255, 0.92), rgba(255, 255, 255, 0.94) 54%, rgba(237, 247, 255, 0.92)),
    #ffffff;
}

.new-ribbon {
  position: absolute;
  top: 18px;
  left: -38px;
  z-index: 4;
  width: 132px;
  padding: 8px 0;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  transform: rotate(-42deg);
  background: linear-gradient(135deg, var(--color-blue-500), #1d4ed8);
  box-shadow: 0 10px 24px rgba(47, 128, 237, 0.25);
}

.app-visual {
  min-width: 0;
}

.phone-pair {
  position: relative;
  min-height: 174px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(229, 238, 249, 0.78));
}

.phone-pair-soft {
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.98), rgba(255, 255, 255, 0.9));
}

.phone-frame {
  position: absolute;
  top: 14px;
  width: 86px;
  height: 164px;
  overflow: hidden;
  border: 6px solid #111827;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-frame-front {
  left: 58px;
  z-index: 2;
}

.phone-frame-back {
  left: 136px;
  transform: rotate(-2deg);
}

.phone-frame-back img {
  object-position: center center;
}

.mini-panel {
  position: absolute;
  right: 32px;
  top: 42px;
  display: grid;
  width: 96px;
  gap: 8px;
  padding: 14px;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
}

.mini-panel strong {
  color: var(--color-blue-500);
  font-size: 2rem;
  line-height: 1;
}

.mini-panel i {
  height: 7px;
  border-radius: 999px;
  background: #dbeafe;
}

.mini-panel i:nth-of-type(1) {
  width: 82%;
}

.mini-panel i:nth-of-type(2) {
  width: 64%;
}

.mini-panel i:nth-of-type(3) {
  width: 72%;
  background: #bfdbfe;
}

.finance-visual {
  position: relative;
  min-height: 176px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(240, 253, 244, 0.88), rgba(248, 250, 252, 0.94));
}

.finance-laptop {
  position: absolute;
  left: 12px;
  top: 34px;
  width: 220px;
}

.finance-laptop::after {
  display: block;
  width: 248px;
  height: 10px;
  margin-left: -14px;
  content: "";
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, #9aa8ba, #475569);
}

.finance-window {
  display: grid;
  grid-template-columns: 42px 1fr;
  height: 126px;
  overflow: hidden;
  border: 7px solid #111827;
  border-radius: 12px 12px 6px 6px;
  background: #ffffff;
}

.finance-sidebar {
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.9), rgba(21, 128, 61, 0.9));
}

.finance-content {
  padding: 14px;
}

.finance-content span {
  color: #64748b;
  font-size: 0.65rem;
  font-weight: 800;
}

.finance-content strong {
  display: block;
  margin-top: 4px;
  font-size: 1.22rem;
}

.chart-row {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 36px;
  margin-top: 8px;
}

.chart-row i {
  width: 13px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #22c55e, #0f766e);
}

.chart-row i:nth-child(1) {
  height: 44%;
}

.chart-row i:nth-child(2) {
  height: 72%;
}

.chart-row i:nth-child(3) {
  height: 50%;
}

.chart-row i:nth-child(4) {
  height: 90%;
}

.chart-row i:nth-child(5) {
  height: 62%;
}

.finance-cards {
  display: flex;
  gap: 7px;
  margin-top: 8px;
}

.finance-cards b {
  width: 58px;
  height: 14px;
  border-radius: 999px;
  background: #dcfce7;
}

.finance-phone {
  position: absolute;
  right: 22px;
  top: 30px;
  width: 72px;
  height: 142px;
  padding: 16px 8px;
  border: 6px solid #111827;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 13px 26px rgba(15, 23, 42, 0.18);
}

.finance-phone span {
  display: block;
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 900;
}

.donut {
  width: 42px;
  height: 42px;
  margin: 14px auto 12px;
  border: 7px solid #dcfce7;
  border-top-color: var(--color-green);
  border-right-color: var(--color-teal);
  border-radius: 50%;
}

.finance-phone i {
  display: block;
  height: 6px;
  margin-top: 7px;
  border-radius: 999px;
  background: #d1fae5;
}

.gym-visual {
  position: relative;
  min-height: 182px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(5, 150, 105, 0.14), rgba(47, 128, 237, 0.09)),
    #07111f;
}

.gym-tablet {
  position: absolute;
  left: 18px;
  top: 30px;
  width: 210px;
  height: 122px;
  overflow: hidden;
  border: 7px solid #101722;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.gym-tablet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.gym-phone {
  position: absolute;
  right: 26px;
  top: 36px;
  width: 74px;
  height: 136px;
  overflow: hidden;
  border: 6px solid #101722;
  border-radius: 19px;
  background: #ffffff;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.24);
}

.gym-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.app-copy {
  min-width: 0;
}

.app-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}

.app-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-icon-image {
  background: #0f172a;
}

.app-icon-letter {
  color: #ffffff;
  font-size: 1.34rem;
  font-weight: 900;
}

.app-icon-mobile {
  background: linear-gradient(135deg, #4da3ff, #2f80ed);
}

.app-icon-inx {
  background: linear-gradient(135deg, #22c55e, #15803d);
  font-size: 1rem;
}

.app-icon-dark {
  background: #07111f;
}

.app-copy h3 {
  margin: 0 0 7px;
  font-size: 1.44rem;
}

.category-pill {
  display: inline-flex;
  max-width: 100%;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.category-blue {
  color: #1d4ed8;
  background: #dbeafe;
}

.category-green {
  color: #15803d;
  background: #dcfce7;
}

.category-purple {
  color: #6d28d9;
  background: #ede9fe;
}

.app-copy p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.store-button {
  min-height: 40px;
  padding: 0 14px;
  color: var(--color-text-dark);
  border: 1px solid #cbd5e1;
  background: #ffffff;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 128, 237, 0.55);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.store-button-primary {
  color: #ffffff;
  border-color: rgba(47, 128, 237, 0.7);
  background: linear-gradient(135deg, var(--color-blue-500), #1d4ed8);
}

.testimonial {
  min-width: 0;
  padding-left: 28px;
  border-left: 1px solid var(--color-border);
}

.rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}

.rating span {
  color: var(--color-amber);
  font-size: 1.14rem;
}

.rating strong {
  color: var(--color-text-muted);
  font-size: 0.84rem;
}

.testimonial blockquote {
  margin: 0 0 13px;
  color: #334155;
  font-size: 0.96rem;
  font-style: italic;
  line-height: 1.65;
}

.testimonial cite {
  color: var(--color-text-dark);
  font-style: normal;
  font-weight: 800;
}

.promo-panel h4 {
  margin: 0 0 12px;
  color: #1d4ed8;
  font-size: 1.1rem;
}

.promo-panel p {
  margin: 0 0 17px;
  color: #334155;
  line-height: 1.65;
}

.promo-crown {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--color-amber);
}

.promo-crown svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1d4ed8;
  font-weight: 900;
}

.text-link:hover {
  color: var(--color-blue-500);
}

.contact-section {
  padding: 42px 0 68px;
  background: linear-gradient(180deg, #f6faff, #ffffff);
}

.contact-shell {
  max-width: 720px;
  text-align: center;
}

.contact-icon {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 20px;
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue-500), #1d4ed8);
  box-shadow: 0 18px 34px rgba(47, 128, 237, 0.26);
}

.contact-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-shell p {
  max-width: 620px;
  margin: 14px auto 24px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(8, 24, 43, 0.98)),
    var(--color-navy-950);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 23px 0;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 30px;
  font-size: 1.1rem;
}

.footer-brand .brand-word {
  font-size: 1.08rem;
}

.footer-shell p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-weight: 700;
}

.footer-links a {
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-blue-400);
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

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

  .device-stage {
    min-height: 390px;
    max-width: 620px;
    margin: 0 auto;
  }

  .laptop-mockup {
    right: 76px;
  }

  .hero-phone {
    right: 116px;
  }

  .watch-mockup {
    right: 24px;
  }

  .app-card {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .testimonial {
    grid-column: 1 / -1;
    padding: 22px 0 0;
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .testimonial blockquote {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  .section-shell,
  .site-nav {
    width: min(100% - 32px, 1160px);
  }

  .site-nav {
    padding-top: 20px;
  }

  .nav-toggle {
    position: relative;
    z-index: 14;
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 12;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 28px;
    transform: translateX(100%);
    background: rgba(6, 17, 31, 0.97);
    transition: transform var(--transition);
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.35rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .feature-grid,
  .about-shell,
  .app-card {
    grid-template-columns: 1fr;
  }

  .feature-callout {
    max-width: 430px;
  }

  .device-stage {
    min-height: 330px;
  }

  .laptop-mockup {
    left: 0;
    right: auto;
    width: 410px;
  }

  .laptop-screen {
    height: 246px;
  }

  .laptop-base {
    width: 486px;
    margin-left: -38px;
  }

  .hero-phone {
    right: 80px;
    top: 144px;
    transform: scale(0.92);
    transform-origin: top right;
  }

  .watch-mockup {
    right: 4px;
    top: 198px;
    transform: scale(0.88);
    transform-origin: top right;
  }

  .about-shell {
    gap: 20px;
  }

  .about-shell h2,
  .section-heading h2,
  .contact-shell h2 {
    font-size: 2rem;
  }

  .app-card {
    padding: 22px;
  }

  .phone-pair,
  .finance-visual,
  .gym-visual {
    min-height: 210px;
  }

  .phone-frame-front {
    left: 72px;
  }

  .phone-frame-back {
    left: 150px;
  }

  .finance-laptop {
    left: 36px;
  }

  .gym-tablet {
    width: 245px;
    height: 142px;
  }

  .gym-phone {
    right: 56px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .site-nav {
    width: min(100% - 24px, 1160px);
  }

  .brand-word {
    font-size: 1.25rem;
  }

  .hero-content {
    padding-top: 24px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: 2.44rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .store-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .store-button {
    width: 100%;
  }

  .feature-grid {
    margin-top: 34px;
  }

  .device-stage {
    min-height: 305px;
    margin-left: -14px;
  }

  .laptop-mockup {
    width: 342px;
  }

  .laptop-screen {
    grid-template-columns: 62px 1fr;
    height: 216px;
    border-width: 8px;
  }

  .laptop-base {
    width: 400px;
    margin-left: -30px;
  }

  .mock-dashboard {
    padding: 18px;
  }

  .mock-grid {
    gap: 10px;
  }

  .mock-grid section {
    padding: 10px;
  }

  .hero-phone {
    right: 36px;
    top: 132px;
    transform: scale(0.78);
  }

  .watch-mockup {
    right: -10px;
    top: 194px;
    transform: scale(0.74);
  }

  .about-shell {
    padding: 42px 0;
  }

  .apps-section {
    padding-top: 48px;
  }

  .app-card {
    border-radius: 20px;
  }

  .app-title-row {
    align-items: flex-start;
  }

  .app-copy h3 {
    font-size: 1.28rem;
  }

  .phone-pair,
  .finance-visual,
  .gym-visual {
    min-height: 190px;
  }

  .phone-frame {
    top: 16px;
    width: 78px;
    height: 150px;
  }

  .phone-frame-front {
    left: 40px;
  }

  .phone-frame-back {
    left: 112px;
  }

  .mini-panel {
    right: 18px;
    top: 48px;
    width: 88px;
  }

  .finance-laptop {
    left: 14px;
    width: 198px;
  }

  .finance-laptop::after {
    width: 224px;
  }

  .finance-phone {
    right: 12px;
  }

  .gym-tablet {
    left: 14px;
    width: 206px;
    height: 122px;
  }

  .gym-phone {
    right: 16px;
    width: 68px;
    height: 126px;
  }

  .contact-section {
    padding-bottom: 54px;
  }
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(6, 17, 31, 0.04), rgba(248, 250, 252, 0.9) 300px),
    #f8fafc;
}

.legal-nav {
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(8, 24, 43, 0.98)),
    var(--color-navy-950);
}

.legal-nav .site-nav {
  padding: 22px 0;
}

.legal-nav .nav-links {
  gap: 24px;
}

.legal-main {
  padding: 56px 0 76px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 24px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.legal-sidebar p {
  margin: 0 0 14px;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-sidebar a {
  display: block;
  padding: 9px 0;
  color: #334155;
  font-weight: 750;
}

.legal-sidebar a:hover {
  color: var(--color-blue-500);
}

.legal-document {
  padding: 42px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.legal-document header {
  padding-bottom: 26px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}

.legal-document h1 {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 2.65rem;
  line-height: 1.08;
}

.legal-kicker {
  margin: 0 0 12px;
  color: var(--color-blue-500);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-updated {
  margin: 14px 0 0;
  color: var(--color-text-muted);
  font-weight: 700;
}

.legal-document h2 {
  margin: 34px 0 12px;
  color: var(--color-text-dark);
  font-size: 1.42rem;
}

.legal-document h3 {
  margin: 24px 0 10px;
  color: var(--color-text-dark);
  font-size: 1.08rem;
}

.legal-document p,
.legal-document li {
  color: #475569;
  font-size: 1rem;
  line-height: 1.72;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document ul {
  padding-left: 1.25rem;
  margin: 0 0 18px;
}

.legal-document a {
  color: #1d4ed8;
  font-weight: 800;
}

.legal-document .button-primary {
  color: #ffffff;
}

.legal-document .button-primary:hover {
  transform: none;
  background: linear-gradient(135deg, #3b8df3, #1d63cf);
  box-shadow: 0 16px 30px rgba(47, 128, 237, 0.3);
}

.legal-callout {
  padding: 18px;
  margin: 24px 0;
  border: 1px solid rgba(47, 128, 237, 0.24);
  border-radius: 16px;
  background: #eff6ff;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.support-card {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-surface-soft);
}

.support-card h2,
.support-card h3 {
  margin-top: 0;
}

@media (max-width: 820px) {
  .legal-main {
    padding: 36px 0 56px;
  }

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

  .legal-sidebar {
    position: static;
  }

  .legal-document {
    padding: 28px;
  }

  .legal-document h1 {
    font-size: 2.2rem;
  }

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

@media (max-width: 560px) {
  .legal-document {
    padding: 22px;
    border-radius: 18px;
  }

  .legal-document h1 {
    font-size: 1.95rem;
  }
}
