/*
 * PressHarbor Main Stylesheet
 * Origin: Extracted from newhomepage-edits.html (single-page prototype)
 * Version: 1.0.0
 *
 * Sections:
 *   1. Variables & Reset
 *   2. Navigation
 *   3. Hero (anchor visual)
 *   4. Atom Animation (pricing page)
 *   5. pH1 Section
 *   6. Scaling / Why Section
 *   7. Features
 *   8. Management
 *   9. Performance Tiers
 *  10. Multi-Site Packs
 *  11. Evaluation (dock diagram, /evaluation page)
 *  12. Evaluation Overview (3-step, homepage + /evaluation)
 *  13. Policy (/evaluation page)
 *  14. Activities / Validate
 *  15. No Strings / Terms
 *  16. Reseller / For Agencies
 *  17. Duration / Continuity
 *  18. FAQ
 *  19. Final CTA
 *  20. Footer
 *  21. Responsive
 *  22. Custom Overrides
 */

/* ============================================
   PressHarbor New Homepage — WP-Cloud Edition
   ============================================ */

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

:root {
  --navy:       #003d6b;
  --navy-light: #004a80;
  --blue:       #006cb7;
  --blue-light: #0080d4;
  --blue-glow:  #33a3ff;
  --green:      #218554;
  --green-light:#2a9e66;
  --orange:     #F59117;
  --orange-light: #fdb913;
  --teal:       #2F8F83;
  --teal-dark:  #267A70;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --gray-50:    #f1f5f9;
  --gray-100:   #e2e8f0;
  --gray-300:   #cbd5e1;
  --gray-500:   #64748b;
  --gray-700:   #334155;
  --gray-900:   #0f172a;
  --text:       #1e293b;
  --text-light: #64748b;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:       'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  --max-width:  1200px;
  --section-pad: 100px 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.container > * {
  min-width: 0;
}

[id] {
  scroll-margin-top: 80px;
}

/* WordPress admin bar offset */
body.admin-bar nav#nav {
  top: var(--wp-admin--admin-bar--height, 32px);
}

body.admin-bar [id] {
  scroll-margin-top: calc(80px + var(--wp-admin--admin-bar--height, 32px));
}

/* ============================================
   Navigation
   ============================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: var(--blue);
}

nav.scrolled {
  background: var(--blue);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 12px rgba(0, 108, 183, 0.2);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo svg {
  width: 36px;
  height: 36px;
}

.logo-wordmark {
  line-height: 1;
}

.logo-press {
  color: var(--orange);
}

.logo-harbor {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 8px 4px;
  display: inline-block;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Hamburger toggle — hidden on desktop, visible on mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(245, 145, 23, 0);
}

.btn-primary:hover {
  background: #e07f0a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245, 145, 23, 0.3);
}

.btn-secondary {
  background: rgba(0, 108, 183, 0.06);
  color: var(--blue);
  border: 1px solid rgba(0, 108, 183, 0.2);
}

.btn-secondary:hover {
  background: rgba(0, 108, 183, 0.1);
  border-color: rgba(0, 108, 183, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 10px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 108, 183, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 133, 84, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 108, 183, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 108, 183, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: rgba(245, 145, 23, 0.1);
  border: 1px solid rgba(245, 145, 23, 0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245,145,23,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(245,145,23,0); }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions .btn-large {
  min-width: 260px;
  text-align: center;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.hero-note svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  opacity: 0.5;
}

/* Hero visual — environment card */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.env-card {
  width: 380px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 61, 107, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.env-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.env-card-dots {
  display: flex;
  gap: 6px;
}

.env-card-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}

.env-card-dots span:first-child { background: #ef4444; }
.env-card-dots span:nth-child(2) { background: #f59e0b; }
.env-card-dots span:last-child { background: #22c55e; }

.env-card-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--gray-500);
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  height: 1.8em;
}

.env-url-dock,
.env-url-live {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.8s ease;
}

.env-url-dock {
  opacity: 0;
}

.env-url-dock.visible {
  opacity: 1;
}

.env-url-live {
  opacity: 0;
  color: var(--blue);
  font-weight: 600;
}

.env-card-url.live .env-url-dock {
  opacity: 0;
}

.env-card-url.live .env-url-live {
  opacity: 1;
}

.env-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.env-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: 10px;
  border: 1px solid var(--gray-100);
}

