:root {
  --background: #06121c;
  --background-alternative: #081a28;
  --surface: #0b2232;
  --surface-light: #103148;
  --text: #f4f8fb;
  --text-muted: #aebdca;
  --accent: #25a7ff;
  --accent-light: #4cccf5;
  --accent-dark: #008cff;
  --accent-rgb: 37, 167, 255;
  --accent-gradient: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    var(--accent) 55%,
    var(--accent-dark) 100%
  );
  --border: rgba(87, 181, 235, 0.16);
  --header-height: 76px;
  --content-width: 1200px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(3, 11, 18, 0.93);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.navbar {
  position: relative;
  width: min(100% - 40px, var(--content-width));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.2rem;
  font-weight: 800;
  white-space: nowrap;
}


.logo > .logo-image {
  display: block;
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  flex: 0 0 42px;
  object-fit: contain;
}

.logo-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--accent-gradient);
  border-radius: 10px;
  color: #001219;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

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

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: #b6c3cd;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

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

.nav-links a[href^="#"]::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 99px;
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-links a[href^="#"]:hover::after,
.nav-links a[href^="#"].active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links .nav-button {
  padding: 10px 18px;
  background: var(--accent-gradient);
  color: #00131f;
  border-radius: 9px;
  font-weight: 800;
}

.nav-links .nav-button:hover {
  background: linear-gradient(135deg, #65d6f7, #28aaff 58%, #078cff);
  color: #001219;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 99px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 112px 20px;
  scroll-margin-top: var(--header-height);
}

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

.alternative-section {
  background: var(--background-alternative);
}

.hero-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: flex-start;
  padding: 72px 20px 66px;
  background:
    radial-gradient(
      circle at 76% 25%,
      rgba(var(--accent-rgb), 0.18),
      transparent 32%
    ),
    linear-gradient(180deg, rgba(8, 30, 46, 0.35), transparent 62%),
    var(--background);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(560px, 1.15fr);
  align-items: center;
  gap: 44px;
}

.hero-copy h1 {
  max-width: 610px;
  margin: 0 0 22px;
  font-size: clamp(3.2rem, 5.7vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-description {
  max-width: 620px;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.55vw, 1.12rem);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 23px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

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

.primary-button {
  background: var(--accent-gradient);
  color: #00131f;
}

.primary-button:hover {
  background: linear-gradient(135deg, #65d6f7, #28aaff 58%, #078cff);
}

.secondary-button {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.02);
}

.secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

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



.hero-preview {
  position: relative;
}

.hero-preview::before {
  position: absolute;
  inset: 8% 5%;
  background: rgba(var(--accent-rgb), 0.14);
  filter: blur(70px);
  content: "";
}

.hero-screenshot {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #06131d;
  border: 1px solid rgba(var(--accent-rgb), 0.55);
  border-radius: 18px;
  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.48),
    0 0 45px rgba(var(--accent-rgb), 0.18);
}

.hero-screenshot::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  content: "";
}

.hero-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(1.1) contrast(1.08) saturate(1.06);
}

