:root {
  --blue: #0056d2;
  --blue-900: #08357f;
  --green: #2eb67d;
  --ink: #151922;
  --muted: #647084;
  --line: #cfe0f9;
  --soft: #edf5ff;
  --soft-green: #eaf8f1;
  --paper: #ffffff;
  --wash: #f5f9ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: Inter, sans-serif;
}

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

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

.topbar {
  width: min(1420px, calc(100% - 32px));
  margin: 20px auto 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(0, 43, 105, 0.08);
}

.topbar-inner {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) max-content;
  align-items: center;
  gap: 22px;
  padding: 18px 26px;
}

.logo {
  display: block;
  width: 218px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
}

.nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  background: #fff;
}

.nav a.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.top-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  min-width: max-content;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 900;
  white-space: nowrap;
}

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(46, 182, 125, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--blue);
  background: #fff;
}

.hero {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 24px 54px rgba(0, 43, 105, 0.18);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  padding: 42px 44px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(46, 182, 125, 0.18);
  color: #d9ffed;
  padding: 8px 13px;
  font-family: Lexend, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  background: #dff3eb;
  color: #0f7b4d;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Manrope, sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 18px;
  max-width: 780px;
  font-size: clamp(42px, 5.7vw, 78px);
  line-height: 0.98;
}

.green {
  color: var(--green);
}

.brand-word {
  display: inline;
  font-weight: 900;
  white-space: nowrap;
}

.brand-word .brand-myteam {
  color: var(--blue);
}

.brand-word .brand-zone {
  color: var(--green);
}

.brand-word.on-dark .brand-myteam {
  color: #fff;
}

.hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

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

.hero-panel {
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  padding: 24px;
}

.hero-panel-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: 48px 0;
}

.section-title {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.section-title h2 {
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.02;
}

.section-title p,
.lead {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(0, 43, 105, 0.08);
}

.card.blue {
  background: linear-gradient(180deg, #0d4ca9 0%, var(--blue) 100%);
  color: #fff;
}

.card.green {
  background: linear-gradient(135deg, #effaf4, #ffffff);
  border-color: rgba(46, 182, 125, 0.32);
}

.card.soft {
  background: linear-gradient(135deg, #eaf3ff 0%, #f8fbff 100%);
}

.pad {
  padding: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

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

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.feature-card::before {
  content: "";
  display: block;
  height: 8px;
  background: var(--blue);
}

.feature-card.green-line::before {
  background: var(--green);
}

.feature-card h3 {
  margin-top: 18px;
  font-size: 27px;
  line-height: 1.05;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.52;
}

.icon-box {
  display: grid;
  height: 48px;
  width: 48px;
  place-items: center;
  border-radius: 18px;
  background: var(--soft-green);
  color: var(--green);
  font-size: 25px;
  font-weight: 900;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
}

.dark-pill {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
}

.visual-stack {
  display: grid;
  gap: 14px;
}

.mini-screen {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 43, 105, 0.14);
}

.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  background: #f4f8ff;
  padding: 12px;
  margin-top: 10px;
}

.mini-row strong {
  color: var(--blue);
}

.table-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 43, 105, 0.08);
}

.matrix {
  width: 100%;
  border-collapse: collapse;
}

.matrix th {
  background: var(--blue);
  color: #fff;
  padding: 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.matrix td {
  border-top: 1px solid #e0ebfb;
  padding: 17px 18px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  vertical-align: top;
}

.matrix td:first-child {
  color: var(--ink);
  font-weight: 900;
}

.check {
  display: inline-grid;
  height: 23px;
  width: 23px;
  place-items: center;
  border-radius: 50%;
  background: rgba(46, 182, 125, 0.14);
  color: var(--green);
  font-weight: 900;
}

.muted-dash {
  color: #a4afbf;
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 18px;
}

.step-number {
  display: grid;
  height: 46px;
  width: 46px;
  place-items: center;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.step h3 {
  font-size: 23px;
}

.step p {
  margin: 7px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

.quote-panel {
  border-radius: 34px;
  background: var(--blue);
  color: #fff;
  padding: 34px;
}

.quote-panel h2 {
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.02;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.structure {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  padding: 24px;
}

.club-node {
  border-radius: 24px;
  background: var(--blue);
  color: #fff;
  padding: 20px;
}

.sport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sport-node {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f7fbff;
  padding: 16px;
}

.sport-node strong {
  color: var(--blue);
}

.team-chip {
  display: block;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--soft-green);
  color: #0d7a4c;
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 900;
}

.landing-hero {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 58% 48%, rgba(46, 182, 125, 0.16), transparent 22%),
    radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(112deg, #0056d2 0%, #0056d2 43%, #064ba9 58%, #073575 100%);
  color: #fff;
  box-shadow: 0 26px 60px rgba(0, 43, 105, 0.2);
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 86, 210, 0) 0%, rgba(0, 86, 210, 0.3) 43%, rgba(7, 53, 117, 0.18) 58%, rgba(7, 53, 117, 0) 100%),
    radial-gradient(circle at 50% 50%, rgba(46, 182, 125, 0.14), transparent 21%);
  pointer-events: none;
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 650px;
}

.landing-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 52px;
}

.landing-copy h1 {
  max-width: 720px;
  font-size: clamp(48px, 6vw, 86px);
}

.landing-visual {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  padding: 44px 34px;
  background: transparent;
}

.landing-visual::before {
  content: "";
  position: absolute;
  inset: -2px 0 -2px -160px;
  background:
    linear-gradient(90deg, rgba(0, 86, 210, 0) 0%, rgba(7, 53, 117, 0.42) 38%, rgba(7, 53, 117, 0.16) 100%),
    radial-gradient(circle at 28% 45%, rgba(46, 182, 125, 0.18), transparent 32%);
}

.trainer-frame {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  overflow: hidden;
  border: 17px solid #d7e2ef;
  border-radius: 38px;
  background: #07172f;
  box-shadow: 0 28px 60px rgba(0, 24, 71, 0.34);
  transform: rotate(2.5deg);
}

.trainer-frame img {
  display: block;
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
}

.trainer-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 24, 71, 0.04), rgba(0, 24, 71, 0.34));
  pointer-events: none;
}

