:root {
  --mk-plum-950: #08161d;
  --mk-plum-900: #036f7c;
  --mk-plum-850: #0d5762;
  --mk-plum-800: #48aeab;
  --mk-lime: #f5843f;
  --mk-lime-soft: #ffe5d5;
  --mk-cream: #f7fbfb;
  --mk-lilac: #eef8f8;
  --mk-lilac-strong: #d9efee;
  --mk-card: #ffffff;
  --mk-text: #0e2b31;
  --mk-text-soft: #58757a;
  --mk-border: rgba(3, 111, 124, 0.12);
  --mk-shadow: 0 30px 80px rgba(3, 41, 46, 0.12);
  --mk-shadow-strong: 0 36px 90px rgba(6, 22, 28, 0.3);
  --mk-radius-xl: 32px;
  --mk-radius-lg: 24px;
  --mk-radius-md: 18px;
  --mk-shell: min(1180px, calc(100% - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.marketing-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(72, 174, 171, 0.22), transparent 42%),
    linear-gradient(180deg, #07161d 0%, #0b2027 34%, #f7fbfb 34.01%, #f7fbfb 100%);
  color: var(--mk-text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.marketing-main {
  position: relative;
}

.marketing-shell {
  width: var(--mk-shell);
  margin: 0 auto;
}

.marketing-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(6, 33, 38, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.marketing-header.is-compact {
  background: rgba(5, 28, 32, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.marketing-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.marketing-brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1;
}

.marketing-brand-lockup {
  display: inline-flex;
  align-items: center;
}

.marketing-brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 180px;
}

.marketing-nav-links,
.marketing-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.marketing-nav-links {
  gap: 6px;
  flex-wrap: nowrap;
}

.marketing-nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.marketing-nav-link:hover,
.marketing-nav-link.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-1px);
}

.marketing-nav-link.is-accent {
  color: var(--mk-lime-soft);
}

.marketing-mega {
  position: relative;
}

.marketing-mega::after {
  content: "";
  position: absolute;
  left: -28px;
  right: -28px;
  top: 100%;
  height: 34px;
}

.marketing-mega-trigger {
  border: 0;
  cursor: pointer;
  background: transparent;
  font: inherit;
}

.marketing-mega-trigger i {
  margin-left: 6px;
  font-size: 0.72rem;
  transition: transform 180ms ease;
}

.marketing-mega:hover .marketing-mega-trigger i,
.marketing-mega:focus-within .marketing-mega-trigger i {
  transform: rotate(180deg);
}

.marketing-mega-panel {
  position: fixed;
  top: 78px;
  left: 50%;
  z-index: 90;
  width: min(940px, calc(100vw - 32px));
  max-height: calc(100vh - 110px);
  overflow: auto;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.45fr);
  gap: 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(245, 132, 63, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(248, 252, 252, 0.98), rgba(232, 247, 246, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 34px 90px rgba(3, 41, 46, 0.28);
  color: var(--mk-text);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px) scale(0.985);
  transform-origin: top center;
  transition: opacity 170ms ease, transform 170ms ease;
}

.marketing-mega-panel::before {
  content: "";
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  height: 34px;
}

.marketing-mega:hover .marketing-mega-panel,
.marketing-mega:focus-within .marketing-mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.marketing-mega-feature {
  min-height: 100%;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(160deg, var(--mk-plum-900), #08242b);
  color: #fff;
  overflow: hidden;
}

.marketing-mega-image {
  height: 220px;
  margin: -4px -4px 18px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.marketing-mega-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.marketing-mega-feature h3 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.marketing-mega-feature p {
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.marketing-mega-links {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 16px;
}

.marketing-mega-links section {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(3, 111, 124, 0.08);
}

.marketing-mega-links section:first-child {
  grid-row: span 2;
}

.marketing-mega-label {
  display: block;
  margin-bottom: 12px;
  color: var(--mk-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 900;
}

.marketing-mega-link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--mk-text);
  transition: background 180ms ease, transform 180ms ease;
}

.marketing-mega-link:hover {
  background: rgba(3, 111, 124, 0.07);
  transform: translateX(3px);
}

.marketing-mega-link i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--mk-plum-900), var(--mk-plum-800));
}

.marketing-mega-link strong,
.marketing-mega-link small {
  display: block;
}

.marketing-mega-link strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.marketing-mega-link small {
  margin-top: 4px;
  color: var(--mk-text-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.marketing-mega-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.marketing-mega-tags a {
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(3, 111, 124, 0.08);
  color: var(--mk-plum-900);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.marketing-mega-tags a:hover {
  background: rgba(245, 132, 63, 0.18);
  transform: translateY(-1px);
}

.marketing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  min-height: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.marketing-button:hover {
  transform: translateY(-2px);
}

.marketing-button--lime {
  color: #fff;
  background: linear-gradient(135deg, var(--mk-lime), #ef9763);
  box-shadow: 0 16px 36px rgba(245, 132, 63, 0.28);
}

.marketing-button--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.marketing-button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
}

.marketing-button--plum {
  color: #fff;
  background: linear-gradient(135deg, var(--mk-plum-900), var(--mk-plum-800));
  box-shadow: 0 16px 36px rgba(3, 111, 124, 0.22);
}

.marketing-button--white {
  color: var(--mk-plum-900);
  background: #fff;
  border: 1px solid rgba(3, 111, 124, 0.12);
}

.marketing-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.2rem;
}

.marketing-mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  padding: 28px 20px 28px;
  background: linear-gradient(180deg, #07161d, #0d3035);
  transform: translateX(100%);
  transition: transform 220ms ease;
  z-index: 80;
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.38);
}

.marketing-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 3, 14, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 75;
}

body.marketing-menu-open .marketing-mobile-menu {
  transform: translateX(0);
}

body.marketing-menu-open .marketing-mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

.marketing-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.marketing-mobile-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
}

.marketing-mobile-links {
  display: grid;
  gap: 12px;
}

.marketing-mobile-links .marketing-nav-link {
  display: block;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
}

.marketing-mobile-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.marketing-hero,
.marketing-page-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.marketing-hero::before,
.marketing-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 78% 28%, rgba(245, 132, 63, 0.16), transparent 22%),
    radial-gradient(circle at 60% 68%, rgba(75, 204, 191, 0.18), transparent 30%);
  pointer-events: none;
}

.marketing-hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.marketing-page-hero .marketing-hero-inner {
  padding: 72px 0 64px;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
}

