:root {
  --bg: #f2f3f7;
  --ink: #0f1728;
  --muted: #5f6778;
  --surface: #ffffff;
  --primary: #4e5fff;
  --primary-2: #131e6f;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 18px 44px rgba(17, 24, 39, 0.14);
  --container: min(1180px, 92vw);
}

/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Manrope, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

html {
  scroll-behavior: smooth;
}

body.modal-open {
  overflow: hidden;
}

.hero-gradient {
  animation: gradientShift 8s ease-in-out infinite alternate;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* Header / Navigation */
.hero-wrap {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: radial-gradient(circle at 80% 18%, #1f2cb7 0%, #0f1355 38%, #090d30 100%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(78, 95, 255, 0.22), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.top-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Sora, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: auto;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
}

.brand-accent {
  color: #86a3ff;
}

.brand.dark {
  color: var(--ink);
}

.brand:focus-visible {
  outline: 3px solid rgba(134, 163, 255, 0.55);
  outline-offset: 6px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.login {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
}

.nav-mobile-only {
  display: none;
}

.mobile-menu {
  display: contents;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lang-switch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(13, 24, 52, 0.22);
}

.lang-switch-btn:focus-visible {
  outline: 2px solid rgba(134, 163, 255, 0.8);
  outline-offset: 1px;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.login-modal.is-open {
  display: block;
}

.login-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 36, 0.62);
  backdrop-filter: blur(4px);
}

.login-modal__dialog {
  position: relative;
  width: min(92vw, 420px);
  margin: 12vh auto 0;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 24px 52px rgba(15, 23, 40, 0.32);
}

.login-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #606b84;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.login-modal__dialog h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.login-form {
  display: grid;
  gap: 10px;
}

.login-form label {
  font-size: 13px;
  color: var(--muted);
}

.login-form input {
  border: 1px solid #dbe1ea;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 15px;
}

.login-form input:focus {
  outline: 2px solid rgba(78, 95, 255, 0.4);
  border-color: var(--primary);
}

.login-form .btn {
  margin-top: 10px;
  width: 100%;
  border: 0;
  cursor: pointer;
}

.login-error {
  min-height: 18px;
  margin: 2px 0 0;
  color: #d72d4a;
  font-size: 13px;
  font-weight: 600;
}

.privacy-copy {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.contact-modal__dialog {
  width: min(92vw, 640px);
}

.contact-modal-copy {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding: 82px 0 72px;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  max-width: 620px;
  margin: 0 0 14px;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -1.5px;
  max-width: 580px;
}

.subtitle {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  line-height: 1.6;
}

.subtitle-secondary {
  margin-top: 12px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.btn-primary:hover {
  box-shadow: 0 12px 24px rgba(78, 95, 255, 0.35);
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost.dark {
  color: var(--ink);
  border-color: rgba(15, 23, 40, 0.2);
}

.hero-panel {
  position: relative;
  min-height: 420px;
}

.tv-shell {
  position: relative;
  width: min(100%, 560px);
  margin: 30px auto 0;
  padding: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.tv-screen {
  border-radius: 14px;
  min-height: 0;
  padding: 0;
  position: relative;
  overflow: visible;
}

.tv-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(8, 11, 36, 0.5));
}

.tv-badge {
  position: absolute;
  background: #fff;
  color: #111a2f;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 600;
  min-width: 150px;
  animation: floatCard 5.4s ease-in-out infinite;
}

.tv-badge strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.8px;
}

.tv-badge span {
  display: block;
  margin-top: 4px;
  color: #5f6778;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 500;
}

.badge-top {
  right: 4px;
  top: -6px;
  animation-delay: 0.2s;
}

.badge-left {
  left: -6px;
  top: 164px;
  animation-delay: 0.9s;
}

.badge-bottom {
  right: 26px;
  bottom: 8px;
  animation-delay: 1.4s;
}

.badge-right {
  right: -12px;
  top: 188px;
  animation-delay: 1.1s;
}

.logos {
  position: relative;
  z-index: 2;
  padding-bottom: 32px;
}

.logos p {
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 13px;
}

.logo-marquee {
  margin-top: 14px;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.logo-marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeLeft 74s linear infinite;
}

.logo-track {
  flex-shrink: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  padding-right: 10px;
}

.logo-track span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

/* Generic Sections */
.section-pad {
  padding: 90px 0;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  text-align: center;
}

.section-intro {
  margin: 14px auto 0;
  max-width: 860px;
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
}

.subheading {
  margin-top: 30px;
  text-align: center;
  font-size: 26px;
  letter-spacing: -0.5px;
}

.grid-cards {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.compare-legend {
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}

.audience-infographic {
  margin: 28px 0 0;
  padding: 0;
}

.audience-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid #e4e8f0;
  background: #ffffff;
}

.compare-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lg-box {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}

.lg-pop {
  border: 1px solid #c7d1e2;
  background: #d7dfeb;
}

.lg-tv {
  background: #4f66d8;
}

.lg-yt {
  background: #d45a51;
}

.cap-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 20px;
  min-height: 240px;
}

.cap-card h3 {
  margin-top: 16px;
  font-size: 22px;
  letter-spacing: -0.4px;
}

.cap-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.compare-card {
  background: linear-gradient(180deg, #ffffff, #f8faff);
  border: 1px solid #dce4f2;
}

.compare-stats {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.compare-stats li {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f0f3f8;
}

.compare-stats li::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill, 0%);
  border-radius: inherit;
  opacity: 0.48;
}

.compare-stats li > span,
.compare-stats li > strong {
  position: relative;
  z-index: 1;
}

.compare-stats li.stat-pop::before {
  background: linear-gradient(90deg, #d9dde5, #cdd3df);
}

.compare-stats li.stat-tv::before {
  background: linear-gradient(90deg, #b7c4f3, #4f66d8);
}

.compare-stats li.stat-yt::before {
  background: linear-gradient(90deg, #efc0bc, #d45a51);
}

.compare-stats span {
  color: #5f6778;
}

.compare-stats strong {
  color: #0f1728;
  font-size: 14px;
}

/* Audience Problem Section */
.problem-section {
  padding-top: 74px;
  padding-bottom: 74px;
}

.problem-section-wrap {
  background: linear-gradient(180deg, #f7f9fe, #f4f7fc);
  border-top: 1px solid #e2e7f0;
  border-bottom: 1px solid #e2e7f0;
  margin-top: 0;
}

.airtime-chart-card {
  margin-top: 26px;
  background: #fff;
  border: 1px solid #dbe3f1;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(19, 29, 56, 0.06);
  padding: 28px 24px 24px;
  overflow-x: auto;
}

.airtime-chart {
  position: relative;
  min-width: 780px;
  min-height: 348px;
  display: grid;
  grid-template-columns: repeat(7, minmax(90px, 1fr));
  gap: 12px;
  align-items: end;
  padding: 16px 8px 0;
  border-radius: 14px;
}

.airtime-grid-line {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1px;
  background: #dfe6f2;
  pointer-events: none;
}

.airtime-grid-line.line-1 {
  bottom: 66px;
}

.airtime-grid-line.line-2 {
  bottom: 126px;
}

.airtime-grid-line.line-3 {
  bottom: 186px;
}

.airtime-grid-line.line-4 {
  bottom: 246px;
}

.airtime-youth-marker {
  grid-column: 1 / 4;
  position: absolute;
  top: 232px;
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  text-align: center;
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  z-index: 2;
}

.airtime-youth-marker i {
  display: block;
  height: 20px;
  border-top: 2px solid #1f2937;
  border-left: 2px solid #1f2937;
  border-right: 2px solid #1f2937;
}

.airtime-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.airtime-value {
  font-size: 13px;
  color: #48556f;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0ms);
}

.airtime-bar {
  width: 76%;
  min-height: 14px;
  border-radius: 10px 10px 4px 4px;
  box-shadow: 0 10px 18px rgba(37, 16, 4, 0.12);
  transform-origin: bottom center;
  transform: scaleY(0.05);
  opacity: 0.45;
  transition: transform 1.15s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.24s ease, opacity 0.8s ease;
  transition-delay: var(--delay, 0ms);
}

.bar-4-17 {
  height: 22px;
  background: linear-gradient(180deg, #dde3ef 0%, #ccd4e5 100%);
}

.bar-18-24 {
  height: 34px;
  background: linear-gradient(180deg, #d9dfec 0%, #c5cedf 100%);
}

.bar-25-34 {
  height: 44px;
  background: linear-gradient(180deg, #d4dcee 0%, #bcc8df 100%);
}

.bar-35-44 {
  height: 132px;
  background: linear-gradient(180deg, #bdc9ef 0%, #9caee4 100%);
}

.bar-45-54 {
  height: 176px;
  background: linear-gradient(180deg, #aab8ec 0%, #8799df 100%);
}

.bar-55-64 {
  height: 258px;
  background: linear-gradient(180deg, #8395ef 0%, #5e71de 100%);
}

.bar-65-plus {
  height: 320px;
  background: linear-gradient(180deg, #6a7fe7 0%, #455ad2 100%);
}

.airtime-bar.is-highlight {
  box-shadow: 0 14px 24px rgba(78, 95, 255, 0.26);
}

.airtime-bar.is-highlight-strong {
  box-shadow: 0 18px 30px rgba(56, 77, 205, 0.34);
}

.airtime-label {
  font-size: 14px;
  color: #334155;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0ms);
}

.airtime-chart.is-visible .airtime-bar {
  transform: scaleY(1);
  opacity: 1;
}

.airtime-chart.is-visible .airtime-col:hover .airtime-bar {
  transform: translateY(-3px) scaleY(1);
}

.airtime-chart.is-visible .airtime-value,
.airtime-chart.is-visible .airtime-label {
  opacity: 1;
  transform: translateY(0);
}

.airtime-note {
  margin-top: 20px;
  border: 1px solid #d7e1f2;
  background: #f4f8ff;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  color: #40506c;
  font-weight: 600;
  line-height: 1.5;
}

/* Combined YouTube Section */
.yt-combined-wrap {
  background: linear-gradient(155deg, #222749, #2f3b83);
  color: #e8f2ff;
}

.yt-combined-section h2 {
  color: #fff;
}

.yt-combined-section .section-intro {
  color: rgba(232, 242, 255, 0.9);
}

.yt-combined-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.yt-combined-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 20px;
}

.yt-combined-card h3 {
  font-size: 24px;
  letter-spacing: -0.3px;
}

.yt-combined-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.yt-combined-card li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
  color: rgba(232, 242, 255, 0.95);
}

.yt-combined-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #79c1ff;
}

.yt-combined-note {
  margin: 18px auto 0;
  max-width: 760px;
  text-align: center;
  color: rgba(232, 242, 255, 0.9);
  font-weight: 600;
}

/* Content / Story Section */
.stories {
  background: #fff;
}

.story-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.use-case-row {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.use-case-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 230px;
  border: 1px solid #dbe2ef;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 40, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15, 23, 40, 0.14);
}

.use-case-card--media {
  grid-column: span 7;
  background-image: linear-gradient(160deg, rgba(12, 18, 54, 0.2), rgba(12, 18, 54, 0.85)), url("hero-tv.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.use-case-card--media.media-younger {
  background-image: linear-gradient(160deg, rgba(10, 14, 42, 0.16), rgba(10, 14, 42, 0.84)), url("auditorija45m.jpg");
  background-position: 50% 58%;
}

.use-case-card--media.media-advantage {
  grid-column: span 5;
  background-image: linear-gradient(160deg, rgba(8, 12, 35, 0.2), rgba(8, 12, 35, 0.84)), url("pranasumas.jpg");
  background-position: 38% 52%;
}

.use-case-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, rgba(8, 12, 35, 0), rgba(8, 12, 35, 0.88) 60%);
}

.use-case-overlay--full {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(8, 12, 35, 0.16), rgba(8, 12, 35, 0.9) 64%);
}

.use-case-card--text {
  grid-column: span 5;
  padding: 18px 16px 16px;
  background: linear-gradient(150deg, #f7f9ff, #f1f3f8);
  color: #121b2d;
}

.use-case-card--text.accent {
  grid-column: span 6;
  background: linear-gradient(150deg, #eef6ff, #e7efff);
}

.use-case-card--text.below {
  grid-column: span 6;
}

.use-case-card--video {
  grid-column: span 6;
  background: #0c1236;
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.use-case-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.use-case-card--video.is-ready .use-case-video {
  opacity: 1;
}

.use-case-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: inherit;
}

.use-case-card--text small {
  background: #fff;
  border-color: #d4ddee;
}

.use-case-card h4 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.use-case-card p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.96;
}

/* CTA / Footer */

.cta-wrap {
  background: var(--bg);
}

.cta-box {
  background: linear-gradient(155deg, #222749, #2f3b83);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 42px rgba(14, 18, 52, 0.34);
  border-radius: var(--radius-lg);
  padding: 72px 20px;
  text-align: center;
}

.cta-box h2 {
  color: #ffffff;
}

.cta-box p {
  margin-top: 10px;
  color: rgba(232, 242, 255, 0.9);
}

.contact-form {
  margin-top: 18px;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7deea;
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a94aa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(78, 95, 255, 0.35);
  border-color: #9faef2;
}

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

.contact-form-actions {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.contact-form .form-consent {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #2e3a52;
  line-height: 1.45;
}

.contact-form .form-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: #4e5fff;
  flex: 0 0 auto;
}

.contact-form .form-consent a {
  color: #1a356f;
  font-weight: 600;
}

.contact-form .form-consent a:hover {
  text-decoration: underline;
}

.contact-form .form-consent span {
  min-width: 0;
  white-space: normal;
}

.contact-form-actions .btn {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.contact-form-actions .btn[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
}

.contact-form-status {
  min-height: 20px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.contact-form-status.is-success {
  color: #8de2b5;
}

.contact-form-status.is-error {
  color: #ffc3cb;
}

.cta-box .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
}

.cta-box .btn-primary {
  background: #5a73ff;
}

.cta-box .btn-primary:hover {
  box-shadow: 0 12px 24px rgba(90, 115, 255, 0.42);
}

.footer {
  margin-top: 72px;
  background: #f4f7fb;
  border-top: 1px solid #d7deea;
  padding: 48px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(250px, 1fr) minmax(250px, 1fr);
  gap: 0;
  align-items: start;
  border-bottom: 1px solid #dce3ee;
  padding-bottom: 32px;
}

.footer-intro {
  max-width: 620px;
  padding-right: 28px;
  border-right: 1px solid #dce3ee;
}

.footer-brand {
  display: block;
  max-width: 300px;
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
}

.footer-intro p {
  margin-top: 16px;
  max-width: 500px;
  line-height: 1.6;
  color: #2b3448;
}

.footer-col {
  padding: 0 24px;
  border-right: 1px solid #dce3ee;
}

.footer-col:last-child {
  border-right: 0;
}

.footer h4 {
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #56606f;
  font-family: Sora, sans-serif;
  font-weight: 600;
}

.footer p {
  font-size: 14px;
  margin: 8px 0;
}

.footer-col p {
  color: #202a3d;
  line-height: 1.45;
}

.footer-label {
  color: #2f3950;
  font-weight: 500;
}

.footer-strong {
  font-weight: 600;
  color: #15264a;
}

.footer-contact-row a,
.footer-strong a {
  color: #1a356f;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-row a:hover,
.footer-strong a:hover {
  text-decoration: underline;
}

.footer-bottom > span,
.footer-bottom > span #current-year {
  display: inline;
  margin: 0;
  font-size: 14px;
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-meta a,
.footer-meta span {
  display: inline;
  margin: 0;
  font-size: 14px;
}

.footer-meta-sep {
  opacity: 0.6;
}

.policy-page {
  background: #f6f8fc;
}

.policy-header {
  background: radial-gradient(circle at 80% 18%, #1f2cb7 0%, #0f1355 38%, #090d30 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.policy-header-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.policy-header .brand {
  color: #ffffff;
}

.policy-back {
  border-color: rgba(255, 255, 255, 0.44);
}

.policy-main {
  margin: 36px auto 72px;
  max-width: 900px;
  background: #ffffff;
  border: 1px solid #dbe3f1;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 16px 34px rgba(15, 23, 40, 0.08);
}

.policy-main h1 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.8px;
  color: #0f1728;
}

@media (min-width: 721px) {
  .policy-main h1 {
    white-space: nowrap;
  }
}

.policy-updated {
  margin-top: 12px;
  font-weight: 600;
  color: #41506b;
}

.policy-main p {
  margin-top: 16px;
  line-height: 1.7;
  color: #1f2a42;
}

.policy-main section {
  margin-top: 30px;
}

.policy-main h2 {
  text-align: left;
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: -0.35px;
}

.policy-main ul {
  margin: 14px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.policy-main li {
  line-height: 1.6;
  color: #1f2a42;
}

.calculator-page {
  background: #f4f7fd;
}

.calculator-main {
  max-width: 980px;
}

.calculator-head p {
  margin-top: 10px;
}

.calc-market-note {
  margin-top: 16px;
  display: inline-grid;
  gap: 4px;
  border: 1px solid #dbe3f1;
  border-radius: 12px;
  background: #f7f9ff;
  padding: 10px 12px;
}

.calc-market-note span {
  color: #17213a;
  font-size: 14px;
  font-weight: 800;
}

.calc-market-note p {
  margin: 0;
  color: #53617c;
  font-size: 13px;
  line-height: 1.45;
}

.calculator-shell {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
}

.calc-panel {
  border: 1px solid #dbe3f1;
  border-radius: 16px;
  padding: 22px 20px;
  background: linear-gradient(155deg, #fbfcff, #f2f6ff);
}

.calc-panel h2 {
  text-align: left;
  font-size: clamp(25px, 3vw, 32px);
}

.calc-input-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 14px;
}

.calc-input-grid--advanced {
  margin-top: 16px;
}

.calc-field {
  min-width: 0;
}

.calc-field label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #1d2a46;
}

.calc-field small {
  display: block;
  margin: -2px 0 8px;
  color: #66738c;
  font-size: 13px;
  line-height: 1.4;
}

.calc-field input[type="number"],
.calc-field select,
.calc-readout {
  width: 100%;
  border: 1px solid #ccd8eb;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-size: 16px;
  color: #0f1728;
  background: #ffffff;
}

.calc-field select {
  min-height: 44px;
}

.calc-readout {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-weight: 700;
  background: #eef3ff;
}

.calc-field input[type="number"]:focus,
.calc-field select:focus {
  outline: 2px solid rgba(78, 95, 255, 0.36);
  border-color: #8ea2ec;
}

.calc-field input[type="range"] {
  --range-percent: 0%;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4e5fff var(--range-percent), #d4dcec var(--range-percent));
}

.calc-field input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  background: transparent;
}

.calc-field input[type="range"]::-moz-range-track {
  height: 8px;
  background: transparent;
}

.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -5px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background: #4e5fff;
  box-shadow: 0 6px 14px rgba(78, 95, 255, 0.45);
}

.calc-field input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background: #4e5fff;
  box-shadow: 0 6px 14px rgba(78, 95, 255, 0.45);
}

.calc-field input[type="range"]:focus {
  outline: none;
}

.calc-advanced {
  margin-top: 22px;
  border: 1px solid #dbe3f1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
  overflow: hidden;
}

.calc-advanced summary {
  cursor: pointer;
  padding: 15px 16px;
  color: #17213a;
  font-weight: 800;
  list-style: none;
}

.calc-advanced summary::-webkit-details-marker {
  display: none;
}

.calc-advanced summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-size: 20px;
  line-height: 1;
}

.calc-advanced[open] summary {
  border-bottom: 1px solid #dbe3f1;
}

.calc-advanced[open] summary::after {
  content: "−";
}

.calc-advanced > p {
  margin: 14px 16px 0;
  color: #53617c;
  line-height: 1.55;
  font-size: 14px;
}

.calc-advanced .calc-input-grid {
  padding: 0 16px 16px;
}

.calc-panel--results {
  background: linear-gradient(155deg, #232b53, #2f3b83);
  border-color: rgba(255, 255, 255, 0.2);
}

.calc-panel--results h2 {
  color: #ffffff;
}

.calc-metrics {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.calc-metric {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(7, 14, 44, 0.22);
  padding: 14px 12px;
}

.calc-metric span {
  display: block;
  color: rgba(235, 241, 255, 0.85);
  font-size: 13px;
}

.calc-metric strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(25px, 2.9vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.4px;
}

.calc-summary {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 14px;
  background: rgba(8, 16, 54, 0.35);
}

.calc-summary p {
  margin: 0;
  color: rgba(235, 241, 255, 0.93);
}

.calc-summary p + p {
  margin-top: 10px;
}

.calc-summary .calc-info-note {
  border: 1px solid rgba(145, 191, 255, 0.32);
  border-radius: 10px;
  background: rgba(121, 193, 255, 0.1);
  padding: 10px 12px;
}

.calc-summary strong {
  color: #ffffff;
}

.calc-inquiry {
  margin-top: 18px;
  border: 1px solid #dbe3f1;
  border-radius: 16px;
  background: #ffffff;
  padding: 22px 20px;
}

.calc-inquiry h2 {
  text-align: left;
  font-size: clamp(25px, 3vw, 32px);
}

.calc-inquiry-copy {
  margin-top: 8px;
  color: #41506b;
}

.calc-contact-form {
  margin-top: 16px;
}

.calc-contact-form .contact-form-status.is-success {
  color: #1f8e5a;
}

.calc-contact-form .contact-form-status.is-error {
  color: #c4374b;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Animations */
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes gradientShift {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 5px));
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 560px;
  }

  .tv-shell {
    transform: none;
  }

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

  .yt-combined-grid {
    grid-template-columns: 1fr;
  }

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

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

  .use-case-card--media,
  .use-case-card--media.media-advantage,
  .use-case-card--text,
  .use-case-card--text.accent,
  .use-case-card--text.below,
  .use-case-card--video {
    grid-column: span 1;
  }

  .airtime-chart {
    min-width: 720px;
  }

  .calculator-shell {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-intro,
  .footer-col {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .footer-col {
    margin-top: 2px;
    padding-top: 16px;
    border-top: 1px solid #dce3ee;
  }
}

@media (max-width: 720px) {
  .top-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .top-nav .brand {
    font-size: 26px;
    order: 1;
  }

  .brand-mark {
    height: 30px;
  }

  .nav-links {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    margin-top: 0;
    text-align: right;
  }

  .nav-mobile-only {
    display: list-item;
  }

  .nav-mobile-action-start {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-toggle {
    order: 2;
    display: inline-flex;
    width: 36px;
    height: 32px;
    margin-left: auto;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .nav-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
  }

  .nav-right {
    order: 1;
    width: auto;
    margin: 0 0 2px;
    align-self: flex-end;
    justify-content: flex-end;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 5;
    display: none;
    width: max-content;
    max-width: min(280px, 88vw);
    padding: 12px 14px 16px;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(9, 13, 48, 0.96);
    box-shadow: 0 18px 36px rgba(8, 12, 36, 0.24);
    backdrop-filter: blur(10px);
    pointer-events: none;
  }

  .top-nav.is-menu-open .mobile-menu {
    display: flex;
    pointer-events: auto;
  }

  .top-nav.is-menu-open .nav-right,
  .top-nav.is-menu-open .nav-links {
    align-items: flex-end;
    text-align: right;
  }

  .top-nav.is-menu-open .login {
    width: auto;
    justify-content: center;
  }

  .section-pad {
    padding: 64px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .cta {
    padding-bottom: 40px;
  }

  .grid-cards,
  .story-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    margin-top: 32px;
    padding: 36px 0 22px;
  }

  .footer-grid {
    gap: 14px;
  }

  .footer-intro {
    padding-bottom: 16px;
  }

  .footer-col {
    padding-top: 22px;
    padding-left: max(0px, calc(100% - 330px));
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .footer-intro + .footer-col {
    padding-bottom: 8px;
  }

  .footer h4 {
    font-size: 21px;
    margin-bottom: 22px;
  }

  .footer-brand {
    max-width: 220px;
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom > span {
    width: 100%;
  }

  .footer-bottom div {
    gap: 8px;
    justify-content: center;
    width: 100%;
  }

  .footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .use-case-card {
    min-height: 0;
  }

  .use-case-card--media,
  .use-case-card--media.media-advantage,
  .use-case-card--video {
    min-height: 280px;
  }

  .use-case-card h4 {
    font-size: 24px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .login-modal__dialog {
    margin: max(16px, env(safe-area-inset-top)) auto 0;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    padding: 20px 18px;
    -webkit-overflow-scrolling: touch;
  }

  .login-modal__dialog h3 {
    padding-right: 26px;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.3px;
  }

  .login-modal__dialog .login-form {
    gap: 9px;
  }

  .login-modal__dialog .login-form input {
    padding: 10px 11px;
  }

  .contact-modal__dialog .contact-modal-copy {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.45;
  }

  .contact-modal__dialog .contact-form {
    margin-top: 14px;
  }

  .contact-modal__dialog .contact-form-grid {
    gap: 10px;
    margin-bottom: 10px;
  }

  .contact-modal__dialog .contact-form label {
    gap: 6px;
  }

  .contact-modal__dialog .contact-form input,
  .contact-modal__dialog .contact-form textarea {
    padding: 10px 11px;
  }

  .contact-modal__dialog .contact-form textarea {
    min-height: 96px;
  }

  .contact-modal__dialog .contact-form .form-consent {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
  }

  .contact-modal__dialog .contact-form-actions {
    margin-top: 12px;
  }

  .contact-form-actions .btn {
    width: 100%;
  }

  .airtime-chart-card {
    padding: 20px 14px 18px;
  }

  .airtime-chart {
    min-width: 640px;
    gap: 10px;
  }

  .tv-badge {
    position: static;
    margin-top: 10px;
  }

  .hero-panel {
    display: grid;
    gap: 10px;
    min-height: 0;
  }

  .policy-header-row {
    min-height: 0;
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .policy-header-row .brand {
    order: 0;
    font-size: 26px;
  }

  .policy-back {
    order: 1;
    margin-left: auto;
  }

  .policy-main {
    margin: 20px auto 48px;
    padding: 24px 16px;
  }

  .calculator-shell {
    grid-template-columns: 1fr;
  }

  .calc-panel {
    padding: 18px 14px;
  }

  .calc-input-grid {
    grid-template-columns: 1fr;
  }

  .calc-metrics {
    grid-template-columns: 1fr;
  }

  .calc-inquiry {
    padding: 18px 14px;
  }

}

/* Selected calculator layout */
.calc-prototype {
  --proto-ink: #0f1728;
  --proto-muted: #53617c;
  --proto-line: #dbe3f1;
  --proto-blue: #4e5fff;
  background: #f4f7fd;
}

.calc-proto-main {
  padding: 34px 0 72px;
}

.calc-proto-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.calc-proto-eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--proto-line);
  border-radius: 999px;
  background: #ffffff;
  padding: 7px 10px;
  color: #33415c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.calc-proto-hero h1 {
  margin: 12px 0 0;
  max-width: 780px;
  color: var(--proto-ink);
  font-family: Sora, sans-serif;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.calc-proto-hero p {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--proto-muted);
  font-size: 17px;
  line-height: 1.6;
}

.calc-proto-market {
  display: grid;
  gap: 4px;
  min-width: 180px;
  border: 1px solid var(--proto-line);
  border-radius: 10px;
  background: #ffffff;
  padding: 14px 16px;
}

.calc-proto-market span {
  color: var(--proto-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.calc-proto-market strong {
  color: var(--proto-ink);
  font-size: 24px;
  line-height: 1.1;
}

.proto-panel,
.proto-drawer,
.proto-lead-card {
  border: 1px solid var(--proto-line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 40, 0.08);
}

.proto-panel,
.proto-lead-card {
  padding: 22px;
}

.calc-prototype h2,
.calc-prototype h3 {
  margin: 0;
  color: var(--proto-ink);
  text-align: left;
  letter-spacing: 0;
}

.calc-prototype h2 {
  font-size: clamp(22px, 2.8vw, 32px);
}

.calc-prototype h3 {
  font-size: 18px;
}

.proto-copy {
  margin: 8px 0 0;
  color: var(--proto-muted);
  line-height: 1.55;
}

.proto-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 18px;
  align-items: start;
}

.proto-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.proto-quick-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.calc-spaced-drawer,
.calc-spaced-stack,
.calc-result-strip-spaced {
  margin-top: 18px;
}

.calc-prototype .calc-inquiry {
  min-width: 0;
  width: 100%;
}

.calc-prototype .calc-field label {
  color: #1d2940;
}

.calc-prototype .calc-field input[type="number"],
.calc-prototype .calc-field select,
.calc-prototype .calc-readout,
.calc-prototype .contact-form input,
.calc-prototype .contact-form textarea {
  border-radius: 10px;
  border-color: #ccd8eb;
  background: #ffffff;
}

.calc-prototype .calc-readout {
  background: #eef3ff;
  color: #102133;
}

.calc-prototype .calc-field input[type="range"] {
  background: linear-gradient(90deg, var(--proto-blue) var(--range-percent), #d4dcec var(--range-percent));
}

.calc-prototype .calc-field input[type="range"]::-webkit-slider-thumb {
  background: var(--proto-blue);
  box-shadow: 0 6px 14px rgba(78, 95, 255, 0.36);
}

.calc-prototype .calc-field input[type="range"]::-moz-range-thumb {
  background: var(--proto-blue);
  box-shadow: 0 6px 14px rgba(78, 95, 255, 0.36);
}

.proto-drawer {
  padding: 0;
  overflow: hidden;
  min-width: 0;
  width: 100%;
}

.proto-drawer summary {
  cursor: pointer;
  padding: 17px 18px;
  color: var(--proto-ink);
  font-weight: 900;
  list-style: none;
}

.proto-drawer summary::-webkit-details-marker {
  display: none;
}

.proto-drawer summary::after {
  content: "+";
  float: right;
  color: var(--proto-blue);
  font-size: 20px;
  line-height: 1;
}

.proto-drawer[open] summary {
  border-bottom: 1px solid var(--proto-line);
}

.proto-drawer[open] summary::after {
  content: "-";
}

.proto-drawer-body {
  padding: 18px;
  min-width: 0;
}

.proto-drawer .calc-input-grid {
  margin-top: 0;
  min-width: 0;
}

.proto-result-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.proto-mini-metric {
  border: 1px solid var(--proto-line);
  border-radius: 10px;
  background: #f7f9ff;
  padding: 13px;
}

.proto-mini-metric span {
  display: block;
  color: var(--proto-muted);
  font-size: 12px;
  font-weight: 800;
}

.proto-mini-metric strong {
  display: block;
  margin-top: 7px;
  color: var(--proto-ink);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.05;
}

.calc-prototype .calc-summary {
  margin-top: 16px;
  border: 1px solid var(--proto-line);
  border-radius: 12px;
  background: #f8fbff;
  padding: 14px;
}

.calc-prototype .calc-summary p {
  margin: 0;
  color: #344158;
}

.calc-prototype .calc-summary p + p {
  margin-top: 10px;
}

.calc-prototype .calc-summary strong {
  color: #102133;
}

.calc-prototype .calc-summary .calc-info-note {
  border: 1px solid #bfd0f2;
  border-radius: 10px;
  background: #eef3ff;
  padding: 10px 12px;
}

.proto-lead-card {
  background: linear-gradient(155deg, #232b53, #2f3b83);
  color: #ffffff;
}

.proto-lead-card h2,
.proto-lead-card .proto-copy,
.proto-lead-card .proto-mini-metric span,
.proto-lead-card .proto-mini-metric strong {
  color: #ffffff;
}

.proto-lead-card .proto-mini-metric {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(7, 14, 44, 0.22);
}

.proto-dashboard .proto-lead-card .proto-result-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .calc-proto-hero,
  .proto-dashboard {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .calc-proto-main {
    padding: 24px 0 48px;
  }

  .calc-proto-hero h1 {
    font-size: 34px;
  }

  .calc-proto-market {
    min-width: 0;
  }

  .proto-panel,
  .proto-lead-card {
    padding: 18px 14px;
  }

  .proto-quick-grid,
  .proto-result-strip {
    grid-template-columns: 1fr;
  }

  .proto-drawer-body {
    padding: 16px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-inner {
    animation: none;
  }
}