.phone-card {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 2;
  width: min(460px, calc(100% - 42px));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 20px;
  box-shadow: 0 22px 48px rgba(0, 34, 90, 0.26);
  transform: translateX(-50%) rotate(-1deg);
  backdrop-filter: blur(18px);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 22px;
  color: var(--ink);
}

.phone-kicker {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.phone-headline {
  display: block;
  margin-top: 5px;
  font-size: 22px;
  line-height: 1.18;
}

.phone-badge {
  color: #0f8d5f;
  font-weight: 900;
  text-align: right;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.proof-item {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
}

.proof-item strong {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.audience-card {
  min-height: 310px;
  overflow: hidden;
}

.audience-card .pad {
  min-height: 100%;
}

.screen-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: center;
}

.app-shot {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 36px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 22px 48px rgba(0, 43, 105, 0.16);
}

.app-shot img {
  display: block;
  width: 100%;
  border-radius: 26px;
}

.product-visual-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: center;
}

.visual-copy h2 {
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.02;
}

.visual-copy p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.phone-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.phone-gallery.staggered .phone-frame:nth-child(2) {
  margin-top: 54px;
}

.phone-frame {
  position: relative;
  width: min(285px, 100%);
  border: 10px solid #07172f;
  border-radius: 42px;
  background: #07172f;
  box-shadow: 0 28px 58px rgba(0, 35, 90, 0.24);
}

.phone-frame.small {
  width: min(245px, 100%);
}

.phone-frame.tilt-left {
  transform: rotate(-3deg);
}

.phone-frame.tilt-right {
  transform: rotate(3deg);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 76px;
  height: 20px;
  border-radius: 0 0 16px 16px;
  background: #07172f;
  transform: translateX(-50%);
}

.phone-screen {
  overflow: hidden;
  border-radius: 31px;
  background: #fff;
}

.phone-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-caption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.screenshot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.screenshot-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 43, 105, 0.08);
}

.screenshot-card .phone-frame {
  margin: 0 auto;
}

.screenshot-card h3 {
  margin-top: 16px;
  font-size: 27px;
}

.screenshot-card p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.document-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, #eef6ff);
  padding: 18px;
  box-shadow: 0 26px 58px rgba(0, 43, 105, 0.16);
}

.document-preview::before {
  content: "PDF";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.document-preview img {
  display: block;
  width: 100%;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(0, 43, 105, 0.12);
}

.showcase-panel {
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 12%, rgba(46, 182, 125, 0.12), transparent 24%),
    linear-gradient(135deg, #eaf3ff 0%, #f8fbff 100%);
  padding: 30px;
}

.browser-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 26px 58px rgba(0, 43, 105, 0.15);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e0ebfb;
  background: #f6faff;
  padding: 13px 16px;
}

.browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c8d8ef;
}

.browser-url {
  margin-left: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
}