.env-card-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.env-card-icon svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
}

.env-card-icon.blue {
  background: rgba(0, 108, 183, 0.1);
  color: var(--blue);
}

.env-card-icon.green {
  background: rgba(33, 133, 84, 0.1);
  color: var(--green);
}

.env-card-icon.navy {
  background: rgba(0, 61, 107, 0.1);
  color: var(--navy);
}

.env-card-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.3;
}

.env-card-label span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 1px;
}

.env-card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 500;
  transition: color 0.5s ease;
}

.env-card-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
  transition: background 0.5s ease;
}

/* Yellow "creating" state */
.env-card-status.creating {
  color: var(--orange);
}

.env-card-status.creating::before {
  background: var(--orange);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Atom animation (used on /pricing page, pH1 section) */
.atom-container {
  position: relative;
  width: 460px;
  height: 460px;
}

.atom-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--orange-light), var(--orange));
  box-shadow:
    0 0 60px rgba(245, 145, 23, 0.3),
    0 0 120px rgba(245, 145, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.atom-label {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0, 108, 183, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 220px;
  height: 220px;
  animation: orbit-spin 20s linear infinite;
}

.orbit-2 {
  width: 320px;
  height: 320px;
  animation: orbit-spin 30s linear infinite reverse;
}

.orbit-3 {
  width: 420px;
  height: 420px;
  animation: orbit-spin 40s linear infinite;
}

@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.electron {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 20px rgba(59, 158, 255, 0.5);
}

/* ============================================
   pH1 Section — The Concept
   ============================================ */

.ph1-section {
  padding: 120px 0;
  background: var(--white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.section-label--center {
  justify-content: center;
}

.ph1-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ph1-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.ph1-content h2 .mono {
  font-family: var(--mono);
  color: var(--blue);
}

.ph1-content .lead {
  font-size: 1.15rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 480px;
}

.ph1-clarification {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

.ph1-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ph1-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ph1-feature .icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph1-feature .icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.ph1-feature h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.ph1-feature p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* pH1 visual — spec card */
.ph1-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ph1-visual .atom-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-70%, -50%);
  z-index: 0;
  opacity: 0.5;
}

.ph1-visual .spec-card {
  position: relative;
  z-index: 1;
}

.spec-card {
  width: 100%;
  max-width: 440px;
  background: var(--blue);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.spec-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.spec-card-title {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.spec-card-title .accent {
  color: var(--orange);
}

.spec-card-badge {
  padding: 4px 12px;
  background: rgba(245, 145, 23, 0.15);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-card-pricing {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.spec-price-primary {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-wrap: wrap;
}

.spec-price-amount {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.spec-price-period {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.spec-price-billing {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
}

.spec-price-alt {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}

.spec-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}

.spec-list .spec-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spec-list .spec-icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue-glow);
}

.spec-card-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ============================================
   Why PressHarbor
   ============================================ */

.why-section {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
}

.why-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.why-content .lead {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.why-content .lead strong {
  color: var(--gray-700);
  font-weight: 600;
}

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.2s;
}

.why-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.why-card .why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card .why-icon.navy { background: var(--blue); }
.why-card .why-icon.blue { background: rgba(10, 86, 168, 0.08); }
.why-card .why-icon.orange { background: rgba(245, 145, 23, 0.08); }

.why-card .why-icon svg {
  width: 22px;
  height: 22px;
}

.why-card .why-icon.navy svg { color: var(--blue-glow); }
.why-card .why-icon.blue svg { color: var(--blue); }
.why-card .why-icon.orange svg { color: var(--orange); }

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   Infrastructure / Features
   ============================================ */

.features-section {
  padding: var(--section-pad);
  background: var(--white);
}

.features-section .section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}

.features-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.features-section .subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

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

.feature-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--gray-100);
  transition: all 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
  background: var(--white);
}

.feature-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card .card-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card .card-icon.blue    { background: rgba(10, 86, 168, 0.1); color: var(--blue); }
.feature-card .card-icon.orange  { background: rgba(245, 145, 23, 0.1); color: var(--orange); }
.feature-card .card-icon.green   { background: rgba(52, 211, 153, 0.1); color: #059669; }

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   Management Experience
   ============================================ */

.manage-section {
  padding: 100px 0;
  background: var(--white);
}

.manage-section .section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}

.manage-section .section-label {
  color: var(--blue);
}

.manage-section .section-label::before {
  background: var(--blue);
}

.manage-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.manage-section .subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.manage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.manage-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.manage-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.manage-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manage-item-icon svg {
  width: 22px;
  height: 22px;
}

.manage-item-icon.blue    { background: rgba(10, 86, 168, 0.1); color: var(--blue); }
.manage-item-icon.orange  { background: rgba(245, 145, 23, 0.1); color: var(--orange); }
.manage-item-icon.green   { background: rgba(52, 211, 153, 0.1); color: #059669; }

.manage-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.manage-item p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.manage-dashboard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.manage-dashboard-bar {
  background: var(--blue);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.manage-dashboard-bar .portal-dots {
  display: flex;
  gap: 6px;
}

.manage-dashboard-bar .portal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.manage-dashboard-bar .portal-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
}

.manage-dashboard-body {
  padding: 24px;
}

.manage-dashboard-site {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.manage-dashboard-site .site-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #059669;
}

.manage-dashboard-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.manage-tool {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.manage-tool-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.manage-tool-icon svg {
  width: 16px;
  height: 16px;
}

.manage-tool-icon.blue   { background: rgba(10, 86, 168, 0.1); color: var(--blue); }
.manage-tool-icon.orange { background: rgba(245, 145, 23, 0.1); color: var(--orange); }
.manage-tool-icon.green  { background: rgba(52, 211, 153, 0.1); color: #059669; }

.manage-tool-info {
  min-width: 0;
}

.manage-tool-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-900);
}

.manage-tool-status {
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ============================================
   Performance Upgrades
   ============================================ */

.perf-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.perf-section .section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}

.perf-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.perf-section .subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 48px;
  background: var(--white);
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.billing-option {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 28px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.billing-option:hover {
  color: var(--gray-700);
}

.billing-option.active {
  background: var(--blue);
  color: var(--white);
}

.perf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.perf-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}

.perf-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.perf-card.highlight-card {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.perf-card.highlight-card:hover {
  background: var(--blue-light);
}

.perf-card .perf-tier {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 8px;
}

.perf-card.highlight-card .perf-tier {
  color: var(--orange-light);
}

.perf-card .perf-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.perf-card.highlight-card .perf-name {
  color: var(--white);
}

.perf-card .perf-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
}

.perf-card.highlight-card .perf-desc {
  color: rgba(255,255,255,0.5);
}

.perf-card .perf-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.perf-card .perf-specs li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-700);
}

.perf-card .perf-specs li .spec-dot {
  margin-top: 0.45em;
}

.perf-card.highlight-card .perf-specs li {
  color: rgba(255,255,255,0.75);
}

.perf-card .perf-specs .spec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.perf-card.highlight-card .perf-specs .spec-dot {
  background: var(--orange);
}

.perf-card .perf-price {
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.perf-card.highlight-card .perf-price {
  border-top-color: rgba(255,255,255,0.08);
}

.perf-card .perf-price .amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.perf-card.highlight-card .perf-price .amount {
  color: var(--white);
}

.perf-card .perf-price .period {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.perf-card.highlight-card .perf-price .period {
  color: rgba(255,255,255,0.4);
}

.perf-card .perf-price .annual-note {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.perf-card.highlight-card .perf-price .annual-note {
  color: rgba(255,255,255,0.3);
}

.perf-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.perf-note strong {
  color: var(--gray-700);
  font-weight: 600;
}

/* ============================================
   Multi-Site Packs Section
   ============================================ */

.packs-section {
  padding: 100px 0;
  background: var(--white);
}

.packs-section .section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}

.packs-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.packs-section .subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.packs-table-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.packs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.packs-table thead th {
  background: var(--gray-50);
  padding: 16px 24px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  border-bottom: 1px solid var(--gray-200);
}

.packs-table thead th:last-child,
.packs-table thead th:nth-child(3) {
  text-align: right;
}

.packs-table tbody tr {
  transition: background 0.15s;
}

.packs-table tbody tr:hover {
  background: var(--gray-50);
}

.packs-table tbody td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
  color: var(--gray-700);
}

.packs-table tbody tr:last-child td {
  border-bottom: none;
}

.packs-table .pack-name {
  font-weight: 700;
  color: var(--gray-900);
}

.packs-table .pack-name .pack-sites {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-left: 8px;
}

.packs-table .pack-price {
  text-align: right;
  font-weight: 700;
  color: var(--gray-900);
  font-variant-numeric: tabular-nums;
}

.packs-table .pack-annual {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.packs-table .pack-annual .annual-price {
  font-weight: 700;
  color: var(--green);
}

.packs-table .pack-annual .annual-detail {
  font-size: 0.75rem;
  color: var(--gray-400);
  display: block;
  margin-top: 2px;
}

.packs-table .pack-per-site {
  font-size: 0.8rem;
  color: var(--gray-400);
  display: block;
  margin-top: 2px;
}

.packs-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 32px auto 0;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .packs-table thead th,
  .packs-table tbody td {
    padding: 14px 14px;
    font-size: 0.85rem;
  }
  .packs-table .pack-name .pack-sites {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }
}

/* ============================================
   Evaluation Section
   ============================================ */

.eval-section {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
}

.eval-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eval-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.eval-content .lead {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
}

.eval-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.eval-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.eval-price .period {
  font-size: 1.1rem;
  color: var(--gray-500);
  font-weight: 500;
}

.eval-price-note {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.eval-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.eval-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.eval-checklist .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eval-checklist .check svg {
  width: 12px;
  height: 12px;
  color: #059669;
}

/* Evaluation visual — dock diagram */
.eval-visual {
  display: flex;
  justify-content: center;
}

.dock-diagram {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dock-step {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.2s;
}

.dock-step:hover {
  border-color: var(--blue);
  background: rgba(10, 86, 168, 0.02);
}

.dock-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.dock-step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.dock-step p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.dock-url-preview {
  background: var(--blue);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dock-url-dots {
  display: flex;
  gap: 6px;
}

.dock-url-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dock-url-dots span:nth-child(1) { background: #ff5f57; }
.dock-url-dots span:nth-child(2) { background: #febc2e; }
.dock-url-dots span:nth-child(3) { background: #28c840; }

.dock-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.dock-url-bar {
  position: relative;
  display: flex;
  align-items: center;
}

.dock-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--orange-light);
  border-radius: 50%;
  animation: dock-spin 0.6s linear infinite;
  margin-right: 10px;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.dock-spinner.done {
  opacity: 0;
  width: 0;
  margin-right: 0;
}

@keyframes dock-spin {
  to { transform: rotate(360deg); }
}

.dock-url-bar .domain {
  color: var(--orange-light);
  transition: opacity 0.15s;
}

.dock-url-bar .domain.cycling {
  opacity: 0.6;
}

.dock-url-bar .dock-suffix {
  color: rgba(255,255,255,0.5);
}

/* ============================================
   Evaluation Overview (3-step, homepage + /evaluation)
   ============================================ */

.eval-overview {
  padding: 120px 0;
  background: var(--white);
}

.eval-overview .container {
  max-width: 900px;
}

.eval-overview .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.eval-overview h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.eval-overview .subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.eval-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.eval-step {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.2s;
}

.eval-step:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
  background: var(--white);
}

.eval-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.eval-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.eval-step p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.eval-closing {
  text-align: center;
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 40px;
}

.eval-credit-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-300);
  margin-top: 12px;
}

.eval-provision-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 32px;
}

.eval-cta {
  text-align: center;
}

/* ============================================
   Policy Section (/evaluation page)
   ============================================ */

.policy-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.policy-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.policy-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ============================================
   What You Can Do
   ============================================ */

.activities-section {
  padding: var(--section-pad);
  background: var(--white);
}

.activities-section .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.activities-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.activities-section .subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
}

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

.activity-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--gray-100);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.activity-card--full {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

.activity-card .activity-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-card .activity-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue-glow);
}