.marketing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--mk-lime-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.marketing-display {
  margin: 18px 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.9rem, 7vw, 5.5rem);
  line-height: 0.93;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.marketing-page-title {
  margin: 18px 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.marketing-accent-text {
  color: var(--mk-lime);
}

.marketing-copy {
  margin: 22px 0 0;
  max-width: 640px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.marketing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.marketing-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.marketing-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.marketing-phone-stack {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketing-phone-frame {
  position: relative;
  width: 290px;
  height: 560px;
  padding: 18px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--mk-shadow-strong);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.marketing-phone-frame::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 116px;
  height: 24px;
  border-radius: 999px;
  background: rgba(6, 22, 28, 0.9);
  transform: translateX(-50%);
}

.marketing-phone-frame--mini {
  position: absolute;
  width: 240px;
  height: 300px;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.marketing-phone-frame--mini.top {
  top: -65px;
  right: -65px;
}

.marketing-phone-frame--mini.bottom {
  bottom: -70px;
  left: -40px;
}

.marketing-phone-screen {
  position: relative;
  min-height: 100%;
  border-radius: 28px;
  padding: 58px 18px 18px;
  background:
    radial-gradient(circle at top right, rgba(245, 132, 63, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(3, 111, 124, 0.98), rgba(6, 29, 35, 0.98));
  color: #fff;
}

.marketing-app-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: top center;
  background: #eef8f8;
}

.marketing-phone-frame > .marketing-app-screenshot {
  border-radius: 28px;
}

.marketing-phone-screen--light {
  background:
    radial-gradient(circle at top right, rgba(75, 204, 191, 0.18), transparent 30%),
    linear-gradient(180deg, #f7fbfb, #e3f2f1);
  color: var(--mk-text);
}

.marketing-device-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--mk-lime-soft);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.marketing-device-chip.is-dark {
  background: rgba(3, 111, 124, 0.08);
  color: var(--mk-plum-900);
}

.marketing-device-title {
  margin: 18px 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.marketing-device-copy {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.7;
}

.marketing-phone-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.marketing-phone-list-item {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.marketing-phone-list-item strong,
.marketing-phone-list-item span {
  display: block;
}

.marketing-phone-list-item strong {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.marketing-phone-list-item span {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.marketing-phone-meter {
  margin-top: 20px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.marketing-phone-meter-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mk-lime), var(--mk-plum-800));
}

.marketing-section {
  padding: 88px 0;
}

.marketing-section--tight {
  padding: 56px 0 72px;
}

.marketing-section--light {
  background: #f7fbfb;
}

.marketing-section--lilac {
  background: linear-gradient(180deg, #eef8f8 0%, #f7fbfb 100%);
}

.marketing-section--dark {
  background:
    radial-gradient(circle at top center, rgba(75, 204, 191, 0.16), transparent 30%),
    linear-gradient(180deg, #0b2027 0%, #07161d 100%);
  color: #fff;
}

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

.marketing-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--mk-plum-800);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.marketing-kicker.is-light {
  color: var(--mk-lime-soft);
}

.marketing-title {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.marketing-title.is-light,
.marketing-section--dark .marketing-title {
  color: #fff;
}

.marketing-subcopy {
  margin: 16px 0 0;
  max-width: 680px;
  color: var(--mk-text-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.marketing-section--dark .marketing-subcopy,
.marketing-title-copy.is-light {
  color: rgba(255, 255, 255, 0.74);
}

.marketing-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.marketing-card {
  background: var(--mk-card);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-lg);
  padding: 24px;
  box-shadow: var(--mk-shadow);
}

.marketing-card.is-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.marketing-card h3,
.marketing-card h4 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.marketing-card p {
  margin: 14px 0 0;
  color: var(--mk-text-soft);
  line-height: 1.7;
}

.marketing-card.is-dark p,
.marketing-card.is-dark .marketing-meta {
  color: rgba(255, 255, 255, 0.72);
}

.marketing-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--mk-text-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.marketing-stat {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.marketing-stat strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.marketing-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.marketing-compare-card {
  position: relative;
  overflow: hidden;
}

.marketing-compare-card .marketing-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(3, 111, 124, 0.06);
  color: var(--mk-plum-800);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.marketing-compare-card .marketing-price {
  margin: 20px 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.marketing-compare-card .marketing-price small {
  font-size: 1rem;
  font-weight: 800;
  color: var(--mk-text-soft);
}

.marketing-compare-card ul,
.marketing-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.marketing-compare-card li,
.marketing-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
}

.marketing-compare-card li::before,
.marketing-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--mk-lime);
  box-shadow: 0 0 16px rgba(245, 132, 63, 0.24);
}

.marketing-link-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.marketing-link-card .marketing-link {
  margin-top: auto;
  color: var(--mk-plum-900);
  font-weight: 800;
  text-decoration: none;
}

.marketing-link-card .marketing-link:hover {
  text-decoration: underline;
}

.buy-pack {
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  appearance: none;
}

.marketing-quote {
  position: relative;
  padding: 36px;
  border-radius: var(--mk-radius-xl);
  background: linear-gradient(135deg, #0b2027, var(--mk-plum-900));
  color: #fff;
  box-shadow: var(--mk-shadow-strong);
}

.marketing-quote p {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}

.marketing-quote cite {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-weight: 700;
}

.marketing-surface {
  background: var(--mk-card);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-xl);
  box-shadow: var(--mk-shadow);
}

.marketing-form-grid {
  display: grid;
  gap: 18px;
}

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

.marketing-label {
  display: block;
  margin: 0 0 8px;
  color: var(--mk-plum-800);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marketing-input,
.marketing-select,
.marketing-textarea,
.marketing-search-input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(42, 24, 78, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--mk-text);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.marketing-input:focus,
.marketing-select:focus,
.marketing-textarea:focus,
.marketing-search-input:focus {
  outline: 0;
  border-color: rgba(58, 29, 114, 0.4);
  box-shadow: 0 0 0 4px rgba(58, 29, 114, 0.08);
  background: #fff;
}

.marketing-textarea {
  min-height: 170px;
  resize: vertical;
}

.marketing-helper {
  margin-top: 8px;
  color: var(--mk-text-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.marketing-filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 16px;
}

.marketing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(42, 24, 78, 0.06);
  color: var(--mk-plum-800);
  font-size: 0.82rem;
  font-weight: 800;
}

.marketing-badge.is-dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.marketing-alert {
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 700;
}

.marketing-alert.success {
  background: rgba(75, 204, 191, 0.12);
  border: 1px solid rgba(72, 174, 171, 0.22);
  color: #0c5a56;
}

.marketing-alert.error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.16);
  color: #991b1b;
}

.marketing-footer {
  background: #07161d;
  color: rgba(255, 255, 255, 0.74);
  padding: 58px 0 42px;
}

.marketing-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.marketing-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.marketing-footer-links a,
.marketing-footer-meta a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 700;
}

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

.marketing-footer-meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.92rem;
}

.marketing-footer-note {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  line-height: 1.8;
}

.marketing-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.marketing-socials a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.marketing-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.toast {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 90;
  padding: 12px 16px;
  border-radius: 16px;
  background: var(--mk-plum-900);
  color: #fff;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
}

.btn-brand {
  background: linear-gradient(135deg, var(--mk-lime), #ef9763);
  color: #fff;
  box-shadow: 0 16px 34px rgba(245, 132, 63, 0.24);
}

.btn-disabled {
  background: rgba(3, 111, 124, 0.14);
  color: rgba(3, 111, 124, 0.5);
  box-shadow: none;
  cursor: not-allowed;
}

.is-hidden {
  display: none !important;
}

.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

@media (max-width: 1080px) {
  .marketing-hero-inner,
  .marketing-grid-4 {
    grid-template-columns: 1fr;
  }

  .marketing-phone-stack {
    min-height: auto;
    padding-top: 24px;
  }

  .marketing-phone-frame--mini {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 360px;
    inset: auto;
  }

  .marketing-phone-stack {
    gap: 18px;
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .marketing-nav-links,
  .marketing-nav-actions {
    display: none;
  }

  .marketing-mega-panel {
    display: none;
  }

  .marketing-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .marketing-grid-3,
  .marketing-grid-2,
  .marketing-footer-grid,
  .marketing-filter-row,
  .marketing-form-grid.columns-2 {
    grid-template-columns: 1fr;
  }

  .marketing-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --mk-shell: min(100%, calc(100% - 24px));
  }

  .marketing-nav {
    min-height: 72px;
  }

  .marketing-brand {
    font-size: 1.12rem;
  }

  .marketing-hero-inner,
  .marketing-page-hero .marketing-hero-inner {
    padding: 56px 0 54px;
    gap: 30px;
  }

  .marketing-display {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .marketing-page-title {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .marketing-copy,
  .marketing-subcopy {
    font-size: 0.98rem;
  }

  .marketing-phone-frame {
    width: 100%;
    height: 520px;
  }

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

  .marketing-card,
  .marketing-surface,
  .marketing-quote {
    border-radius: 24px;
    padding: 22px;
  }
}

/* 2026 light marketing refresh */
body.marketing-body {
    --mk-shell: min(1480px, calc(100% - 64px));
	background: radial-gradient(circle at 78% 10%, rgb(225 240 242), #e4f2f300 28%), linear-gradient(291deg, #f7fbfb0f 0%, #eef8f8 48%, #f7fbfb 100%) !important;
    color: #09243a;
}

.marketing-header {
  padding: 26px 0 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.marketing-header.is-compact {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.marketing-nav {
  min-height: 88px;
  padding: 0 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(3, 111, 124, 0.08);
  box-shadow: 0 20px 50px rgba(9, 36, 58, 0.1);
  backdrop-filter: blur(18px);
}

.marketing-brand {
  color: #09243a;
}

.marketing-brand-logo {
  height: 58px;
  max-width: 220px;
}

.marketing-nav-link {
  color: #12233d;
  font-size: 1rem;
  padding: 14px 16px;
}

.marketing-nav-link:hover,
.marketing-nav-link.is-active {
  color: var(--mk-plum-900);
  background: transparent;
  box-shadow: inset 0 -3px 0 var(--mk-plum-900);
  transform: none;
}

.marketing-nav-link.is-accent {
  color: var(--mk-plum-900);
}

.marketing-language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #12233d;
  font-weight: 800;
}

.marketing-nav-actions .marketing-button--ghost {
  color: #12233d;
  background: #fff;
  border: 1px solid rgba(18, 35, 61, 0.12);
  box-shadow: none;
}

.marketing-nav-actions .marketing-button--lime,
.marketing-button--plum,
.marketing-button--lime {
  background: linear-gradient(135deg, var(--mk-plum-900), var(--mk-plum-800));
  box-shadow: 0 18px 36px rgba(3, 111, 124, 0.2);
}

.marketing-nav-actions .marketing-button--lime {
  background: #ff7449;
  box-shadow: 0 18px 34px rgba(255, 116, 73, 0.24);
}

.marketing-menu-toggle {
  background: var(--mk-plum-900);
  color: #fff;
}

.marketing-mega::after {
  height: 44px;
}

.marketing-mega-panel {
  top: 110px;
  width: min(1540px, calc(100vw - 72px));
  max-height: calc(100vh - 152px);
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 30px;
  padding: 40px;
  border-radius: 0 0 28px 28px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(3, 111, 124, 0.08);
  box-shadow: 0 24px 60px rgba(9, 36, 58, 0.12);
}

.marketing-mega-panel::before {
  top: 86px;
  height: 58px;
}

.marketing-mega-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.marketing-mega-links section,
.marketing-mega-links section:first-child {
  grid-row: auto;
  padding: 0 24px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(3, 111, 124, 0.12);
}

.marketing-mega-links section:last-child {
  border-right: 0;
}

.marketing-mega-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mk-plum-900);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.marketing-mega-link {
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 14px 0;
}

.marketing-mega-link:hover {
  background: transparent;
  transform: translateX(4px);
}

.marketing-mega-link i {
  color: var(--mk-plum-900);
  background: transparent;
  font-size: 1.45rem;
}

.marketing-mega-link strong {
  color: #12233d;
  font-size: 1.04rem;
}

.marketing-mega-feature {
  padding: 24px;
  border-radius: 18px;
  background: #edf7f6;
  color: #12233d;
}

.marketing-mega-feature .marketing-chip {
  color: var(--mk-plum-900);
  background: rgba(255, 255, 255, 0.7);
}

.marketing-mega-feature h3 {
  font-size: 1.45rem;
  color: #12233d;
}

.marketing-mega-feature p {
  color: var(--mk-text-soft);
}

.marketing-mega-image {
  height: 170px;
  margin: 18px -24px 18px;
  border-radius: 16px;
}

.marketing-mega-feature .marketing-button {
  width: 100%;
  min-height: 58px;
  background: #ff7449;
  box-shadow: 0 18px 34px rgba(255, 116, 73, 0.22);
	    margin-bottom: 1em;
}

.marketing-page-hero,
.marketing-hero {
  color: #09243a;
}

.marketing-page-hero::before,
.marketing-hero::before {
  opacity: 0.45;
  background:
    radial-gradient(circle at 86% 6%, rgba(72, 174, 171, 0.18), transparent 28%),
    radial-gradient(circle at 20% 70%, rgba(255, 116, 73, 0.08), transparent 26%);
}

.marketing-page-hero .marketing-hero-inner {
  padding-top: 86px;
}

.marketing-eyebrow,
.marketing-kicker,
.tv-pill {
  color: var(--mk-plum-900);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(3, 111, 124, 0.16);
}

.marketing-page-title,
.marketing-display,
.marketing-title {
  color: #09243a;
}

.marketing-copy,
.marketing-subcopy {
  color: #31435c;
}

.marketing-accent-text,
.marketing-title span,
.tv-section-copy h2 span,
.tv-section-head h2 span,
.tv-hero-copy h1 span {
  color: #1fa7a4;
}

.tv-home {
  overflow: hidden;
}

.tv-hero {
    position: relative;
    min-height: 770px;
    padding: 94px 0 130px;
    
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(72, 174, 171, 0.2), transparent 34%),
        /* Dropped opacity to 40% and 50% so the image easily bleeds through */
        linear-gradient(180deg, rgba(249, 252, 252, 0.4), rgba(238, 248, 248, 0.5)), 
        url('/assets/img/hero-bg-tv.png'); /* Adjust this path if needed */
    
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}




/*
Blaze | duh dis

.tv-hero::after,
.tv-area-section::after,
.tv-final-section::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -96px;
  height: 190px;
  border-radius: 50% 50% 0 0;
  background: #002b43;
  transform: rotate(2deg);
}
*/



.tv-hero-grid,
.tv-area-grid,
.tv-final-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 30px;
  align-items: center;
}

.tv-hero-copy h1,
.tv-section-copy h2,
.tv-section-head h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: #09243a;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.tv-hero-copy h1 {
  font-size: clamp(4rem, 7.3vw, 7.2rem);
  line-height: 0.95;
    margin-bottom: 0.3em;
}

.tv-hero-copy p,
.tv-section-copy p,
.tv-section-head p {
  max-width: 560px;
  color: #263b58;
  font-size: 1.28rem;
  line-height: 1.65;
}

.tv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.tv-proof {
  display: grid;
  gap: 8px;
  margin-top: 54px;
  color: #12233d;
}

.tv-proof strong {
  font-size: 1.1rem;
}

.tv-proof .stars {
  color: #f2b43f;
  letter-spacing: 0.18em;
}

.tv-hero-art {
  position: relative;
  min-height: 610px;
}

.tv-mascot {
  position: absolute;
  z-index: -1;
  width: 300px;
  filter: drop-shadow(0 26px 34px rgba(9, 36, 58, 0.16));
}

.tv-mascot-hero {
  left: 3%;
  top: 22%;
  transform: rotate(-8deg);
}

.tv-phone-card,
.tv-weather-card,
.tv-match-card,
.tv-live-card,
.tv-side-phone,
.tv-signal-card,
.tv-final-phone,
.tv-mini-grid,
.tv-trust-row,
.tv-bottom-cta {
  background: #fff;
  border: 1px solid rgba(3, 111, 124, 0.08);
  box-shadow: 0 26px 70px rgba(9, 36, 58, 0.12);
}

.tv-phone-card-main {
  position: absolute;
  top: 44px;
  left: 35%;
  width: 310px;
  padding: 22px;
  border-radius: 36px;
  transform: rotate(7deg);
}

.tv-phone-top,
.tv-phone-stats,
.tv-card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tv-phone-card img,
.tv-live-card img,
.tv-side-phone img,
.tv-final-phone img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
}

.tv-phone-card-main img {
  height: 180px;
  margin: 12px 0 18px;
}

.tv-phone-card h3,
.tv-live-card h3,
.tv-side-phone h4,
.tv-signal-card h3 {
  color: #12233d;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
}

.tv-phone-card small,
.tv-phone-copy {
  color: #53657b;
}

.tv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.tv-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #e4f6f4;
  color: var(--mk-plum-900);
  font-size: 0.78rem;
  font-weight: 800;
}

.tv-phone-stats {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(3, 111, 124, 0.1);
}

.tv-phone-stats span {
  display: grid;
  color: #6b7889;
  font-size: 0.82rem;
}

.tv-phone-stats strong {
  color: #12233d;
}

.tv-phone-stats button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--mk-plum-900);
}

.tv-weather-card {
    position: absolute;
    right: -45px;
    top: 139px;
    width: 226px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(150deg, #078796, #006579);
    color: #fff;
    transform: rotate(7deg);
}

.tv-weather-card strong {
  display: block;
  margin-top: 8px;
  font-size: 3.4rem;
  line-height: 1;
}

.tv-weather-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.tv-match-card {
    position: absolute;
    right: -7px;
    bottom: 3px;
    width: 220px;
    padding: 25px;
    border-radius: 26px;
    transform: rotate(7deg);
}

.tv-match-card h4 {
  margin: 0 0 14px;
}

.tv-match-card p {
  display: flex;
  justify-content: space-between;
  color: #53657b;
}

.tv-area-section,
.tv-signals-section,
.tv-final-section {
  position: relative;
  padding: 70px 0;
  background: #f7fbfb;
}

.tv-area-section {
  background:
    radial-gradient(circle at 78% 30%, rgba(72, 174, 171, 0.13), transparent 30%),
    #f7fbfb;
}

.tv-section-copy h2,
.tv-section-head h2 {
  font-size: clamp(3.6rem, 6vw, 6rem);
  line-height: 0.95;
}

.tv-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.tv-decision-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  max-width: 430px;
  color: #263b58;
  font-size: 1.14rem;
}

.tv-decision-note i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: var(--mk-plum-900);
  background: #e7f5f4;
  font-size: 1.6rem;
}