.browser-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-cloud span {
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.trust-box {
  border: 1px solid rgba(46, 182, 125, 0.26);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  padding: 18px;
}

.trust-box strong {
  display: block;
  color: var(--blue);
  font-family: Manrope, sans-serif;
  font-size: 20px;
}

.trust-box p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-facts {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.hero-fact {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 18px;
}

.hero-fact strong {
  display: block;
  color: var(--blue);
  font-family: Manrope, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.hero-fact span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.intro-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, #eaf3ff 0%, #f8fbff 100%);
  padding: 34px;
}

.intro-card h2 {
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.04;
}

.intro-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

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

.rule {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  padding: 22px;
}

.rule-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 18px;
  background: var(--soft-green);
  color: var(--green);
  font-family: Manrope, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.rule-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rule strong {
  display: block;
  margin-top: 7px;
  color: var(--blue);
  font-family: Manrope, sans-serif;
  font-size: 23px;
  line-height: 1.1;
}

.rule p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
}

.plan {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(0, 43, 105, 0.08);
}

.plan::before {
  content: "";
  display: block;
  height: 10px;
  background: var(--blue);
}

.plan.recommended {
  border-color: rgba(0, 86, 210, 0.5);
  background: linear-gradient(180deg, #0d4ca9 0%, var(--blue) 100%);
  color: #fff;
  box-shadow: 0 30px 70px rgba(0, 86, 210, 0.28);
  transform: translateY(-10px);
}

.plan.recommended::before,
.plan.greenish::before {
  background: var(--green);
}

.plan-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.badge {
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.recommended .badge {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.plan-icon {
  display: grid;
  height: 48px;
  width: 48px;
  place-items: center;
  border-radius: 18px;
  background: var(--soft-green);
  color: var(--green);
  font-size: 26px;
  font-weight: 900;
}

.recommended .plan-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.plan h3 {
  margin-top: 24px;
  font-size: 32px;
  line-height: 1.02;
}

.price {
  margin-top: 22px;
}

.price-main {
  font-family: Manrope, sans-serif;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.price-main small {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.price-sub {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.recommended .price-sub,
.recommended .plan-text,
.recommended .features li {
  color: rgba(255, 255, 255, 0.82);
}

.plan-text {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.features {
  display: grid;
  gap: 13px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.features li {
  display: flex;
  gap: 10px;
  color: #354154;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.recommended .features li {
  color: rgba(255, 255, 255, 0.9);
}

.plan .check {
  flex: 0 0 auto;
}

.recommended .check {
  background: rgba(46, 182, 125, 0.2);
  color: #a6ffd3;
}

.plan-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.plan-actions .button {
  width: 100%;
}

.legal-note {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  color: var(--muted);
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.legal-note a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.info-panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  padding: 30px;
}

.info-panel.green {
  border-color: rgba(46, 182, 125, 0.3);
  background: linear-gradient(135deg, #effaf4, #ffffff);
}

.info-panel h2 {
  margin-top: 10px;
  font-size: 34px;
}

.info-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.footer {
  margin-top: 42px;
  border-radius: 30px 30px 0 0;
  background: #07172f;
  color: #fff;
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 1180px) {
  .topbar-inner {
    grid-template-columns: 205px minmax(0, 1fr) max-content;
    gap: 14px;
    padding: 16px 20px;
  }

  .logo {
    width: 190px;
  }

  .nav {
    gap: 6px;
  }

  .nav a {
    padding: 9px 11px;
    font-size: 13px;
  }

  .top-actions .button {
    padding: 12px 14px;
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .topbar-inner,
  .hero-inner,
  .section-title,
  .grid-2,
  .grid-3,
  .grid-4,
  .product-visual-grid,
  .screenshot-row,
  .landing-hero-inner,
  .screen-showcase,
  .proof-strip,
  .trust-row,
  .intro-card,
  .plans,
  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .topbar-inner {
    gap: 12px;
  }

  .top-actions {
    justify-content: flex-start;
  }

  .phone-gallery {
    flex-wrap: wrap;
  }

  .phone-gallery.staggered .phone-frame:nth-child(2) {
    margin-top: 0;
  }

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

  .landing-copy {
    padding: 34px 28px;
  }

  .landing-visual {
    min-height: 560px;
  }

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

  .plan.recommended {
    transform: none;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar,
  .hero,
  .landing-hero,
  .card,
  .table-card,
  .quote-panel {
    border-radius: 24px;
  }

  .topbar-inner,
  .hero-inner,
  .landing-copy,
  .pad,
  .quote-panel,
  .intro-card,
  .plan-body,
  .info-panel {
    padding: 22px;
  }

  .logo {
    width: 180px;
  }

  .hero-actions,
  .top-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .landing-visual {
    min-height: 500px;
  }

  .trainer-frame {
    border-width: 11px;
    border-radius: 30px;
  }

  .trainer-frame img {
    height: 500px;
  }

  .phone-card {
    bottom: 18px;
  }

  .matrix {
    min-width: 760px;
  }

  .table-card {
    overflow-x: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-gallery {
    align-items: center;
    flex-direction: column;
  }

  .phone-frame,
  .phone-frame.small {
    width: min(270px, 100%);
  }
}
