/* ─── Round Clock Support — landing styles ─────────────────────── */

:root {
  --bg: #FAF9F6;
  --ink: #181613;
  --muted: #6E6A61;
  --faint: #A39E92;
  --line: rgba(24, 22, 19, 0.12);
  --line-soft: rgba(24, 22, 19, 0.07);
  --card: #FFFFFF;
  --accent: #2A5FC4;
  --accent-ink: #FFFFFF;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Helvetica, sans-serif;
  --font-digits: ui-monospace, "SF Mono", Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: var(--accent-ink); }

.rc-page { min-height: 100vh; }

.rc-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Nav ─── */
.rc-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.rc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.rc-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.rc-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.rc-nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.15s ease;
}
.rc-nav-links a:hover { color: var(--ink); }

/* ─── Buttons ─── */
.rc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.rc-btn:active { transform: scale(0.98); }
.rc-btn-primary { background: var(--ink); color: var(--bg); }
.rc-btn-primary:hover { background: var(--accent); color: var(--accent-ink); }
.rc-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.rc-btn-ghost:hover { border-color: var(--ink); }
.rc-btn-sm { padding: 9px 18px; font-size: 14px; }
.rc-btn-lg { padding: 15px 32px; font-size: 16px; }

/* ─── Hero ─── */
.rc-hero { padding: 96px 0 72px; }
.rc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.rc-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: rc-pulse 2.4s ease-in-out infinite;
}
@keyframes rc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
  .rc-eyebrow-dot { animation: none; }
}
.rc-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 7.4vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 13ch;
  text-wrap: balance;
}
.rc-h1 em {
  font-style: italic;
  color: var(--accent);
}
.rc-hero-sub {
  margin-top: 28px;
  max-width: 52ch;
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}
.rc-hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ─── Clocks row ─── */
.rc-clocks {
  display: flex;
  gap: 56px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.rc-clock {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rc-clock-face { flex-shrink: 0; }
.rc-clock-city {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.rc-clock-time {
  font-family: var(--font-digits);
  font-size: 20px;
  letter-spacing: 0.02em;
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}
.rc-clock-status {
  font-size: 13px;
  color: var(--faint);
  margin-top: 1px;
}

/* ─── Stats strip ─── */
.rc-stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.rc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.rc-stat {
  padding: 36px 28px;
  border-left: 1px solid var(--line-soft);
}
.rc-stat:first-child { border-left: none; padding-left: 0; }
.rc-stat-value {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.rc-stat-label {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

/* ─── Sections ─── */
.rc-section { padding: 110px 0; }
.rc-section + .rc-section { border-top: 1px solid var(--line-soft); }
.rc-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}
.rc-kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.rc-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 20ch;
  text-wrap: balance;
}
.rc-section-note {
  max-width: 36ch;
  color: var(--muted);
  font-size: 16px;
  text-wrap: pretty;
}

/* ─── Channel rows ─── */
.rc-channels { display: flex; flex-direction: column; }
.rc-channel {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr auto;
  align-items: baseline;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  transition: background 0.15s ease;
}
.rc-channel:last-child { border-bottom: 1px solid var(--line); }
.rc-channel:hover { background: var(--line-soft); }
.rc-channel-num {
  font-family: var(--font-digits);
  font-size: 14px;
  color: var(--faint);
}
.rc-channel-name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.01em;
}
.rc-channel-desc {
  color: var(--muted);
  font-size: 16px;
  text-wrap: pretty;
}
.rc-channel-meta {
  font-family: var(--font-digits);
  font-size: 13px;
  color: var(--accent);
  white-space: nowrap;
}

/* ─── Coverage bars ─── */
.rc-coverage { display: flex; flex-direction: column; gap: 36px; }
.rc-coverage-row { display: grid; grid-template-columns: 180px 1fr; gap: 28px; align-items: center; }
.rc-coverage-label { font-size: 15px; font-weight: 600; }
.rc-coverage-sub { font-size: 13px; color: var(--muted); font-weight: 400; margin-top: 2px; }
.rc-coverage-track {
  position: relative;
  height: 44px;
  border-radius: 8px;
  background: var(--line-soft);
  overflow: hidden;
}
.rc-coverage-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 8px;
}
.rc-coverage-fill.partial { background: var(--faint); opacity: 0.5; }
.rc-coverage-fill.full {
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rc-coverage-fill.full span {
  color: var(--accent-ink);
  font-family: var(--font-digits);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.rc-hours-scale {
  display: flex;
  justify-content: space-between;
  grid-column: 2;
  font-family: var(--font-digits);
  font-size: 12px;
  color: var(--faint);
  padding: 0 2px;
}

/* ─── Steps ─── */
.rc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.rc-step { border-top: 2px solid var(--ink); padding-top: 24px; }
.rc-step-num {
  font-family: var(--font-digits);
  font-size: 13px;
  color: var(--accent);
}
.rc-step-title {
  font-family: var(--font-display);
  font-size: 28px;
  margin-top: 14px;
  letter-spacing: -0.01em;
}
.rc-step-desc {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  text-wrap: pretty;
}

/* ─── Industries ─── */
.rc-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.rc-industry {
  font-size: 16px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  transition: all 0.15s ease;
}
.rc-industry:hover { border-color: var(--ink); color: var(--ink); }
.rc-industry.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ─── Quote ─── */
.rc-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 26ch;
  text-wrap: balance;
}
.rc-quote em { font-style: italic; color: var(--accent); }
.rc-quote-attr {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.rc-quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: repeating-linear-gradient(45deg, var(--line-soft), var(--line-soft) 4px, var(--line) 4px, var(--line) 5px);
  border: 1px solid var(--line);
}
.rc-quote-name { font-size: 15px; font-weight: 600; }
.rc-quote-role { font-size: 14px; color: var(--muted); }

/* ─── CTA band ─── */
.rc-cta-band {
  background: var(--ink);
  color: var(--bg);
  border-radius: 24px;
  padding: 88px 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.rc-cta-band .rc-h2 { max-width: 18ch; }
.rc-cta-band .rc-btn-primary { background: var(--bg); color: var(--ink); }
.rc-cta-band .rc-btn-primary:hover { background: var(--accent); color: var(--accent-ink); }
.rc-cta-sub { color: rgba(250, 249, 246, 0.6); font-size: 16px; max-width: 44ch; text-wrap: pretty; }

/* ─── Footer ─── */
.rc-footer {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding: 72px 0 0;
  --f-ink: var(--ink);
  --f-muted: var(--muted);
  --f-line: var(--line-soft);
  background: transparent;
  color: var(--f-ink);
}
.rc-footer.ink {
  background: var(--ink);
  border-top-color: transparent;
  --f-ink: var(--bg);
  --f-muted: rgba(250, 249, 246, 0.55);
  --f-line: rgba(250, 249, 246, 0.14);
}
.rc-footer .rc-wordmark { color: var(--f-ink); }
.rc-footer.ink .rc-clock-face line { stroke: var(--bg); }
.rc-footer.ink .rc-clock-face circle:first-of-type { stroke: var(--f-line); }
.rc-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
}
.rc-footer-blurb {
  margin-top: 18px;
  max-width: 30ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--f-muted);
  text-wrap: pretty;
}
.rc-footer-col-title {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--f-muted);
  margin-bottom: 20px;
}
.rc-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.rc-footer-links a {
  color: var(--f-ink);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.15s ease;
}
.rc-footer-links a:hover { color: var(--accent); }
.rc-footer.ink .rc-footer-links a:hover { color: var(--f-muted); }
.rc-footer-newsletter { margin-top: 0; }
.rc-footer-newsletter p {
  font-size: 15px;
  color: var(--f-muted);
  margin-bottom: 16px;
  text-wrap: pretty;
}
.rc-footer-form {
  display: flex;
  gap: 8px;
}
.rc-footer-form input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--f-line);
  background: transparent;
  color: var(--f-ink);
  outline: none;
  transition: border-color 0.15s ease;
}
.rc-footer-form input::placeholder { color: var(--f-muted); }
.rc-footer-form input:focus { border-color: var(--accent); }
.rc-footer-form .rc-btn { flex-shrink: 0; }
.rc-footer.ink .rc-btn-primary { background: var(--bg); color: var(--ink); }
.rc-footer.ink .rc-btn-primary:hover { background: var(--accent); color: var(--accent-ink); }
.rc-footer-bottom {
  border-top: 1px solid var(--f-line);
  padding: 24px 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--f-muted);
}
.rc-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.rc-footer-bottom a { color: var(--f-muted); text-decoration: none; transition: color 0.15s ease; }
.rc-footer-bottom a:hover { color: var(--f-ink); }
.rc-footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rc-footer-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2E9E6B;
  animation: rc-pulse 2.4s ease-in-out infinite;
}

/* ─── Responsive ─── */
@media (max-width: 880px) {
  .rc-nav-links { display: none; }
  .rc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rc-stat:nth-child(3) { border-left: none; padding-left: 0; }
  .rc-channel { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .rc-channel-num { display: none; }
  .rc-steps { grid-template-columns: 1fr; }
  .rc-coverage-row { grid-template-columns: 1fr; gap: 10px; }
  .rc-hours-scale { grid-column: 1; }
  .rc-section { padding: 72px 0; }
  .rc-section-head { flex-direction: column; align-items: flex-start; }
  .rc-cta-band { padding: 64px 28px; }
  .rc-clocks { gap: 32px; }
  .rc-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .rc-footer-grid > :first-child,
  .rc-footer-grid > :last-child { grid-column: 1 / -1; }
}