.tv-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
  margin-top: 34px;
  border-radius: 20px;
  overflow: hidden;
}

.tv-mini-grid span {
  display: grid;
  gap: 8px;
  padding: 20px;
  text-align: center;
  color: #58697e;
  border-right: 1px solid rgba(3, 111, 124, 0.08);
}

.tv-mini-grid span:last-child {
  border-right: 0;
}

.tv-mini-grid i {
  color: var(--mk-plum-900);
  font-size: 1.4rem;
}

.tv-mini-grid strong {
  color: #12233d;
}

.tv-live-card {
  padding: 28px;
  border-radius: 34px;
}

.tv-live-card img {
  height: 364px;
  margin-top: 14px;
}

.tv-card-kicker {
  color: var(--mk-plum-900);
  font-weight: 900;
  font-size: 1.1rem;
}

.tv-card-kicker span {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--mk-plum-900);
}

.tv-side-phone {
  align-self: center;
  padding: 24px;
  border-radius: 34px;
}

.tv-side-phone img {
  height: 200px;
  margin: 18px 0;
}

.tv-side-phone button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--mk-plum-900);
  font-weight: 900;
}

.tv-trust-row,
.tv-stats-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 54px;
  border-radius: 20px;
  overflow: hidden;
}

.tv-trust-row span,
.tv-stats-row span {
  display: grid;
  gap: 6px;
  padding: 22px;
  color: #53657b;
  border-right: 1px solid rgba(3, 111, 124, 0.08);
}