.preview-window {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #06131d;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 22px;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.45),
    0 0 90px rgba(var(--accent-rgb), 0.07);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.preview-topbar {
  display: flex;
  gap: 7px;
  height: 36px;
  padding: 13px 15px;
  background: #06121c;
  border-bottom: 1px solid var(--border);
}

.preview-topbar span {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.preview-content {
  display: grid;
  grid-template-columns: 24% 1fr;
  height: calc(100% - 36px);
}

.preview-sidebar {
  padding: 20px 15px;
  background: #06121c;
  border-right: 1px solid var(--border);
}

.preview-logo {
  margin-bottom: 24px;
  color: var(--accent);
  font-size: clamp(0.7rem, 1.7vw, 1rem);
  font-weight: 900;
}

.preview-line {
  height: 8px;
  margin: 14px 0;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
}

.preview-line.short {
  width: 66%;
}

.preview-line.active {
  background: rgba(var(--accent-rgb), 0.8);
}

.preview-main {
  padding: 22px;
}

.preview-heading {
  width: 42%;
  height: 11px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.19);
  border-radius: 99px;
}

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

.preview-card {
  min-height: 72px;
  background:
    linear-gradient(
      135deg,
      rgba(var(--accent-rgb), 0.18),
      rgba(8, 36, 54, 0.7)
    );
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.preview-card.wide {
  grid-column: 1 / -1;
  min-height: 95px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.65;
}

.centered-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

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

.card {
  padding: 28px;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0)
    ),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.card:hover {
  border-color: rgba(var(--accent-rgb), 0.34);
  transform: translateY(-4px);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  background: rgba(var(--accent-rgb), 0.13);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.card h3,
.screenshot-card h3,
.device-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.card p,
.device-card p {
  margin: 0;
  color: var(--text-muted);
}

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

.screenshot-card {
  padding: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.screenshot-card h3 {
  padding: 10px 8px 2px;
}

.screenshot-placeholder {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
}

.screenshot-placeholder::before,
.screenshot-placeholder::after {
  position: absolute;
  content: "";
}

.epg-placeholder {
  background:
    linear-gradient(90deg, #07141f 22%, transparent 22%),
    repeating-linear-gradient(
      0deg,
      transparent 0 40px,
      rgba(255, 255, 255, 0.055) 40px 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 76px,
      rgba(255, 255, 255, 0.055) 76px 77px
    ),
    #0a2435;
}

.epg-placeholder::before {
  top: 22%;
  right: 0;
  bottom: 0;
  left: 22%;
  background:
    linear-gradient(90deg, transparent 38%, rgba(var(--accent-rgb), 0.8) 38% 39%, transparent 39%);
}

.multiview-placeholder {
  background:
    linear-gradient(90deg, transparent 66%, rgba(2, 8, 13, 0.35) 66%),
    linear-gradient(180deg, #0d4157, #071722);
}

.multiview-placeholder::before {
  top: 10%;
  right: 5%;
  bottom: 10%;
  width: 27%;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1) 0 25%,
      transparent 25% 32%
    );
}

.player-placeholder {
  background:
    radial-gradient(circle at 50% 38%, rgba(var(--accent-rgb), 0.2), transparent 25%),
    linear-gradient(145deg, #0a3447, #02090f 72%);
}

.player-placeholder::before {
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid rgba(255, 255, 255, 0.75);
  transform: translate(-40%, -50%);
}

.placeholder-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 10px;
  background: rgba(2, 8, 13, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
}



/* Membership */
.membership-section {
  background:
    radial-gradient(
      circle at 50% 8%,
      rgba(var(--accent-rgb), 0.07),
      transparent 34%
    ),
    var(--background-alternative);
}

.membership-subheading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.membership-subheading h3,
.membership-plans-heading h3 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.membership-subheading > p:last-child,
.membership-plans-heading > div > p:last-child {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.trial-grid,
.membership-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.membership-plan-grid {
  margin-top: 22px;
}

.membership-card {
  display: flex;
  min-width: 0;
  padding: 28px;
  flex-direction: column;
  background:
    linear-gradient(
      155deg,
      rgba(var(--accent-rgb), 0.045),
      rgba(255, 255, 255, 0.012) 45%,
      transparent
    ),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.2);
}

.membership-card-featured {
  border-color: rgba(var(--accent-rgb), 0.42);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24),
    0 0 36px rgba(var(--accent-rgb), 0.08);
}

.membership-card-header {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.membership-step,
.membership-duration,
.membership-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.2;
}

.membership-step {
  padding: 7px 10px;
  color: var(--accent-light);
  background: rgba(var(--accent-rgb), 0.09);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
}

.membership-duration,
.membership-status {
  padding: 7px 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-align: right;
}

.membership-status {
  flex: 0 0 auto;
  color: var(--text-muted);
}

.membership-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.1vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.membership-card > p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.membership-benefits {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.membership-benefits li {
  position: relative;
  margin: 12px 0;
  padding-left: 27px;
  color: var(--text-muted);
  line-height: 1.5;
}

.membership-benefits li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.membership-card .full-button {
  width: 100%;
}

.trial-card .full-button,
.membership-card-actions {
  margin-top: auto;
}

.membership-card-actions > p {
  margin: 10px 4px 0;
  color: #8297a7;
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: center;
}

.membership-plans-heading {
  display: flex;
  gap: 24px;
  margin-top: 68px;
  align-items: flex-end;
  justify-content: space-between;
}

.membership-plans-heading > div {
  max-width: 760px;
}

.membership-plan-card {
  min-height: 520px;
}

.membership-plan-benefits {
  margin-bottom: 22px;
}

.membership-prices {
  margin-top: auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
}

.membership-prices > div {
  display: flex;
  min-height: 54px;
  padding: 12px 15px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.membership-prices > div:last-child {
  border-bottom: 0;
}

.membership-prices span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.membership-prices strong {
  color: var(--text);
  font-size: 1rem;
  white-space: nowrap;
}


.membership-currency-note {
  max-width: 780px;
  margin: 18px auto 0;
  color: #8fa4b2;
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.membership-plan-note {
  display: flex;
  max-width: 980px;
  margin: 24px auto 0;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(var(--accent-rgb), 0.055);
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  border-radius: 14px;
}

.membership-plan-note p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.membership-plan-note .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.membership-note {
  max-width: 850px;
  margin: 24px auto 0;
  color: #8297a7;
  font-size: 0.8rem;
  line-height: 1.55;
  text-align: center;
}

.full-button {
  width: 100%;
}

@media (max-width: 900px) {
  .trial-grid,
  .membership-plan-grid {
    grid-template-columns: 1fr;
  }

  .membership-card {
    max-width: 720px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .membership-plan-card {
    min-height: auto;
  }

  .membership-plans-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .membership-plan-note {
    align-items: stretch;
    flex-direction: column;
  }

  .membership-plan-note .button {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .membership-subheading {
    margin-bottom: 20px;
  }

  .membership-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .membership-card-header {
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
  }

  .membership-step,
  .membership-duration,
  .membership-status {
    max-width: 100%;
    font-size: 0.7rem;
    text-align: left;
  }

  .membership-benefits {
    margin-top: 20px;
    margin-bottom: 24px;
  }

  .membership-plans-heading {
    margin-top: 52px;
    gap: 14px;
  }

  .membership-prices > div {
    min-height: 50px;
    padding: 11px 13px;
  }

  .membership-plan-note {
    padding: 16px;
  }

  .membership-note {
    font-size: 0.76rem;
  }
}

/* FAQ */
.faq-section {
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(var(--accent-rgb), 0.045),
      transparent 32%
    ),
    var(--background);
}

.faq-category-nav {
  display: flex;
  gap: 10px;
  margin: -14px 0 34px;
  flex-wrap: wrap;
}

.faq-category-nav a {
  padding: 9px 13px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.faq-category-nav a:hover,
.faq-category-nav a:focus-visible {
  color: var(--text);
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.32);
}

.faq-categories {
  display: grid;
  gap: 26px;
}

.faq-category {
  min-width: 0;
  padding: 26px;
  scroll-margin-top: calc(var(--header-height) + 22px);
  background:
    linear-gradient(
      145deg,
      rgba(var(--accent-rgb), 0.035),
      rgba(255, 255, 255, 0.008)
    ),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.faq-category-heading {
  margin-bottom: 18px;
}

.faq-category-heading .eyebrow {
  margin-bottom: 7px;
}

.faq-category-heading h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

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

.faq-item {
  overflow: hidden;
  background: rgba(3, 13, 21, 0.5);
  border: 1px solid rgba(87, 181, 235, 0.12);
  border-radius: 13px;
}

.faq-item[open] {
  border-color: rgba(var(--accent-rgb), 0.28);
}

.faq-item summary {
  padding: 17px 48px 17px 18px;
  color: var(--text);
  cursor: pointer;
  font-weight: 780;
  line-height: 1.4;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--accent-light);
  content: "+";
  font-size: 1.25rem;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .faq-category-nav {
    margin-top: -8px;
    margin-bottom: 26px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .faq-category-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .faq-category {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .faq-item summary {
    padding: 15px 42px 15px 15px;
    font-size: 0.94rem;
  }

  .faq-item summary::after {
    right: 15px;
  }

  .faq-item p {
    padding: 0 15px 16px;
    font-size: 0.92rem;
  }
}

.content-notice-section {
  padding: 0 20px 82px;
  background:
    linear-gradient(180deg, transparent, rgba(var(--accent-rgb), 0.025)),
    var(--background);
}

.content-notice-card {
  max-width: 980px;
  padding: 30px 32px;
  background:
    linear-gradient(
      135deg,
      rgba(var(--accent-rgb), 0.07),
      rgba(255, 255, 255, 0.015)
    ),
    var(--surface);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 18px;
}

.content-notice-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
}

.content-notice-card p {
  max-width: 880px;
  margin: 10px 0;
  color: var(--text-muted);
}

.content-notice-card .content-notice-detail {
  margin-top: 16px;
  color: #8fa2b1;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .content-notice-section {
    padding: 0 14px 64px;
  }

  .content-notice-card {
    padding: 24px 20px;
  }
}


.legal-content {
  max-width: 850px;
}

.legal-content h1 {
  margin: 0 0 12px;
  font-size: clamp(2.6rem, 7vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.legal-content h2 {
  margin: 38px 0 10px;
  font-size: 1.35rem;
}

.legal-content p {
  color: var(--text-muted);
}

.legal-updated,
.legal-review-note {
  padding: 16px 18px;
  background: rgba(var(--accent-rgb), 0.07);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 10px;
}

.legal-review-note {
  margin-top: 40px;
}


.hero-notice a {
  margin-left: 4px;
  color: var(--accent-light);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb), 0.45);
  text-underline-offset: 3px;
}

.hero-notice a:hover {
  color: var(--text);
  text-decoration-color: var(--accent);
}

#content-notice {
  scroll-margin-top: calc(var(--header-height) + 24px);
}


.contact-content {
  max-width: 980px;
}

.contact-content h1 {
  margin: 0 0 14px;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-intro {
  margin: 0 0 36px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

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

.contact-card {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.contact-label {
  margin: 0 0 12px;
  color: var(--accent-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.contact-card h2 {
  margin: 0 0 12px;
  font-size: 1.65rem;
}

.contact-card p {
  color: var(--text-muted);
}

.contact-email {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-light);
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  font-weight: 800;
}

.contact-email:hover {
  color: var(--text);
}


.legal-content a:not(.button) {
  color: var(--accent-light);
  font-weight: 700;
}

.legal-content a:not(.button):hover {
  color: var(--text);
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px 20px;
  }
}


@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 34px;
  }
}


.features-section {
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(var(--accent-rgb), 0.08),
      transparent 28%
    ),
    var(--background);
}

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

.feature-card {
  min-width: 0;
  padding: 24px;
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0)
    ),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(var(--accent-rgb), 0.34);
  transform: translateY(-3px);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 19px;
  place-items: center;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 12px;
  color: var(--accent-light);
}

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

.feature-card h3 {
  margin: 0 0 9px;
  font-size: 1.08rem;
  line-height: 1.3;
  text-wrap: balance;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: 34px;
  margin-top: 58px;
  padding: 28px;
  background:
    radial-gradient(
      circle at 74% 34%,
      rgba(var(--accent-rgb), 0.11),
      transparent 46%
    ),
    linear-gradient(
      135deg,
      rgba(var(--accent-rgb), 0.07),
      rgba(255, 255, 255, 0.018)
    ),
    var(--background-alternative);
  border: 1px solid rgba(var(--accent-rgb), 0.23);
  border-radius: 22px;
}

.feature-showcase-copy {
  align-self: center;
}

.feature-showcase-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.feature-showcase-copy > p:last-of-type {
  margin: 0;
  color: var(--text-muted);
}

.feature-tabs {
  display: grid;
  gap: 9px;
  margin-top: 26px;
}

.feature-tab {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 750;
  text-align: left;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.feature-tab:hover {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.feature-tab.active {
  background: rgba(var(--accent-rgb), 0.12);
  border-color: rgba(var(--accent-rgb), 0.46);
  color: var(--text);
  transform: translateX(4px);
}

.feature-showcase-media {
  min-width: 0;
  align-self: center;
}

.feature-panel {
  display: grid;
  grid-template-rows: auto 46px;
  overflow: hidden;
  margin: 0;
  background: #071824;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  border-radius: 15px;
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.26),
    0 0 38px rgba(var(--accent-rgb), 0.1);
}

.feature-panel[hidden] {
  display: none;
}


.feature-panel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #071824;
  filter: none;
}

.feature-panel figcaption {
  position: static;
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 10px 15px;
  overflow: hidden;
  color: var(--text-muted);
  background: rgba(7, 20, 30, 0.98);
  border-top: 1px solid rgba(var(--accent-rgb), 0.16);
  font-size: 0.86rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-disclaimer {
  margin: 16px 4px 0;
  color: #8297a7;
  font-size: 0.78rem;
  text-align: right;
}

@media (max-width: 1050px) {
  .feature-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-showcase {
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  }
}

@media (max-width: 800px) {
  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .feature-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .feature-tab {
    width: auto;
    min-width: max-content;
    text-align: center;
  }

  .feature-tab.active {
    transform: none;
  }

  .feature-disclaimer {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .feature-card-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 22px 20px;
  }

  .feature-showcase {
    margin-top: 44px;
    padding: 20px;
    border-radius: 17px;
  }

  .feature-panel {
    border-radius: 11px;
  }
}


@media (max-width: 640px) {
  .feature-panel {
    grid-template-rows: auto minmax(52px, auto);
  }

  .feature-panel figcaption {
    white-space: normal;
  }
}


/* Platforms */
.platforms-section {
  background:
    radial-gradient(
      circle at 50% 5%,
      rgba(var(--accent-rgb), 0.08),
      transparent 34%
    ),
    var(--background);
}

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

.platform-card {
  display: flex;
  min-width: 0;
  padding: 28px;
  flex-direction: column;
  background:
    linear-gradient(
      155deg,
      rgba(var(--accent-rgb), 0.055),
      rgba(255, 255, 255, 0.012) 42%,
      rgba(255, 255, 255, 0)
    ),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.platform-card:hover {
  border-color: rgba(var(--accent-rgb), 0.34);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.24),
    0 0 34px rgba(var(--accent-rgb), 0.055);
  transform: translateY(-4px);
}

.platform-card-android {
  grid-column: 1 / -1;
}

.platform-card-coming {
  background:
    linear-gradient(
      155deg,
      rgba(var(--accent-rgb), 0.035),
      rgba(255, 255, 255, 0.008) 48%,
      rgba(255, 255, 255, 0)
    ),
    var(--surface);
}

.platform-card-top {
  display: flex;
  min-height: 74px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.platform-icon-wrap {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  place-items: center;
  background:
    linear-gradient(
      145deg,
      rgba(var(--accent-rgb), 0.16),
      rgba(var(--accent-rgb), 0.055)
    );
  border: 1px solid rgba(var(--accent-rgb), 0.27);
  border-radius: 18px;
  color: var(--accent-light);
}

.platform-icon {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.platform-tag {
  max-width: 155px;
  padding: 7px 10px;
  color: var(--accent-light);
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.platform-tag-coming {
  color: #c3d2dc;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.11);
}

.platform-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.platform-card > p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.platform-card-intro {
  max-width: 680px;
}

.platform-android-modes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.platform-mode {
  padding: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
}

.platform-mode h4 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 0.98rem;
}

.platform-mode p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.platform-card-install {
  margin-top: auto;
  padding-top: 28px;
}

.platform-card-install-android {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: stretch;
}

.platform-download-link {
  display: flex;
  min-height: 86px;
  padding: 15px;
  align-items: center;
  gap: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.platform-download-link svg {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: none;
  stroke: var(--accent-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.platform-download-link strong,
.platform-download-link small {
  display: block;
}

.platform-download-link strong {
  margin-bottom: 4px;
  font-size: 0.88rem;
}

.platform-download-link small {
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.platform-download-link.is-active:hover,
.platform-download-link.is-active:focus-visible {
  background: rgba(var(--accent-rgb), 0.09);
  border-color: rgba(var(--accent-rgb), 0.4);
  transform: translateY(-2px);
}

.platform-qr-inline {
  display: flex;
  width: 174px;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.platform-qr-inline img {
  display: block;
  width: 132px;
  height: 132px;
  padding: 5px;
  background: #fff;
  border-radius: 8px;
}

.platform-qr-inline p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.68rem;
  line-height: 1.3;
  text-align: center;
}

.platform-footnote {
  max-width: 760px;
  margin: 24px auto 0;
  color: #8297a7;
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 860px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-card-android {
    grid-column: auto;
  }

  .platform-android-modes {
    grid-template-columns: 1fr;
  }

  .platform-card-install-android {
    grid-template-columns: 1fr;
  }

  .platform-qr-inline {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .platform-card {
    padding: 23px 20px;
    border-radius: 16px;
  }

  .platform-card-top {
    min-height: 64px;
    margin-bottom: 18px;
  }

  .platform-icon-wrap {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
    border-radius: 15px;
  }

  .platform-icon {
    width: 39px;
    height: 39px;
  }

  .platform-tag {
    max-width: 130px;
    font-size: 0.7rem;
  }

  .platform-qr-inline img {
    width: 122px;
    height: 122px;
  }
}

/* Final responsive width safeguards */
@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .hero-preview {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 800px) {
  .feature-showcase {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
  }

  .feature-showcase-copy,
  .feature-showcase-media,
  .feature-tabs {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .feature-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
  }
}

/* Fluid membership layout safeguards */
.membership-section,
.membership-section .section-content,
.trial-grid,
.membership-plan-grid,
.membership-card {
  min-width: 0;
}

.membership-card {
  width: 100%;
  max-width: 100%;
}

.membership-prices > div {
  min-width: 0;
}

.membership-prices span,
.membership-prices strong {
  overflow-wrap: anywhere;
}


/* Centered footer */
.site-footer,
.footer-content {
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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


/* Temporary public preview notice */
.preview-banner {
  width: 100%;
  min-height: 42px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f3b43f;
  color: #15212b;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
}

.preview-banner strong {
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 620px) {
  .preview-banner {
    padding: 8px 14px;
    flex-wrap: wrap;
    gap: 2px 7px;
    font-size: 0.8rem;
  }
}

/*
 * Interactive cursor states
 *
 * Browsers do not consistently use the pointer cursor for native
 * buttons. Define it explicitly for every clickable website control.
 */
a[href],
button:not(:disabled),
input[type="button"]:not(:disabled),
input[type="submit"]:not(:disabled),
input[type="reset"]:not(:disabled),
summary,
[role="button"]:not([aria-disabled="true"]),
[data-open-dialog],
[data-close-dialog] {
  cursor: pointer;
}

button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled,
.button[aria-disabled="true"],
[role="button"][aria-disabled="true"] {
  cursor: not-allowed;
}

/* Processing is different from a permanently unavailable control. */
form[aria-busy="true"] button:disabled,
form[aria-busy="true"] input:disabled,
form[aria-busy="true"] .button[aria-disabled="true"] {
  cursor: wait;
}

