/* OVKON product landings — Time, Guardian, … */
@import url("ovkon-tokens.css");
@import url("ovkon-mark.css");

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

.page { overflow-x: hidden; }

/* Product nav */
.prod-nav {
  position: fixed;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  width: min(calc(100% - 1.5rem), 1040px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.65rem 0.5rem 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(13, 18, 34, 0.05);
}
.prod-nav-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}
.prod-nav-company {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--ink);
}
.prod-nav-company img.prod-nav-lockup {
  width: auto;
  height: 1.7rem;
  max-width: min(180px, 38vw);
  object-fit: contain;
  display: block;
}
.prod-nav-company img:not(.prod-nav-lockup) { width: 1.25rem; height: 1.25rem; }
.prod-nav-sep {
  width: 1px;
  height: 1rem;
  background: var(--line);
}
.prod-nav-product {
  font-weight: 650;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--ink);
}
.prod-nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.prod-nav-links a {
  padding: 0.45rem 0.8rem;
  font-size: 0.86rem;
  font-weight: 560;
  text-decoration: none;
  color: var(--muted);
  border-radius: 999px;
}
.prod-nav-links a:hover,
.prod-nav-links a.is-active {
  color: var(--ink);
  background: var(--foam);
}
.prod-nav-switch {
  color: var(--blue) !important;
  font-weight: 650 !important;
}
.prod-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.prod-nav-login {
  padding: 0.45rem 0.8rem;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  border-radius: 999px;
}
.prod-nav-login:hover { background: var(--foam); }
@media (max-width: 800px) {
  .prod-nav-links { display: none; }
}

.ov-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.ov-btn:hover { transform: translateY(-2px); }
.ov-btn-sm { padding: 0.5rem 1.05rem; font-size: 0.85rem; }
.ov-btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.25);
}
.ov-btn-primary:hover { background: var(--blue-deep); }
.ov-btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.ov-btn-ghost:hover { background: var(--foam); }

/* Hero */
.tm-hero {
  padding: 8.5rem 1.5rem 4.5rem;
  background:
    radial-gradient(ellipse 55% 50% at 85% 15%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 80%, rgba(56, 189, 248, 0.08), transparent 50%),
    linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 70%);
}
.tm-hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 860px) {
  .tm-hero-inner { grid-template-columns: 1fr; }
}
.tm-lockup {
  margin: 0 0 1.1rem;
}
.tm-lockup-product {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: var(--blue);
}
.tm-lockup-by {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.tm-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.tm-hero-sub {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: 1.08rem;
  color: var(--muted);
}
.tm-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.tm-hero-visual {
  position: relative;
  min-height: 280px;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 40% 35%, rgba(37, 99, 235, 0.22), transparent 50%),
    linear-gradient(160deg, #0B1220, #111827);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.tm-hero-visual img {
  width: 42%;
  filter: drop-shadow(0 0 28px rgba(37, 99, 235, 0.5));
  animation: tmPulse 4.5s ease-in-out infinite;
}
.tm-hero-visual::before,
.tm-hero-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 50%;
  inset: 18%;
  animation: tmRing 12s linear infinite;
}
.tm-hero-visual::after {
  inset: 8%;
  opacity: 0.55;
  animation-duration: 18s;
  animation-direction: reverse;
}
@keyframes tmPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes tmRing {
  to { transform: rotate(360deg); }
}

.tm-section {
  padding: 5.5rem 1.5rem;
}
.tm-section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}
.tm-section h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.tm-lead {
  margin: 0 0 2rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.tm-problem {
  background: var(--foam);
  border-block: 1px solid var(--line);
}
.tm-problem-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}
.tm-problem-list li {
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
}
.tm-problem-list strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.02rem;
}
.tm-problem-list span { color: var(--muted); }

.tm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 800px) {
  .tm-features-grid { grid-template-columns: 1fr; }
}
.tm-feature {
  padding: 1.35rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.tm-feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 650;
}
.tm-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.tm-benefits {
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(37, 99, 235, 0.1), transparent 55%),
    linear-gradient(180deg, #0B1220, #111827);
  color: var(--white);
}
.tm-benefits .tm-lead { color: rgba(243, 244, 246, 0.7); }
.tm-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .tm-benefits-grid { grid-template-columns: 1fr; }
}
.tm-benefit h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}
.tm-benefit p {
  margin: 0;
  color: rgba(243, 244, 246, 0.68);
  font-size: 0.95rem;
}

.tm-pricing {
  background: var(--foam);
}
.tm-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 860px) {
  .tm-plans { grid-template-columns: 1fr; }
}
.tm-plan {
  padding: 1.6rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  display: flex;
  flex-direction: column;
}
.tm-plan.is-featured {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.12);
}
.tm-plan h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 1rem;
}
.tm-price {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.tm-price small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.tm-plan p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}
.tm-plan .ov-btn { width: 100%; }

.tm-faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.tm-faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}
.tm-faq summary::-webkit-details-marker { display: none; }
.tm-faq details p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.tm-cta {
  padding: 5rem 1.5rem 6rem;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 50% at 50% 20%, rgba(37, 99, 235, 0.1), transparent 60%),
    var(--white);
}
.tm-cta h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}
.tm-cta p {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  color: var(--muted);
}

.tm-footer {
  padding: 1.5rem 1.5rem 2rem;
  border-top: 1px solid var(--line);
  background: var(--foam);
}
.tm-footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.tm-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 650;
}
.tm-footer-brand img { width: 1.25rem; height: 1.25rem; }
.tm-footer-brand span {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
}
.tm-footer a.back {
  font-size: 0.9rem;
  font-weight: 560;
  color: var(--muted);
  text-decoration: none;
}
.tm-footer a.back:hover { color: var(--ink); }
.tm-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.tm-footer-links a {
  font-size: 0.9rem;
  font-weight: 560;
  color: var(--muted);
  text-decoration: none;
}
.tm-footer-links a:hover { color: var(--ink); }

.tm-footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  width: 100%;
  margin-top: 0.35rem;
  font-size: 0.88rem;
}
.tm-footer-contacts a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 560;
}
.tm-footer-contacts a:hover { color: var(--blue-deep); }

.tm-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.tm-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Interactive estimator (Guardian) */
.tm-estimate {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem 1.75rem;
  margin-top: 0.5rem;
}
.tm-estimate-controls {
  margin-bottom: 1.15rem;
}
.tm-estimate-controls label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 560;
  font-size: 0.95rem;
}
.tm-estimate-controls input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}
.tm-estimate-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.tm-estimate-unk {
  padding: 0.4rem 0.85rem;
  font-family: inherit;
  font-weight: 650;
  font-size: 0.82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--foam);
  cursor: pointer;
}
.tm-estimate-unk.is-on {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.tm-estimate-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.tm-estimate-punch {
  margin: 1rem 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 650;
}
.tm-estimate-sub {
  margin: 0 0 1rem;
  color: var(--muted);
}
.tm-estimate-result {
  margin: 0;
  font-size: 1.05rem;
}
.tm-estimate-result strong {
  display: inline-block;
  font-size: 1.55rem;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.tm-estimate-note {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.tm-plan-tag {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.tm-plan ul {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.tm-disclaimer {
  padding: 0 1.5rem 2rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.88rem;
}
.tm-disclaimer summary {
  cursor: pointer;
  font-weight: 560;
}