.tv-trust-row span:last-child,
.tv-stats-row span:last-child {
  border-right: 0;
}

.tv-trust-row i {
  color: var(--mk-plum-900);
  font-size: 1.6rem;
}

.tv-trust-row strong,
.tv-stats-row strong {
  color: #12233d;
}

.tv-signals-section {
  background:
    radial-gradient(circle at 50% 44%, rgba(72, 174, 171, 0.14), transparent 32%),
    #f7fbfb;
}

.tv-section-head {
  max-width: 760px;
  margin: 0 auto 62px;
  text-align: center;
}

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

.tv-signal-card {
  padding: 38px;
  border-radius: 34px;
}

.tv-step {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--mk-plum-900);
  background: #daf3f0;
  font-weight: 900;
  font-size: 1.25rem;
}

.tv-signal-visual {
  height: 220px;
  margin-top: 30px;
  border-radius: 24px;
  overflow: hidden;
  background: #eef8f8;
}

.tv-faux-map {
  position: relative;
  height: 100%;
  background:
    linear-gradient(45deg, transparent 48%, rgba(3, 111, 124, 0.08) 49%, rgba(3, 111, 124, 0.08) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(3, 111, 124, 0.08) 49%, rgba(3, 111, 124, 0.08) 51%, transparent 52%),
    #e5f2f1;
  background-size: 56px 56px;
}