.activity-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.activity-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================
   What the Evaluation Is Not
   ============================================ */

.not-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.not-section .container {
  max-width: 800px;
}

.not-section h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 12px;
  text-align: center;
}

.not-section .subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 48px;
}

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

.not-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
}

.not-item .x-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.x-icon--green {
  background: rgba(52, 211, 153, 0.08);
}

.not-item .x-icon svg {
  width: 14px;
  height: 14px;
  color: #ef4444;
}

/* ============================================
   Duration & Upgrading
   ============================================ */

.timeline-section {
  padding: var(--section-pad);
  background: var(--white);
}

.timeline-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.timeline-block h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.timeline-block p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 20px;
}

.timeline-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-700);
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: 10px;
}

.timeline-list .tl-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.timeline-list .tl-icon.blue   { background: var(--blue); }
.timeline-list .tl-icon.green  { background: #34d399; }
.timeline-list .tl-icon.orange { background: var(--orange); }

.timeline-note {
  margin-top: 16px;
}

/* ============================================
   FAQ
   ============================================ */

.faq-section {
  padding: var(--section-pad);
  background: var(--gray-50);
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-question .faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.faq-item.open .faq-toggle {
  background: var(--blue);
  transform: rotate(45deg);
}

.faq-item.open .faq-toggle svg {
  color: var(--white);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--gray-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

/* ============================================
   Final CTA
   ============================================ */

.cta-section {
  padding: 120px 0;
  background: var(--blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.cta-section .btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   Footer
   ============================================ */

footer {
  background: var(--navy);
  padding: 40px 0;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .footer-brand span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

footer .footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

footer .footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

footer .footer-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   Uptime Page
   ============================================ */

.uptime-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: var(--white);
}

.uptime-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.15;
}

.uptime-hero .lead {
  font-size: 1.15rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 40px;
}

/* Stats row */
.uptime-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
}

.uptime-stat {
  text-align: center;
}

.uptime-stat-value {
  font-family: var(--mono);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.uptime-stat-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.uptime-emphasis {
  font-size: 0.92rem;
  color: var(--gray-400);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content blocks */
.uptime-block {
  padding: 80px 0;
}

.uptime-block--alt {
  background: var(--gray-50);
}

.uptime-prose {
  max-width: 640px;
  margin: 0 auto;
}

/* Section heading with icon */
.uptime-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.uptime-heading-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 108, 183, 0.08), rgba(0, 128, 168, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.uptime-heading-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.uptime-prose h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 0;
}

.uptime-prose p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.uptime-prose p:last-child {
  margin-bottom: 0;
}

/* Callout — accent left border for key statements */
.uptime-callout {
  border-left: 3px solid var(--blue);
  padding: 12px 0 12px 20px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 20px 0;
}

/* Checklist with icons */
.uptime-checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uptime-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.uptime-checklist li svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
}

/* "No X" negatives row */
.uptime-negatives {
  display: flex;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.uptime-negative {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  background: rgba(5, 150, 105, 0.06);
  padding: 10px 16px;
  border-radius: 8px;
}

.uptime-negative svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Accountability numbered steps */
.uptime-accountability {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.uptime-account-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: var(--gray-600);
}

.uptime-account-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-note { justify-content: center; }
  .env-card { width: 100%; max-width: 380px; }
  .atom-container { width: 360px; height: 360px; }
  .atom-core { width: 80px; height: 80px; }
  .atom-label { font-size: 1.3rem; }
  .orbit-1 { width: 180px; height: 180px; }
  .orbit-2 { width: 260px; height: 260px; }
  .orbit-3 { width: 340px; height: 340px; }

  .ph1-section .container,
  .eval-section .container,
  .timeline-section .container,
  .why-section .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .manage-layout { grid-template-columns: 1fr; gap: 48px; }

  .eval-steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
  }

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

@media (max-width: 640px) {
  :root { --section-pad: 72px 0; }
  .hero h1 { font-size: 2.4rem; }
  .uptime-hero { padding: 120px 0 60px; }
  .uptime-hero h1 { font-size: 2rem; }
  .uptime-stats { gap: 24px; }
  .uptime-stat-value { font-size: 1.8rem; }
  .uptime-block { padding: 56px 0; }
  .uptime-heading-icon { width: 40px; height: 40px; }
  .uptime-prose h2 { font-size: 1.4rem; }
  .uptime-negatives { flex-direction: column; gap: 10px; }
  .ph1-content h2, .eval-content h2, .eval-overview h2, .features-section h2,
  .activities-section h2, .cta-section h2,
  .why-content h2, .manage-section h2 {
    font-size: 2rem;
  }
  .features-grid,
  .activities-grid,
  .not-grid {
    grid-template-columns: 1fr;
  }
  .manage-dashboard-tools { grid-template-columns: 1fr; }
  nav .container { position: relative; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    left: -32px;
    right: -32px;
    flex-direction: column;
    gap: 0;
    background: var(--blue);
    padding: 12px 32px 20px;
    box-shadow: 0 8px 24px rgba(0, 61, 107, 0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links a { padding: 14px 0; display: block; font-size: 1rem; }
  .nav-links .nav-cta { margin-top: 8px; text-align: center; border-radius: 8px; padding: 14px 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .cta-actions { flex-direction: column; align-items: center; }
  footer .container { flex-direction: column; gap: 16px; text-align: center; }
  .container { padding: 0 20px; }
  .spec-card { max-width: 100%; padding: 28px; }
  .ph1-visual { flex-direction: column; align-items: center; }
  .atom-container { display: none; }
  .perf-grid { grid-template-columns: 1fr; }
  .manage-dashboard { max-width: 100%; }
  .reseller-layout { grid-template-columns: 1fr; }
}

/* Reseller Section */
.reseller-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #f8fbff 50%, #f0faf4 100%);
  position: relative;
  overflow: hidden;
}

.reseller-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 133, 84, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.reseller-section .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.reseller-section .section-label {
  color: var(--green);
}

.reseller-section .section-label::before {
  background: var(--green);
}

.reseller-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.reseller-section .subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.reseller-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.reseller-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reseller-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.reseller-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.reseller-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.reseller-step p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.reseller-portal {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.reseller-portal-bar {
  background: var(--green);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reseller-portal-bar .portal-dots {
  display: flex;
  gap: 6px;
}

.reseller-portal-bar .portal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.reseller-portal-bar .portal-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 6px;
  flex: 1;
}

.reseller-portal-body {
  padding: 28px 24px;
}

.reseller-portal-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reseller-portal-brand .brand-dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green);
  opacity: 0.2;
}

.reseller-portal-sites {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reseller-portal-site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: 10px;
  border: 1px solid var(--gray-100);
}

.reseller-portal-site .site-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
}

.reseller-portal-site .site-status {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  background: rgba(33, 133, 84, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

.reseller-pricing {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.reseller-pricing .price-tag {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}

.reseller-pricing .price-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.reseller-pricing .price-note {
  font-size: 0.8rem;
  color: var(--gray-400);
}

@media (max-width: 768px) {
  .reseller-layout { grid-template-columns: 1fr; }
}

/* ============================================
   Page Content (page.php)
   ============================================ */

.page-content {
  padding: 140px 0 80px;
}

.page-content h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 32px;
}

.entry-content {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.entry-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 48px 0 16px;
}

.entry-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 32px 0 12px;
}

.entry-content p {
  margin-bottom: 20px;
}

.entry-content ul, .entry-content ol {
  margin: 0 0 20px 24px;
}

.entry-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry-content a:hover {
  color: var(--teal-dark);
}

.page-404 {
  padding: 200px 0 120px;
  text-align: center;
}

.page-404 h1 {
  font-size: 6rem;
  font-weight: 800;
  color: var(--gray-100);
  margin-bottom: 16px;
}

.page-404 h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.page-404 p {
  color: var(--gray-500);
  margin-bottom: 32px;
}

/* ============================================
   Blog / Archive
   ============================================ */

.archive-content {
  padding: 140px 0 80px;
}

.posts-grid {
  display: grid;
  gap: 32px;
  max-width: 720px;
}

.post-card {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-100);
}

.post-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.post-card h2 a:hover {
  color: var(--blue);
}

.post-meta {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.post-excerpt {
  color: var(--gray-700);
  line-height: 1.7;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
}

.read-more:hover {
  color: var(--teal-dark);
}

/* ============================================
   Custom Overrides
   ============================================
   Add site-specific overrides below this line.
   This section is preserved across theme updates.
   ============================================ */