.tv-faux-map span {
  position: absolute;
  left: 58%;
  top: 45%;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 0;
  background: var(--mk-plum-900);
  transform: rotate(-45deg);
}

.tv-faux-weather {
  height: 100%;
  padding: 34px;
  color: #fff;
  background: linear-gradient(135deg, #07919e, #006174);
}

.tv-faux-weather strong {
  display: block;
  font-size: 4rem;
  line-height: 1;
}

.tv-faux-pick {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.tv-faux-pick img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
}

.tv-bottom-cta {
  width: min(760px, 100%);
  margin: 34px auto 0;
  padding: 12px 12px 12px 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #263b58;
}

.tv-final-section {
  background:
    radial-gradient(circle at 80% 36%, rgba(72, 174, 171, 0.16), transparent 30%),
    #f7fbfb;
}

.tv-final-art {
  position: relative;
  min-height: 590px;
}

.tv-mascot-final {
  left: -12%;
  bottom: 70px;
  width: 210px;
  transform: rotate(-4deg);
}

.tv-final-phone {
  position: absolute;
  width: 245px;
  padding: 14px;
  border-radius: 34px;
  background: #fff;
}

.tv-final-phone img {
  height: 410px;
}

.tv-final-phone.phone-a {
  left: 12%;
  top: 72px;
  transform: rotate(-5deg);
}

.tv-final-phone.phone-b {
  left: 39%;
  top: 50px;
}

.tv-final-phone.phone-c {
  right: 0;
  top: 96px;
  transform: rotate(7deg);
}

.tv-floating-label {
  position: absolute;
  z-index: 3;
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--mk-plum-900);
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(3, 111, 124, 0.18);
}

.label-a {
  left: 18%;
  top: 18px;
  transform: rotate(-7deg);
}

.label-b {
  left: 47%;
  top: 8px;
}

.label-c {
  right: 1%;
  top: 36px;
  transform: rotate(7deg);
}

.tv-benefit-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.tv-benefit-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #263b58;
  font-weight: 700;
}

.tv-benefit-list i {
  color: var(--mk-plum-900);
}

.tv-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 28px;
  color: var(--mk-plum-900);
  font-weight: 900;
  text-decoration: none;
}

.tv-stats-row {
  grid-template-columns: repeat(3, 1fr);
  width: min(900px, 100%);
}

.marketing-footer {
  padding: 0 0 50px;
  background: #002b43;
  color: #d7e6ea;
}

.marketing-footer-invite {
  position: relative;
  top: -40px;
  min-height: 280px;
  display: grid;
  grid-template-columns: 1fr 1.05fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding: 48px 58px;
  border-radius: 22px;
  background: #eaf7f5;
  color: #09243a;
  overflow: hidden;
}

.marketing-footer-invite h2,
.marketing-footer-invite h3 {
  margin: 14px 0 10px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.marketing-footer-newsletter {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  padding-left: 40px;
  border-left: 1px solid rgba(3, 111, 124, 0.14);
}

.marketing-footer-newsletter-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--mk-plum-900);
  background: #ccecea;
  font-size: 2rem;
}

.marketing-footer-form-row {
  display: flex;
  margin-top: 18px;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(9, 36, 58, 0.12);
}

.marketing-footer-form-row input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 22px;
  font: inherit;
  background: transparent;
}

.marketing-footer-form-row button {
  border: 0;
  padding: 16px 26px;
  color: #fff;
  background: #ff7449;
  font-weight: 900;
}

.marketing-footer-form-row button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.marketing-footer-landscape {
  position: relative;
  align-self: stretch;
  min-height: 190px;
}

/*.marketing-footer-landscape::before {
  content: "";
  position: absolute;
  left: -20px;
  right: -58px;
  bottom: -48px;
  height: 190px;
  background:
    radial-gradient(circle at 80% 34%, #69bfbd 0 18px, transparent 19px),
    linear-gradient(150deg, transparent 24%, #cdecea 25% 44%, transparent 45%),
    linear-gradient(20deg, #b9e2df 20%, #d6f0ee 21% 58%, #a9d9d5 59%);
  clip-path: polygon(0 70%, 28% 36%, 54% 62%, 76% 28%, 100% 56%, 100% 100%, 0 100%);
}
*/
.marketing-footer-landscape .pin {
  position: absolute;
  left: 38%;
  top: 18%;
  width: 104px;
  height: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #1aa5a2;
}

.marketing-footer-landscape .pin img {
  width: 74px;
  transform: rotate(45deg);
}

.marketing-footer-landscape .sign {
  position: absolute;
  right: 0;
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  background: #0a6f81;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketing-footer-landscape .sign-a {
  top: 34px;
}

.marketing-footer-landscape .sign-b {
  top: 86px;
  background: #004d68;
}

.marketing-footer-landscape .sign-c {
  top: 138px;
  background: #6bbebb;
}

.marketing-footer-grid {
  grid-template-columns: 1.4fr repeat(5, 0.82fr) 1.05fr;
  gap: 34px;
  align-items: start;
}

.marketing-footer-column {
  display: grid;
  gap: 14px;
}

.marketing-footer-column h3 {
  margin: 0 0 8px;
  color: #6bd3ce;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marketing-footer-column a {
  color: #d7e6ea;
  text-decoration: none;
}

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

.marketing-footer-app-card {
  padding: 28px;
  border-radius: 22px;
  background: #033c5a;
}

.marketing-footer-app-card i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0f7892;
}

.marketing-footer-app-card span {
  display: block;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: #061d2d;
  font-weight: 900;
  text-align: center;
}

.marketing-socials {
  justify-content: flex-start;
  margin-top: 44px;
}

.marketing-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
}

.marketing-privacy-pill {
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.marketing-privacy-pill a,
.marketing-footer-meta a {
  color: #6bd3ce;
}

@media (max-width: 1180px) {
  .marketing-nav {
    padding: 0 18px;
  }

  .marketing-language {
    display: none;
  }

  .marketing-mega-panel {
    grid-template-columns: 1fr;
  }

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

  .marketing-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .marketing-footer-invite {
    grid-template-columns: 1fr;
  }

  .marketing-footer-newsletter {
    padding-left: 0;
    border-left: 0;
  }

  .marketing-footer-landscape {
    min-height: 240px;
  }
}

@media (max-width: 980px) {
  .marketing-header {
    padding-top: 14px;
  }

  .marketing-nav {
    min-height: 76px;
  }

  .marketing-nav-links,
  .marketing-nav-actions {
    display: none;
  }

  .marketing-brand-logo {
    height: 48px;
  }

  .tv-hero-grid,
  .tv-area-grid,
  .tv-final-grid,
  .tv-signal-grid {
    grid-template-columns: 1fr;
  }

  .tv-hero {
    min-height: auto;
  }

  .tv-hero-art,
  .tv-final-art {
    min-height: 620px;
  }

  .tv-phone-card-main {
    left: 22%;
  }

  .tv-trust-row,
  .tv-stats-row,
  .tv-mini-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 720px) {
  body.marketing-body {
    --mk-shell: min(100%, calc(100% - 24px));
  }

  .tv-hero,
  .tv-area-section,
  .tv-signals-section,
  .tv-final-section {
    padding: 72px 0;
  }

  .tv-hero-copy h1,
  .tv-section-copy h2,
  .tv-section-head h2 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .tv-hero-actions,
  .tv-bottom-cta,
  .marketing-footer-form-row {
    align-items: stretch;
    flex-direction: column;
    border-radius: 22px;
  }

  .tv-hero-art,
  .tv-final-art {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .tv-mascot,
  .tv-weather-card,
  .tv-match-card,
  .tv-phone-card-main,
  .tv-side-phone,
  .tv-final-phone,
  .tv-floating-label {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .tv-mascot {
    width: 120px;
    justify-self: center;
  }

  .tv-live-card img,
  .tv-phone-card-main img,
  .tv-final-phone img {
    height: 260px;
  }

  .tv-trust-row,
  .tv-stats-row,
  .tv-mini-grid,
  .marketing-footer-grid,
  .marketing-mega-links {
    grid-template-columns: 1fr;
  }

  .marketing-footer-invite {
    padding: 28px;
  }

  .marketing-footer-newsletter {
    grid-template-columns: 1fr;
  }
}

.fa-calendar:before {
    position: absolute;
    right: 45px;
    top: 26px;
}

.about-page {
  position: relative;
  padding: 28px 0 92px;
  overflow: hidden;
}

.about-page::before {
  content: "";
  position: absolute;
  inset: 120px 0 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(72, 174, 171, 0.1), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(245, 132, 63, 0.12), transparent 18%),
    radial-gradient(circle at 16% 72%, rgba(72, 174, 171, 0.08), transparent 18%),
    radial-gradient(circle at 90% 84%, rgba(72, 174, 171, 0.07), transparent 16%);
  pointer-events: none;
}

.about-page > * {
  position: relative;
  z-index: 1;
}

.about-hero {
  padding: 34px 0 42px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(3, 111, 124, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--mk-plum-900);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.about-title {
  margin: 24px 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(3.7rem, 6.2vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  color: #09243a;
}

.about-title span {
  color: #1fa7a4;
}

.about-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #31435c;
  font-size: 1.12rem;
  line-height: 1.72;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.about-hero-visual {
  position: relative;
  min-height: 520px;
}

.about-hero-visual-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(3, 111, 124, 0.12);
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(228, 244, 243, 0.94));
  box-shadow: 0 30px 90px rgba(9, 36, 58, 0.12);
}

.about-hero-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    url('/assets/img/hero-bg-tv.png') center/cover no-repeat;
  opacity: 0.58;
}

.about-hero-sun {
  position: absolute;
  top: 44px;
  right: 54px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 196, 101, 0.88);
  box-shadow: 0 0 0 18px rgba(255, 196, 101, 0.12);
  z-index: 1;
}

.about-hero-art {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: min(100%, 640px);
  filter: drop-shadow(0 28px 42px rgba(9, 36, 58, 0.16));
  z-index: 1;
}

.about-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.about-highlight-card,
.about-difference-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(3, 111, 124, 0.1);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(9, 36, 58, 0.08);
}

.about-highlight-card h2,
.about-difference-card h3,
.about-step-card h3,
.about-panel h3,
.about-side-card h3 {
  margin: 0;
  color: #0d2844;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.28rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.about-highlight-card p,
.about-difference-card p,
.about-step-card p,
.about-panel p,
.about-side-card p {
  margin: 8px 0 0;
  color: #597185;
  line-height: 1.72;
}

.about-icon-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: rgba(72, 174, 171, 0.14);
  box-shadow: inset 0 0 0 1px rgba(3, 111, 124, 0.08);
  color: var(--mk-plum-900);
  font-size: 1.42rem;
}

.about-icon-badge--large {
  width: 64px;
  height: 64px;
  border-radius: 22px;
}

.about-icon-badge--soft {
  background: #f0faf9;
}

.about-section {
  padding: 20px 0;
}

.about-section--tight {
  padding-top: 12px;
}

.about-story-grid,
.about-values-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 28px;
  align-items: start;
}

.about-story-copy {
  padding: 18px 10px 18px 6px;
}

.about-story-copy h2,
.about-section-head h2,
.about-cta-copy h2 {
  margin: 0;
  color: #0d2844;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-story-copy p {
  max-width: 670px;
  margin: 18px 0 0;
  color: #40566e;
  font-size: 1.04rem;
  line-height: 1.92;
}

.about-side-card,
.about-panel,
.about-step-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(3, 111, 124, 0.1);
  border-radius: 30px;
  box-shadow: 0 26px 72px rgba(9, 36, 58, 0.08);
}

.about-side-card {
  min-height: 100%;
  padding: 32px 176px 32px 32px;
  background: linear-gradient(180deg, rgba(239, 248, 248, 0.92), rgba(232, 245, 244, 0.86));
}

.about-check-list,
.about-bullet-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-check-list {
  display: grid;
  gap: 14px;
}

.about-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f2b45;
  font-weight: 700;
}

.about-check-list li i {
  color: #1fa7a4;
}

.about-side-art {
  position: absolute;
  right: 8px;
  bottom: -10px;
  width: 158px;
  max-width: 38%;
}

.about-section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.about-section-head--center {
  justify-items: center;
  text-align: center;
}

.about-section-head span {
  width: 84px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1fa7a4, #48aeab);
}

.about-panel {
  padding: 32px;
}

.about-panel--image {
  padding: 0;
  display: grid;
}

.about-panel--image .about-panel-copy {
  padding: 32px 32px 0;
}

.about-panel-scene {
  min-height: 230px;
  margin-top: 24px;
  border-top: 1px solid rgba(3, 111, 124, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    url('/assets/img/ONBCITYBG.jpg') center/cover no-repeat;
}

.about-bullet-list {
  display: grid;
  gap: 14px;
}

.about-bullet-list li {
  position: relative;
  padding-left: 18px;
  color: #40566e;
  line-height: 1.74;
}

.about-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1fa7a4;
  transform: translateY(-50%);
}

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

.about-difference-card {
  align-items: flex-start;
}

.about-steps-shell {
  position: relative;
}

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

.about-steps-grid::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(31, 167, 164, 0.45) 0 12px,
    transparent 12px 22px
  );
  transform: translateY(-50%);
}

.about-step-card {
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
}

.about-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mk-plum-900), var(--mk-plum-800));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.about-steps-art {
  position: absolute;
  right: -10px;
  bottom: -8px;
  width: 126px;
  pointer-events: none;
}

.about-cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 30px 34px;
  color: #fff;
  border-radius: 34px;
  background: linear-gradient(135deg, #08707c, #1498a0);
  box-shadow: 0 30px 90px rgba(3, 111, 124, 0.22);
}

.about-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    url('/assets/img/sec-3-bg-tv.jpg') center/cover no-repeat;
  opacity: 0.24;
}

.about-cta-card > * {
  position: relative;
  z-index: 1;
}

.about-cta-art img {
  width: 100%;
  max-width: 220px;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.16));
}

.about-cta-copy p {
  margin: 14px 0 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.75;
}

@media (max-width: 1180px) {
  .about-hero-grid,
  .about-story-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

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

  .about-hero-visual {
    min-height: 430px;
  }

  .about-steps-grid {
    grid-template-columns: 1fr;
  }

  .about-steps-grid::before {
    display: none;
  }

  .about-steps-art {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: 138px;
    margin: 18px 0 0 auto;
  }

  .about-cta-card {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .about-cta-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .about-page {
    padding-bottom: 72px;
  }

  .about-hero {
    padding: 18px 0 34px;
  }

  .about-title {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-hero-visual {
    min-height: 340px;
  }

  .about-highlight-grid,
  .about-difference-grid {
    grid-template-columns: 1fr;
  }

  .about-side-card {
    padding-right: 140px;
  }

  .about-cta-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-cta-art {
    order: -1;
  }

  .about-cta-art img {
    max-width: 170px;
  }
}

@media (max-width: 640px) {
  .about-chip {
    font-size: 0.74rem;
  }

  .about-highlight-card,
  .about-difference-card,
  .about-step-card,
  .about-panel,
  .about-side-card,
  .about-cta-card {
    border-radius: 26px;
  }

  .about-hero-visual-card {
    border-radius: 28px;
  }

  .about-hero-art {
    right: -18px;
    width: calc(100% + 26px);
  }

  .about-story-copy {
    padding: 10px 0;
  }

  .about-side-card {
    padding: 26px 26px 132px;
  }

  .about-side-art {
    right: 14px;
    width: 118px;
    max-width: 34%;
  }

  .about-step-card {
    grid-template-columns: auto 1fr;
  }

  .about-step-card .about-icon-badge {
    grid-column: 2;
    justify-self: start;
  }

  .about-step-card > div {
    grid-column: 1 / -1;
  }
}

.guide-page {
  overflow: hidden;
}

.guide-hero {
  padding: 82px 0 54px;
}

.guide-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
  gap: 46px;
  align-items: center;
}

.guide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(3, 111, 124, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--mk-plum-900);
  font-size: 0.8rem;
  font-weight: 900;
}

.guide-title {
  margin: 22px 0 0;
  color: #09243a;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.guide-title span,
.guide-heading span {
  color: #1fa7a4;
}

.guide-lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: #31435c;
  font-size: 1.1rem;
  line-height: 1.7;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.guide-media {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 34px;
  border: 1px solid rgba(3, 111, 124, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(229, 246, 245, 0.9));
  box-shadow: 0 26px 70px rgba(9, 36, 58, 0.1);
}

.guide-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/img/hero-bg-tv.png') center/cover no-repeat;
  opacity: 0.42;
}

.guide-media img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(96%, 520px);
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 24px 36px rgba(9, 36, 58, 0.14));
}

.how-page {
  background:
    radial-gradient(circle at 14% 12%, rgba(70, 194, 190, 0.16), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(255, 133, 82, 0.13), transparent 26%),
    #f7fbfb;
}

.how-anchor-offset {
  scroll-margin-top: 132px;
}

.how-hero {
  position: relative;
}

.how-hero-media img {
  z-index: 1;
}

.how-weather-card {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 138px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(3, 111, 124, 0.98), rgba(31, 167, 164, 0.94));
  color: #fff;
  box-shadow: 0 22px 46px rgba(3, 111, 124, 0.22);
  transform: rotate(4deg);
}

.how-weather-card span,
.how-weather-card small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.how-weather-card strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.how-menu-section {
  position: sticky;
  top: 78px;
  z-index: 8;
  padding: 0 0 12px;
  pointer-events: none;
}

.how-section-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(3, 111, 124, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(9, 36, 58, 0.08);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.how-section-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: #0d2844;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.how-section-menu a:hover {
  background: rgba(31, 167, 164, 0.12);
  color: #036f7c;
  transform: translateY(-1px);
}

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

.how-flow-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 238px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(3, 111, 124, 0.1);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(9, 36, 58, 0.08);
  color: #0d2844;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.how-flow-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: rgba(72, 174, 171, 0.11);
}

.how-flow-card:hover {
  border-color: rgba(31, 167, 164, 0.35);
  box-shadow: 0 26px 70px rgba(9, 36, 58, 0.12);
  transform: translateY(-4px);
}

.how-flow-card .guide-icon {
  margin-bottom: 0;
}

.how-flow-number {
  color: #ff7b54;
  font-size: 0.75rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.how-flow-card strong {
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.16rem;
  line-height: 1.1;
}

.how-flow-card small {
  position: relative;
  z-index: 1;
  color: #587185;
  font-size: 0.9rem;
  line-height: 1.55;
}

.how-detail-section {
  position: relative;
}

.how-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: center;
}

.how-detail-copy .guide-heading {
  margin-top: 18px;
}

.how-detail-visual {
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(3, 111, 124, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(230, 248, 247, 0.9)),
    url('/assets/img/hero-bg-tv.png') center/cover no-repeat;
  box-shadow: 0 26px 70px rgba(9, 36, 58, 0.1);
}

.how-detail-visual img {
  width: 100%;
  max-width: 560px;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(9, 36, 58, 0.13));
}

.how-signal-card {
  min-height: 220px;
}

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

.how-app-frame article {
  display: grid;
  gap: 14px;
  justify-items: center;
  min-height: 430px;
  padding: 22px 18px;
  overflow: hidden;
  border: 1px solid rgba(3, 111, 124, 0.12);
  border-radius: 34px;
  background: linear-gradient(180deg, #fff, rgba(229, 246, 245, 0.86));
  box-shadow: 0 26px 70px rgba(9, 36, 58, 0.09);
}

.how-app-frame span,
.how-app-frame strong {
  color: #036f7c;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-app-frame img {
  width: min(100%, 250px);
  height: 315px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 24px 48px rgba(9, 36, 58, 0.16);
}

.how-faq-list {
  margin-top: 20px;
}

.how-heading-spaced {
  margin-top: 18px;
}

.guide-section {
  padding: 58px 0;
}

.guide-section--soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(238, 248, 248, 0.44));
}

.guide-section-head {
  max-width: 740px;
  margin-bottom: 24px;
}

.guide-section-head.is-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.guide-heading {
  margin: 0;
  color: #09243a;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.guide-copy {
  max-width: 660px;
  margin: 14px 0 0;
  color: #435a70;
  font-size: 1rem;
  line-height: 1.7;
}

.guide-section-head.is-centered .guide-copy {
  margin-right: auto;
  margin-left: auto;
}

.guide-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.guide-card,
.guide-panel,
.guide-tile {
  background: #fff;
  border: 1px solid rgba(3, 111, 124, 0.1);
  box-shadow: 0 22px 60px rgba(9, 36, 58, 0.08);
}

.guide-card,
.guide-panel {
  border-radius: 26px;
  padding: 26px;
}

.guide-card h2,
.guide-card h3,
.guide-panel h2,
.guide-panel h3,
.guide-tile h3 {
  margin: 0;
  color: #0d2844;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.guide-card p,
.guide-panel p,
.guide-tile p {
  margin: 10px 0 0;
  color: #587185;
  line-height: 1.65;
}

.guide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(72, 174, 171, 0.14);
  color: var(--mk-plum-900);
  font-size: 1.25rem;
}

.guide-tile {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-radius: 22px;
  padding: 22px;
}

.guide-tile .guide-icon {
  margin-bottom: 0;
}

.guide-split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  align-items: start;
}

.guide-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334b61;
  line-height: 1.55;
}

.guide-list li i {
  color: #1fa7a4;
  margin-top: 4px;
}

.guide-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(3, 111, 124, 0.94), rgba(31, 167, 164, 0.94)),
    url('/assets/img/sec-3-bg-tv.jpg') center/cover no-repeat;
  color: #fff;
  box-shadow: 0 26px 70px rgba(3, 111, 124, 0.2);
}

.guide-cta-band h2 {
  margin: 0;
  color: #fff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.guide-cta-band p {
  margin: 10px 0 0;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.faq-page .faq-wrapper {
  max-width: 980px;
}

.faq-page .faq-controls-surface,
.faq-page .faq-item,
.faq-page .faq-support-surface {
  border-color: rgba(3, 111, 124, 0.1);
  box-shadow: 0 18px 54px rgba(9, 36, 58, 0.07);
}

.event-guide-card {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(3, 111, 124, 0.1);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 54px rgba(9, 36, 58, 0.07);
}

.event-guide-card h3 {
  margin: 0;
  color: #0d2844;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.16rem;
  line-height: 1.18;
}

.event-guide-card p {
  margin: 10px 0 0;
  color: #587185;
}

@media (max-width: 1180px) {
  .guide-hero-grid,
  .guide-split,
  .how-detail-grid {
    grid-template-columns: 1fr;
  }

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

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

  .guide-media {
    min-height: 340px;
  }

  .how-menu-section {
    top: 72px;
  }
}

@media (max-width: 760px) {
  body.marketing-body {
    --mk-shell: min(100%, calc(100% - 24px));
  }

  .guide-hero {
    padding: 46px 0 34px;
  }

  .guide-title {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .guide-lead,
  .guide-copy {
    font-size: 0.98rem;
  }

  .guide-actions,
  .guide-cta-band {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .guide-actions {
    flex-direction: column;
  }

  .guide-media {
    min-height: 280px;
    border-radius: 26px;
  }

  .how-weather-card {
    top: 18px;
    right: 18px;
    min-width: 112px;
    padding: 14px;
    border-radius: 20px;
  }

  .how-weather-card strong {
    font-size: 1.9rem;
  }

  .how-menu-section {
    position: relative;
    top: auto;
    padding-bottom: 0;
  }

  .how-section-menu {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    border-radius: 24px;
    scrollbar-width: none;
  }

  .how-section-menu::-webkit-scrollbar {
    display: none;
  }

  .how-section-menu a {
    flex: 0 0 auto;
  }

  .how-flow-grid {
    grid-template-columns: 1fr;
  }

  .how-flow-card {
    min-height: auto;
  }

  .how-detail-grid {
    grid-template-columns: 1fr;
  }

  .how-detail-visual {
    min-height: 290px;
    border-radius: 26px;
  }

  .how-detail-visual img {
    max-height: 300px;
  }

  .how-app-frame {
    grid-template-columns: 1fr;
  }

  .how-app-frame article {
    min-height: 370px;
  }

  .guide-section {
    padding: 42px 0;
  }

  .guide-grid-4,
  .guide-grid-3,
  .guide-grid-2 {
    grid-template-columns: 1fr;
  }

  .guide-card,
  .guide-panel {
    border-radius: 22px;
    padding: 22px;
  }

  .guide-tile {
    border-radius: 20px;
    padding: 20px;
  }

  .event-guide-card {
    flex-direction: column;
    align-items: stretch;
  }
}
