
:root {
  --ink: #0d1f0f;
  --green-primary: #1a7a4a;
  --green-accent: #2ea865;
  --cream: #f5f4f0;
  --field: #f7f6f2;
  --white: #ffffff;
  --border: rgba(13, 31, 15, 0.10);
  --maxw: 1600px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; }

.nav { background: linear-gradient(120deg, #0d1f0f 0%, #16401f 100%); padding: 24px 32px; }
.nav.nav-floating { position: absolute; top: 0; left: 0; right: 0; z-index: 30; background: transparent; }
.nav-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 700; color: #fff; }
.nav-logo img { width: 32px; height: 32px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.58); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active { border-bottom: 2px solid var(--green-primary); padding-bottom: 4px; }
.btn-book { padding: 10px 24px; border-radius: 999px; background: var(--green-primary); color: #fff; font-weight: 500; transition: background 0.2s; white-space: nowrap; }
.btn-book:hover { background: var(--green-accent); }
.nav:not(.nav-floating) .btn-book { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); }
.nav-toggle { display: none; background: none; color: #fff; font-size: 24px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; border-radius: 999px; font-weight: 600; transition: all 0.2s; }
.btn-green { background: var(--green-accent); color: #fff; }
.btn-green:hover { background: var(--green-primary); }
.btn-outline-light { border: 2px solid #fff; color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-white { background: #fff; color: var(--green-primary); }
.btn-white:hover { background: var(--cream); }
.btn-outline-white { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline-white:hover { background: #fff; color: var(--green-primary); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

.hero { position: relative; height: 100vh; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3), rgba(0,0,0,0.7)); }
.hero-reel { position: absolute; top: 48px; right: 80px; z-index: 20; display: flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2); }
.hero-reel-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; animation: pulse 2s infinite; }
.hero-reel span { color: #fff; font-size: 14px; font-weight: 500; }
.hero-content { position: absolute; bottom: 80px; left: 80px; z-index: 20; max-width: 760px; opacity: 0; animation: fadeUp 0.8s ease forwards; }
.hero-tag { display: inline-block; margin-bottom: 24px; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 14px; font-weight: 500; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.hero h1 .accent { color: var(--green-accent); }
.hero-sub { font-size: 20px; color: rgba(255,255,255,0.9); margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { position: absolute; bottom: 80px; right: 80px; z-index: 20; text-align: right; opacity: 0; animation: fadeLeft 0.8s ease 0.2s forwards; }
.hero-stat-num { font-size: 36px; font-weight: 700; color: #fff; }
.hero-stat-label { color: rgba(255,255,255,0.8); font-size: 14px; }
.hero-stat-src { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 4px; }

.ticker { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; overflow: hidden; }
.ticker-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.ticker-item { display: flex; align-items: center; gap: 8px; padding: 0 24px; }
.ticker-item span { font-weight: 500; }
.ticker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-accent); }

.section, .cs-section { padding: 96px 32px; }
.section-white { background: #fff; }
.section-cream { background: var(--cream); }
.container { max-width: var(--maxw); margin: 0 auto; }
.section-title { font-size: clamp(28px, 4vw, 48px); font-weight: 700; text-align: center; margin-bottom: 64px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.service-card, .process-card, .pricing-card, .team-card, .contact-card, .cs-meta-card, .cs-scope-card { padding: 28px; border-radius: 16px; background: #fff; border: 1px solid var(--border); }
.service-card { border-width: 2px; }
.service-card:hover { border-color: var(--green-accent); }
.service-icon, .contact-card-icon, .cs-scope-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(46,168,101,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; color: var(--green-primary); }
.service-card h3, .process-card h3, .cs-scope-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.service-card p, .process-card p, .cs-scope-card p { font-size: 14px; color: rgba(13,31,15,0.7); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card { padding: 32px; }
.process-card.highlight { background: rgba(46,168,101,0.05); border-color: rgba(46,168,101,0.2); }
.process-num { font-size: 48px; font-weight: 700; color: var(--green-accent); margin-bottom: 16px; }

.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.proof-card, .proof-placeholder { padding: 40px; border-radius: 24px; background: rgba(46,168,101,0.05); border: 1px solid rgba(46,168,101,0.2); }
.proof-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center 52%; border-radius: 16px; margin-bottom: 24px; }
.proof-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.proof-card > p { color: rgba(13,31,15,0.7); margin-bottom: 32px; }
.proof-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proof-stat-num { font-size: 36px; font-weight: 700; color: var(--green-primary); }
.proof-stat-label { font-size: 14px; color: rgba(13,31,15,0.7); }
.proof-link { margin-top: 32px; color: var(--green-primary); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.proof-placeholder { border: 2px dashed rgba(13,31,15,0.2); background: #fff; display: flex; align-items: center; justify-content: center; text-align: center; }
.proof-placeholder-inner .emoji { font-size: 56px; margin-bottom: 16px; }
.proof-placeholder-inner h3 { font-size: 24px; color: rgba(13,31,15,0.4); }

.cta-banner { padding: 64px; border-radius: 24px; background: var(--green-primary); text-align: center; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.footer { background: var(--ink); padding: 64px 32px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-brand img { width: 32px; height: 32px; }
.footer-brand span { font-size: 20px; font-weight: 700; color: #fff; }
.footer-col p, .footer-col li { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-col h4 { color: #fff; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 14px; }

.eyebrow, .cs-label { font-size: 12px; font-weight: 700; color: var(--green-primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.ph-editorial, .ph-centered { background: var(--cream); border-bottom: 1px solid var(--border); padding: 96px 32px; }
.ph-editorial { background: #fff; padding: 88px 32px 72px; }
.ph-editorial-inner, .ph-centered-inner { max-width: var(--maxw); margin: 0 auto; }
.ph-centered-inner { max-width: 720px; text-align: center; }
.ph-editorial h1, .ph-centered h1 { font-size: clamp(36px, 5vw, 68px); font-weight: 700; line-height: 1.08; margin-bottom: 24px; max-width: 16ch; }
.ph-centered h1 { margin: 0 auto; }
.ph-editorial h1 .accent, .ph-centered h1 .accent { color: var(--green-primary); }
.ph-editorial p, .ph-centered p { font-size: 18px; color: rgba(13,31,15,0.65); max-width: 52ch; }
.ph-editorial p { margin-left: auto; text-align: right; }
.ph-centered p { margin: 24px auto 0; }
.eyebrow-pill { display: inline-block; font-size: 12px; font-weight: 700; color: var(--green-primary); text-transform: uppercase; letter-spacing: 0.1em; border: 1px solid rgba(26,122,74,0.3); border-radius: 999px; padding: 6px 18px; margin-bottom: 24px; }
.rule { width: 56px; height: 3px; background: var(--green-primary); margin: 28px auto 0; }

.filter-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.filter-pill { padding: 11px 24px; border-radius: 999px; font-weight: 700; background: rgba(255,255,255,0.06); border: 1px solid rgba(13,31,15,0.2); color: var(--ink); transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; }
.filter-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-pill:hover { transform: translateY(-1px); }
.work-grid { max-width: var(--maxw); margin: 0 auto; }
.work-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 10px; }
.work-card { position: relative; height: 320px; border-radius: 16px; overflow: hidden; cursor: pointer; }
.work-card.col-2 { grid-column: span 2; }
.work-card.h-sm { height: 256px; }
.work-bg { position: absolute; inset: 0; }
img.work-bg { width: 100%; height: 100%; object-fit: cover; }
.work-bg.green { background: linear-gradient(135deg, #1a3a2e, #0d2818, #0a1f14); }
.work-bg.blue { background: linear-gradient(135deg, #1e3a5f, #142840, #0d1a2d); }
.work-grid-tex { position: absolute; inset: 0; opacity: 0.05; background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 40px 40px; }
.work-fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent); }
.work-stats { position: absolute; top: 24px; right: 24px; text-align: right; z-index: 10; }
.work-stat-num { font-size: 28px; font-weight: 700; color: #fff; }
.work-stat-label { color: rgba(255,255,255,0.7); font-size: 12px; }
.work-content { position: absolute; bottom: 24px; left: 24px; z-index: 10; }
.work-badges { display: flex; gap: 8px; margin-bottom: 12px; }
.work-badge { padding: 4px 12px; border-radius: 999px; font-size: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.work-badge.green { background: rgba(46,168,101,0.2); border-color: rgba(46,168,101,0.4); color: var(--green-accent); }
.work-content h3 { font-size: 22px; color: #fff; }
.work-content p { font-size: 14px; color: rgba(255,255,255,0.7); }
.work-content p.green { color: var(--green-accent); font-weight: 500; }
.work-reel { position: absolute; top: 24px; left: 24px; z-index: 10; display: flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
.work-reel-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; animation: pulse 2s infinite; }
.work-reel span { color: #fff; font-size: 12px; }
.work-hover { position: absolute; inset: 0; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; z-index: 20; opacity: 0; transition: opacity 0.3s; }
.work-card:hover .work-hover { opacity: 1; }
.work-hover button { padding: 12px 24px; border-radius: 999px; background: #fff; color: var(--ink); font-weight: 600; }
.work-placeholder { height: 256px; border-radius: 16px; border: 2px dashed rgba(13,31,15,0.2); background: #fff; display: flex; align-items: center; justify-content: center; text-align: center; }

.pricing-toggle { width: max-content; max-width: 100%; display: flex; justify-content: center; gap: 8px; margin: 0 auto 54px; padding: 7px; border-radius: 999px; background: rgba(13,31,15,0.06); border: 1px solid rgba(13,31,15,0.14); }
.pricing-toggle button { min-width: 132px; padding: 12px 28px; border-radius: 999px; font-weight: 800; background: rgba(255,255,255,0.74); border: 1px solid rgba(13,31,15,0.16); color: rgba(13,31,15,0.78); transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; }
.pricing-toggle button:hover { transform: translateY(-1px); color: var(--ink); border-color: rgba(46,168,101,0.34); }
.pricing-toggle button.active { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: 0 12px 30px rgba(13,31,15,0.16); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 24px; max-width: 1460px; margin: 0 auto; }
.pricing-card { position: relative; min-height: 560px; display: flex; flex-direction: column; padding: 48px; overflow: hidden; transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease; }
.pricing-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 18% 0%, rgba(46,168,101,0.10), transparent 36%), linear-gradient(135deg, rgba(255,255,255,0.06), transparent 48%); opacity: 0; transition: opacity 0.28s ease; }
.pricing-card:hover { transform: translateY(-12px) scale(1.012); }
.pricing-card:hover::before { opacity: 1; }
.pricing-card.featured { border: 2px solid var(--green-accent); }
.pricing-card.featured .pricing-name { margin-top: 44px; }
.pricing-badge { position: absolute; top: 28px; left: 48px; display: inline-block; background: rgba(46,168,101,0.1); color: var(--green-primary); font-size: 12px; font-weight: 800; border-radius: 999px; padding: 8px 16px; letter-spacing: 0.01em; }
.pricing-name { position: relative; z-index: 1; font-size: 24px; font-weight: 800; margin-bottom: 18px; }
.pricing-price { position: relative; z-index: 1; font-size: clamp(46px,5vw,64px); line-height: 0.95; font-weight: 850; letter-spacing: -0.035em; }
.pricing-per { position: relative; z-index: 1; font-size: 15px; color: rgba(13,31,15,0.62); margin: 14px 0 42px; }
.pricing-feats { position: relative; z-index: 1; list-style: none; flex: 1; display: flex; flex-direction: column; gap: 18px; }
.pricing-feats li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; color: rgba(13,31,15,0.78); margin-bottom: 0; line-height: 1.45; }
.pricing-feats .check { flex: 0 0 auto; color: var(--green-primary); font-weight: 900; }
.pricing-card .btn { position: relative; z-index: 1; width: 100%; margin-top: 42px; padding: 18px 28px; font-size: 17px; box-shadow: 0 16px 34px rgba(46,168,101,0.20); transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.pricing-card .btn:hover { transform: translateY(-2px); box-shadow: 0 22px 46px rgba(46,168,101,0.30); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.team-card { text-align: center; }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--green-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin: 0 auto 16px; }
.team-name { font-size: 18px; font-weight: 700; }
.team-role { font-size: 14px; color: rgba(13,31,15,0.6); }

.contact-wrap { max-width: 620px; margin: 0 auto; }
.form-card { background: #fff; border-radius: 20px; padding: 44px; border: 1px solid var(--border); margin-bottom: 32px; }
.form-card h3 { font-size: 24px; font-weight: 700; }
.form-card .form-sub { font-size: 14px; color: rgba(13,31,15,0.7); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { font-size: 14px; font-weight: 500; margin-bottom: 8px; display: block; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 16px; border-radius: 10px; background: var(--field); border: 1px solid var(--border); color: var(--ink); font-size: 15px; font-family: inherit; }
.form-field textarea { resize: none; }
.form-submit { width: 100%; padding: 16px; border-radius: 999px; background: var(--green-primary); color: #fff; font-weight: 600; font-size: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-error { margin-bottom: 24px; padding: 12px 16px; border-radius: 12px; background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; font-size: 14px; }
.form-success { text-align: center; padding: 32px 0; }
.check-circle { width: 64px; height: 64px; border-radius: 50%; background: rgba(46,168,101,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 32px; color: var(--green-primary); }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-card { text-align: center; padding: 24px; }
.contact-card-value { font-weight: 700; font-size: 14px; }
.contact-card-label { font-size: 12px; color: var(--green-primary); text-transform: uppercase; letter-spacing: 0.05em; }

.cs-hero { background: var(--ink); padding: 120px 32px 96px; position: relative; overflow: hidden; }
.cs-hero-inner { max-width: var(--maxw); margin: 0 auto; }
.cs-hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 16px; max-width: 900px; }
.cs-hero h1 .accent { color: var(--green-accent); }
.cs-hero-sub { font-size: 20px; color: rgba(255,255,255,0.7); max-width: 640px; margin-bottom: 64px; }
.cs-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 48px; }
.cs-stat-num { font-size: clamp(48px, 7vw, 80px); font-weight: 700; color: var(--green-accent); line-height: 1; }
.cs-stat-label { color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 500; }
.cs-stat-sub { color: rgba(255,255,255,0.45); font-size: 13px; }
.cs-narrow { max-width: 760px; margin: 0 auto; }
.cs-narrow h2, .cs-split h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 24px; line-height: 1.2; }
.cs-narrow p, .cs-split p { font-size: 18px; color: rgba(13,31,15,0.75); margin-bottom: 20px; }
.cs-meta-grid, .cs-scope-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: var(--maxw); margin: 0 auto; }
.cs-scope-grid { grid-template-columns: repeat(3, 1fr); }
.cs-img-placeholder { border: 2px dashed rgba(13,31,15,0.2); background: #fff; border-radius: 20px; display: flex; align-items: center; justify-content: center; text-align: center; min-height: 360px; }
.cs-img-placeholder .emoji { font-size: 48px; margin-bottom: 16px; }
.smart-image { display: block; width: 100%; object-fit: cover; border-radius: 20px; }
.cs-loaded-image { min-height: 360px; aspect-ratio: 16 / 9; object-position: center 52%; box-shadow: 0 24px 60px rgba(13,31,15,0.10); }
.about-loaded-image { min-height: 320px; aspect-ratio: 5 / 4; object-position: center; }
.cs-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: var(--maxw); margin: 0 auto; }
.cs-list { list-style: none; margin-top: 24px; }
.cs-list li { display: flex; gap: 12px; font-size: 16px; color: rgba(13,31,15,0.8); margin-bottom: 16px; }
.cs-list .check { color: var(--green-primary); font-weight: 700; }
.cs-quote-section { background: var(--ink); padding: 96px 32px; }
.cs-quote-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.cs-quote { font-size: clamp(24px, 3.5vw, 36px); font-weight: 500; color: #fff; font-style: italic; line-height: 1.4; margin-bottom: 32px; }
.cs-quote-author { color: var(--green-accent); font-weight: 600; }
.cs-quote-role { color: rgba(255,255,255,0.5); font-size: 14px; }
.cs-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: var(--maxw); margin: 0 auto; }

.cosmic-page {
  --space-ink: #03070d;
  --space-panel: rgba(7, 18, 28, 0.68);
  --space-panel-strong: rgba(9, 26, 38, 0.84);
  --space-line: rgba(166, 255, 204, 0.16);
  --space-text: rgba(245, 255, 250, 0.86);
  --space-muted: rgba(225, 245, 235, 0.62);
  --cosmic-a: rgba(46, 168, 101, 0.24);
  --cosmic-b: rgba(58, 114, 255, 0.16);
  --cosmic-c: rgba(125, 255, 176, 0.22);
  --star-slow: 0px; --star-mid: 0px; --star-fast: 0px; --orbit-x: 0px; --ring-x: 0px; --ring-y: 0px; --ring-road-x: 0px; --ring-road-y: 0px; --ring-road-scale: 1; --ring-road-rotate: -9deg; --ring-flow: 0px; --ring-flow-two: 0px; --ring-rotate: -12deg; --ring-rotate-two: 18deg; --beacon-angle: 0deg; --beacon-angle-two: 120deg; --beacon-angle-three: 240deg; --dust-x: 0px; --dust-x-alt: 0px; --space-drift-x: 0px; --planet-scale: 1; --planet-y: 0px; --planet-spin: 0deg; --cloud-x: 0px; --content-y: 0px;
  background: var(--space-ink); color: #f6fff9; overflow-x: hidden;
}
.cosmic-portfolio { --cosmic-a: rgba(54,126,255,0.28); --cosmic-b: rgba(46,168,101,0.16); --cosmic-c: rgba(136,196,255,0.18); }
.cosmic-services { --cosmic-a: rgba(125,255,176,0.24); --cosmic-b: rgba(255,204,112,0.12); --cosmic-c: rgba(46,168,101,0.22); }
.cosmic-contact { --cosmic-a: rgba(97,255,210,0.20); --cosmic-b: rgba(154,111,255,0.15); --cosmic-c: rgba(46,168,101,0.22); }
.cosmic-case { --cosmic-a: rgba(255,180,86,0.20); --cosmic-b: rgba(46,168,101,0.20); --cosmic-c: rgba(255,236,180,0.15); }
.cosmic-page > :not(.space-backdrop):not(.home-orbit-stage) { position: relative; z-index: 1; }
.space-backdrop { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; background: radial-gradient(circle at 50% -10%, var(--cosmic-c, rgba(93,255,166,0.22)), transparent 34%), radial-gradient(circle at 14% 22%, var(--cosmic-b, rgba(78,130,255,0.14)), transparent 32%), radial-gradient(circle at 82% 68%, var(--cosmic-a, rgba(46,168,101,0.24)), transparent 34%), linear-gradient(180deg, #02050a 0%, #06111b 48%, #04100b 100%); }
.star-layer, .nebula { position: absolute; inset: -20%; will-change: transform; }
.star-layer-far { transform: translate3d(0, var(--star-slow), 0); background-image: radial-gradient(circle, rgba(255,255,255,0.72) 0 1px, transparent 1.5px), radial-gradient(circle, rgba(166,255,204,0.38) 0 1px, transparent 1.4px); background-size: 220px 220px, 340px 340px; opacity: 0.42; }
.star-layer-mid { transform: translate3d(0, var(--star-mid), 0); background-image: radial-gradient(circle, rgba(255,255,255,0.88) 0 1px, transparent 1.6px), radial-gradient(circle, rgba(122,255,180,0.58) 0 1px, transparent 1.5px); background-size: 300px 300px, 460px 460px; opacity: 0.55; animation: starTwinkle 7s ease-in-out infinite alternate; }
.star-layer-near { transform: translate3d(0, var(--star-fast), 0); background-image: radial-gradient(circle, rgba(255,255,255,0.9) 0 1.2px, transparent 1.8px), radial-gradient(circle, rgba(194,255,221,0.72) 0 1px, transparent 1.7px); background-size: 520px 520px, 680px 680px; opacity: 0.36; }
.nebula-one { width: 720px; height: 720px; top: -240px; right: -160px; border-radius: 50%; background: radial-gradient(circle, var(--cosmic-a), rgba(46,168,101,0.08) 44%, transparent 70%); filter: blur(26px); transform: translate3d(0, var(--star-fast), 0); }
.nebula-two { width: 620px; height: 620px; left: -220px; bottom: 6%; border-radius: 50%; background: radial-gradient(circle, var(--cosmic-b), rgba(46,168,101,0.08) 48%, transparent 72%); filter: blur(34px); transform: translate3d(0, var(--star-mid), 0); }
.cosmic-page .nav { background: rgba(3,7,13,0.72); border-bottom: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(18px); }
.cosmic-page .nav.nav-floating { background: linear-gradient(180deg, rgba(3,7,13,0.72), transparent); border-bottom: 0; }
.cosmic-page .nav:not(.nav-floating) .btn-book, .cosmic-page .nav.nav-floating .btn-book { background: rgba(46,168,101,0.22); border: 1px solid rgba(130,255,180,0.35); box-shadow: 0 0 28px rgba(46,168,101,0.18); }
.cosmic-page .section-white, .cosmic-page .section-cream, .cosmic-page .cs-section { background: transparent; }
.cosmic-page .section-title, .cosmic-page .ph-editorial h1, .cosmic-page .ph-centered h1, .cosmic-page .cs-hero h1 { color: #fff; }
.cosmic-page .ph-editorial, .cosmic-page .ph-centered, .cosmic-page .cs-hero { background: radial-gradient(circle at 74% 34%, var(--cosmic-a), transparent 30%), linear-gradient(180deg, rgba(3,7,13,0.28), rgba(3,7,13,0.82)); border-bottom: 1px solid rgba(255,255,255,0.08); }
.cosmic-page .ph-editorial h1 .accent, .cosmic-page .ph-centered h1 .accent, .cosmic-page .cs-hero h1 .accent, .cosmic-page .process-num, .cosmic-page .proof-stat-num, .cosmic-page .pricing-price, .cosmic-page .proof-link { color: #7dffb0; }
.cosmic-page .ph-editorial p, .cosmic-page .ph-centered p, .cosmic-page .cs-hero-sub { color: var(--space-muted); }
.cosmic-page .service-card, .cosmic-page .process-card, .cosmic-page .proof-card, .cosmic-page .proof-placeholder, .cosmic-page .pricing-card, .cosmic-page .form-card, .cosmic-page .contact-card, .cosmic-page .cs-meta-card, .cosmic-page .cs-scope-card, .cosmic-page .cs-img-placeholder, .cosmic-page .work-placeholder, .cosmic-page .team-card { border: 1px solid var(--space-line); background: var(--space-panel); color: #fff; box-shadow: 0 24px 70px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08); backdrop-filter: blur(18px); }
.cosmic-page .service-card p, .cosmic-page .process-card p, .cosmic-page .proof-card > p, .cosmic-page .pricing-feats li, .cosmic-page .form-card .form-sub, .cosmic-page .contact-card-label, .cosmic-page .cs-meta-card p, .cosmic-page .cs-scope-card p, .cosmic-page .cs-narrow p, .cosmic-page .cs-split p, .cosmic-page .cs-list li { color: var(--space-muted); }
.cosmic-page .form-field input, .cosmic-page .form-field select, .cosmic-page .form-field textarea { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); color: #fff; }
.cosmic-page .ticker { background: rgba(3,7,13,0.78); border-color: rgba(255,255,255,0.08); backdrop-filter: blur(18px); }
.cosmic-page .ticker-item span { color: rgba(245,255,250,0.76); }
.cosmic-page .filter-pills { gap: 14px; }
.cosmic-page .filter-pill {
  min-width: 132px;
  color: rgba(236,255,244,0.84);
  background: rgba(8, 22, 31, 0.72);
  border-color: rgba(166,255,204,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 34px rgba(0,0,0,0.20);
  backdrop-filter: blur(14px);
}
.cosmic-page .filter-pill:hover {
  color: #fff;
  background: rgba(16, 50, 38, 0.88);
  border-color: rgba(125,255,176,0.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 16px 42px rgba(46,168,101,0.18);
}
.cosmic-page .filter-pill.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(46,168,101,0.92), rgba(20,102,64,0.92));
  border-color: rgba(166,255,204,0.62);
  box-shadow: 0 0 0 1px rgba(125,255,176,0.20), 0 18px 48px rgba(46,168,101,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}
.cosmic-page .pricing-toggle {
  background: rgba(5, 15, 22, 0.74);
  border-color: rgba(166,255,204,0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 52px rgba(0,0,0,0.26);
  backdrop-filter: blur(16px);
}
.cosmic-page .pricing-toggle button {
  color: rgba(236,255,244,0.88);
  background: rgba(255,255,255,0.055);
  border-color: rgba(166,255,204,0.18);
}
.cosmic-page .pricing-toggle button:hover {
  color: #fff;
  background: rgba(24, 70, 48, 0.72);
  border-color: rgba(125,255,176,0.44);
}
.cosmic-page .pricing-toggle button.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(46,168,101,0.98), rgba(21,105,65,0.96));
  border-color: rgba(186,255,213,0.62);
  box-shadow: 0 0 0 1px rgba(125,255,176,0.16), 0 16px 42px rgba(46,168,101,0.26);
}
.cosmic-page .pricing-card {
  border-color: rgba(166,255,204,0.22);
  background: linear-gradient(145deg, rgba(12, 27, 36, 0.86), rgba(5, 14, 21, 0.82));
  box-shadow: 0 24px 70px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.09);
}
.cosmic-page .pricing-card:hover {
  border-color: rgba(125,255,176,0.48);
  background: linear-gradient(145deg, rgba(15, 38, 48, 0.92), rgba(6, 18, 25, 0.88));
  box-shadow: 0 34px 90px rgba(0,0,0,0.42), 0 0 44px rgba(46,168,101,0.12), inset 0 1px 0 rgba(255,255,255,0.14);
}
.cosmic-page .pricing-card.featured {
  border-color: rgba(125,255,176,0.70);
  box-shadow: 0 30px 88px rgba(0,0,0,0.38), 0 0 0 1px rgba(125,255,176,0.10), inset 0 1px 0 rgba(255,255,255,0.12);
}
.cosmic-page .pricing-badge {
  color: #dffff0;
  background: rgba(46,168,101,0.24);
  border: 1px solid rgba(125,255,176,0.30);
  box-shadow: 0 10px 26px rgba(46,168,101,0.16);
}
.cosmic-page .pricing-name { color: #fff; }
.cosmic-page .pricing-per { color: rgba(218,255,232,0.72); }
.cosmic-page .pricing-feats li { color: rgba(237,255,244,0.78); }
.cosmic-page .pricing-feats .check { color: #7dffb0; text-shadow: 0 0 16px rgba(125,255,176,0.32); }
.cosmic-page .pricing-card .btn-green {
  background: linear-gradient(135deg, #49c77c, #2ea865);
  color: #fff;
  box-shadow: 0 18px 46px rgba(46,168,101,0.30);
}
.cosmic-page .pricing-card .btn-green:hover { background: linear-gradient(135deg, #58dc8e, #2ea865); }
.cosmic-page .cta-banner { border: 1px solid rgba(125,255,176,0.24); background: radial-gradient(circle at 50% 0%, rgba(125,255,176,0.28), transparent 46%), linear-gradient(135deg, #114325, #06120b 72%); box-shadow: 0 28px 80px rgba(0,0,0,0.36); }

.home-orbit-stage { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; perspective: 1200px; perspective-origin: 50% 58%; }
.home-orbit-stage::before { content: ""; position: absolute; inset: -18%; background: radial-gradient(circle at 18% 22%, rgba(116,183,255,0.22), transparent 22%), radial-gradient(circle at 72% 18%, rgba(125,255,176,0.18), transparent 24%), radial-gradient(ellipse at 50% 62%, rgba(125,255,176,0.08), transparent 48%); filter: blur(10px); opacity: 0.82; transform: translate3d(var(--space-drift-x), var(--star-slow), -380px); }
.home-orbit-stage::after { content: ""; position: absolute; inset: 0; z-index: 8; background: radial-gradient(ellipse at 50% 88%, rgba(3,7,13,0.06), rgba(3,7,13,0.78) 74%), linear-gradient(180deg, transparent 0%, rgba(3,7,13,0.10) 42%, rgba(3,7,13,0.74) 100%); }
.orbit-depth-grid { position: absolute; left: 50%; top: 55%; z-index: 1; width: 150vw; height: 150vw; border-radius: 50%; transform: translate3d(calc(-50% + var(--orbit-x)), -50%, -260px) rotateX(74deg) rotateZ(var(--ring-rotate)); background: repeating-radial-gradient(circle, rgba(125,255,176,0.12) 0 1px, transparent 1px 54px), conic-gradient(from 40deg, transparent 0 16deg, rgba(125,255,176,0.14) 16deg 17deg, transparent 17deg 44deg); opacity: 0.38; }
.ring-horizon { position: absolute; left: 63%; top: 57%; z-index: 2; width: clamp(980px,160vw,1680px); height: clamp(210px,35vw,360px); border-radius: 50%; transform: translate3d(calc(-50% + var(--ring-x)), calc(-50% + var(--ring-y)), -80px) rotateX(69deg) rotateZ(var(--ring-rotate)); background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent), repeating-linear-gradient(90deg, transparent 0 38px, rgba(202,255,221,0.15) 38px 40px, transparent 40px 86px); background-position: 0 0, var(--ring-flow) 0; border: 1px solid rgba(202,255,221,0.16); opacity: 0.72; }
.planetary-body { position: absolute; left: 63%; top: 52%; z-index: 3; width: clamp(520px,70vw,820px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; transform: translate3d(-50%, calc(-50% + var(--planet-y)), 0) scale(var(--planet-scale)) rotate(var(--planet-spin)); background: radial-gradient(circle at 30% 22%, rgba(255,255,255,0.96) 0 4%, transparent 14%), radial-gradient(circle at 36% 28%, rgba(193,255,220,0.82), transparent 17%), radial-gradient(circle at 74% 76%, rgba(0,0,0,0.62), transparent 44%), repeating-linear-gradient(164deg, rgba(180,255,210,0.18) 0 8px, rgba(28,118,76,0.16) 8px 18px, rgba(3,19,15,0.08) 18px 32px), conic-gradient(from 218deg at 48% 48%, #dffff0, #62d88d 9%, #1f8050 22%, #0d3828 38%, #06100f 58%, #010403 72%, #7dffb0 100%); box-shadow: 0 0 110px rgba(125,255,176,0.30), 0 0 220px rgba(46,168,101,0.14), inset -95px -120px 130px rgba(0,0,0,0.74), inset 34px 24px 46px rgba(255,255,255,0.24); }
.planetary-body::before, .planetary-body::after { content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none; }
.planetary-body::before { background: repeating-linear-gradient(168deg, transparent 0 28px, rgba(245,255,250,0.16) 28px 34px, transparent 34px 70px), radial-gradient(circle at 24% 30%, rgba(255,255,255,0.30), transparent 18%); mix-blend-mode: screen; opacity: 0.72; transform: translateX(var(--cloud-x)); }
.planetary-body::after { background: radial-gradient(circle at 28% 24%, transparent 0 30%, rgba(3,7,13,0.16) 52%, rgba(0,0,0,0.72) 84%); box-shadow: inset 0 0 46px rgba(202,255,221,0.24); }
.planet-ring { position: absolute; left: 63%; top: 55%; z-index: 4; border-radius: 50%; pointer-events: none; will-change: transform; }
.ring-wide { width: clamp(900px,132vw,1400px); height: clamp(205px,31vw,330px); border: 2px solid rgba(202,255,221,0.22); border-left-color: rgba(125,255,176,0.70); transform: translate3d(-50%, calc(-50% + var(--ring-y)), 68px) rotateX(68deg) rotateZ(var(--ring-rotate)); background: repeating-linear-gradient(90deg, transparent 0 46px, rgba(202,255,221,0.14) 46px 48px, transparent 48px 96px); background-position: var(--ring-flow) 0; }
.ring-tight { z-index: 5; width: clamp(680px,102vw,1080px); height: clamp(150px,23vw,245px); border: 1px solid rgba(166,255,204,0.34); border-top-color: rgba(255,255,255,0.46); border-left-color: rgba(125,255,176,0.74); transform: translate3d(-50%, calc(-50% + var(--ring-y)), 92px) rotateX(73deg) rotateZ(var(--ring-rotate-two)); background: repeating-linear-gradient(88deg, transparent 0 30px, rgba(255,255,255,0.16) 30px 32px, transparent 32px 72px); background-position: var(--ring-flow-two) 0; }
.ring-pov-track { position: absolute; left: 50%; bottom: -29vh; z-index: 6; width: clamp(980px,168vw,1780px); height: clamp(330px,62vh,580px); border-radius: 50% 50% 0 0; transform-origin: 50% 100%; transform: translate3d(calc(-50% + var(--ring-road-x)), var(--ring-road-y), 180px) rotateX(66deg) rotateZ(var(--ring-road-rotate)) scale(var(--ring-road-scale)); background: linear-gradient(90deg, transparent 0 8%, rgba(202,255,221,0.16) 16%, rgba(125,255,176,0.30) 50%, rgba(202,255,221,0.13) 84%, transparent 100%), repeating-linear-gradient(92deg, transparent 0 28px, rgba(255,255,255,0.18) 28px 30px, transparent 30px 82px); background-position: 0 0, var(--ring-flow) 0; border-top: 1px solid rgba(202,255,221,0.28); opacity: 0.86; }
.ring-lane { position: absolute; top: 0; bottom: 0; width: 2px; border-radius: 999px; background: linear-gradient(180deg, transparent, rgba(224,255,238,0.76), transparent); }
.lane-one { left: 31%; transform: rotate(3deg); } .lane-two { left: 50%; opacity: 0.74; } .lane-three { right: 31%; transform: rotate(-3deg); }
.ring-foreground-glow { position: absolute; left: 50%; bottom: -20vh; z-index: 7; width: 120vw; height: 38vh; transform: translateX(-50%); background: radial-gradient(ellipse at 50% 100%, rgba(125,255,176,0.20), transparent 64%); filter: blur(10px); opacity: 0.72; }
.orbit-beacon { position: absolute; left: 63%; top: 55%; z-index: 7; width: 8px; height: 8px; border-radius: 50%; background: #eafff1; box-shadow: 0 0 18px rgba(255,255,255,0.92), 0 0 46px rgba(125,255,176,0.72); }
.beacon-one { transform: translate(-50%, -50%) rotate(var(--beacon-angle)) translateX(clamp(330px,48vw,640px)); }
.beacon-two { transform: translate(-50%, -50%) rotate(var(--beacon-angle-two)) translateX(clamp(260px,39vw,520px)); opacity: 0.52; }
.beacon-three { transform: translate(-50%, -50%) rotate(var(--beacon-angle-three)) translateX(clamp(210px,32vw,430px)); width: 5px; height: 5px; opacity: 0.44; }
.orbit-dust { position: absolute; z-index: 5; width: 34vw; height: 2px; border-radius: 999px; background: linear-gradient(90deg, transparent, rgba(202,255,221,0.62), transparent); filter: blur(1px); opacity: 0.5; }
.dust-one { left: 10%; top: 34%; transform: translateX(var(--dust-x)) translateY(var(--star-mid)) rotate(-16deg); }
.dust-two { right: 8%; top: 62%; transform: translateX(var(--dust-x-alt)) translateY(var(--star-fast)) rotate(14deg); }
.dust-three { left: 34%; top: 73%; width: 54vw; transform: translateX(var(--ring-road-x)) rotate(-5deg); opacity: 0.34; }
.home-page .hero { min-height: 112vh; background: transparent; }
.home-page .hero-video { opacity: 0.11; filter: saturate(0.9) contrast(1.18); mix-blend-mode: screen; }
.home-page .hero-overlay { background: linear-gradient(180deg, rgba(2,5,10,0.72), rgba(2,5,10,0.18) 42%, rgba(2,5,10,0.88)); }
.home-page .hero-content { bottom: 14vh; }
.home-page .hero h1 { font-size: clamp(48px,8vw,104px); letter-spacing: -0.04em; line-height: 0.94; }
.home-page .hero-sub { max-width: 36ch; color: var(--space-text); }
.home-page .hero-tag, .home-page .hero-reel { border-color: rgba(202,255,221,0.20); background: rgba(255,255,255,0.08); backdrop-filter: blur(18px); }
.home-page .section { transform: translateY(var(--content-y, 0px)); }
.home-page .home-unfold { transform-origin: top center; transform: translateY(76px) rotateX(-13deg) scale(0.975); clip-path: inset(0 0 24% 0 round 20px); opacity: 0; transition: opacity 0.95s ease, transform 1s cubic-bezier(0.16,1,0.3,1), clip-path 1s cubic-bezier(0.16,1,0.3,1); }
.home-page .home-unfold.visible { transform: translateY(var(--content-y, 0px)) rotateX(0deg) scale(1); clip-path: inset(0 0 0 0 round 0); opacity: 1; }
.home-page .reveal { transform-origin: top center; transform: translateY(58px) rotateX(-10deg) scale(0.985); clip-path: inset(0 0 18% 0 round 16px); }
.home-page .reveal.visible { transform: translateY(0) rotateX(0deg) scale(1); clip-path: inset(0 0 0 0 round 0); }

.about-header { min-height: min(760px, calc(100vh - 82px)); padding: 132px 32px 116px; display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 72% 42%, rgba(46,168,101,0.18), transparent 28%), linear-gradient(180deg, rgba(3,7,13,0.20), rgba(3,7,13,0.84)); border-bottom: 1px solid rgba(255,255,255,0.08); }
.about-header-inner, .about-intro-inner, .about-split-inner { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.about-header h1 { max-width: 13ch; margin-bottom: 24px; font-size: clamp(44px,7vw,92px); font-weight: 750; line-height: 0.96; letter-spacing: -0.025em; color: #fff; }
.about-header h1 .accent, .about-split h2 .accent { color: #7dffb0; }
.about-header p { max-width: 57ch; font-size: clamp(18px,2vw,22px); color: var(--space-muted); }
.about-intro, .about-team-section, .about-process-section, .about-cta-section, .about-split { background: transparent; }
.about-intro { padding: 112px 32px 96px; }
.about-intro-inner { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(360px,0.95fr); gap: 64px; align-items: center; }
.about-intro h2 { max-width: 13ch; margin-bottom: 24px; font-size: clamp(34px,4.4vw,58px); color: #fff; }
.about-intro p { max-width: 62ch; margin-bottom: 18px; font-size: 18px; color: var(--space-text); }
.about-intro-img { min-height: 430px; display: flex; align-items: center; justify-content: center; text-align: center; border: 1px solid var(--space-line); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)), radial-gradient(circle at 50% 42%, rgba(125,255,176,0.22), transparent 42%); box-shadow: 0 36px 90px rgba(0,0,0,0.38); backdrop-filter: blur(18px); }
.orbit-visual { position: relative; width: min(320px,72vw); aspect-ratio: 1; margin: 0 auto; }
.orbit-ring, .orbit-dot, .orbit-core { position: absolute; display: block; border-radius: 50%; }
.orbit-ring { inset: 10%; border: 1px solid rgba(202,255,221,0.28); animation: orbitSweep 13s linear infinite; }
.orbit-ring-two { inset: 24%; animation-duration: 18s; animation-direction: reverse; }
.orbit-core { width: 92px; height: 92px; inset: calc(50% - 46px); background: radial-gradient(circle at 34% 32%, #e8fff0, #7dffb0 32%, #1a7a4a 68%, #062112); box-shadow: 0 0 42px rgba(125,255,176,0.52); }
.orbit-dot { width: 12px; height: 12px; background: #fff; }
.dot-one { top: 19%; left: 22%; } .dot-two { right: 18%; bottom: 28%; background: #7dffb0; }
.about-team-section, .about-process-section { padding: 104px 32px; }
.about-split { padding: 96px 32px; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); background: linear-gradient(90deg, rgba(46,168,101,0.13), rgba(255,255,255,0.02), rgba(58,114,255,0.10)); }
.about-split-inner { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(280px,0.85fr); gap: 56px; align-items: center; }
.about-split h2 { font-size: clamp(34px,4.5vw,62px); color: #fff; line-height: 1.02; }
.about-split p { font-size: 18px; color: var(--space-text); }

.page-transition-overlay { position: fixed; inset: 0; z-index: 9999; pointer-events: none; display: grid; place-items: center; overflow: hidden; perspective: 1200px; background: rgba(2,5,10,0); }
.page-transition-overlay::before, .page-transition-overlay::after { content: ""; position: absolute; z-index: 1; top: 0; bottom: 0; width: 50.5%; background: radial-gradient(circle at 50% 42%, rgba(125,255,176,0.18), transparent 42%), linear-gradient(135deg, rgba(6,18,28,0.96), rgba(2,5,10,0.98)); animation: bookClose 0.82s cubic-bezier(0.7,0,0.2,1) forwards; }
.page-transition-overlay::before { left: 0; transform-origin: left center; }
.page-transition-overlay::after { right: 0; transform-origin: right center; }
.transition-path { position: absolute; z-index: 3; left: 12vw; right: 12vw; top: 57%; height: 1px; background: linear-gradient(90deg, transparent, rgba(202,255,221,0.52), transparent); transform: rotate(-7deg); opacity: 0; animation: pathGlow 0.9s ease forwards; }
.transition-label { position: absolute; z-index: 5; left: 50%; bottom: 18vh; transform: translateX(-50%); color: rgba(245,255,250,0.76); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0; animation: labelIn 0.7s ease 0.15s forwards; }
body.page-entering .page-transition-overlay::before, body.page-entering .page-transition-overlay::after { animation: bookOpen 0.78s cubic-bezier(0.16,1,0.3,1) forwards; }
body.page-entering .transition-path, body.page-entering .transition-label { display: none; }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.333%); } }
@keyframes starTwinkle { from { opacity: 0.42; } to { opacity: 0.68; } }
@keyframes orbitSweep { from { rotate: 0deg; } to { rotate: 360deg; } }
@keyframes bookClose { from { opacity: 0; transform: rotateY(82deg); } to { opacity: 1; transform: rotateY(0deg); } }
@keyframes bookOpen { from { opacity: 1; transform: rotateY(0deg); } to { opacity: 0; transform: rotateY(82deg); } }
@keyframes pathGlow { from { opacity: 0; clip-path: inset(0 100% 0 0); } to { opacity: 1; clip-path: inset(0 0 0 0); } }
@keyframes labelIn { from { opacity: 0; transform: translateX(-50%) translateY(10px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-scope-grid { grid-template-columns: 1fr; }
  .about-intro-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--ink); padding: 24px; gap: 16px; }
  .nav-toggle { display: block; }
  .btn-book { display: none; }
  .hero-content { left: 20px; right: 20px; bottom: 90px; }
  .hero-stats { display: none; }
  .hero-reel { right: 20px; top: 80px; }
  .section, .cs-section { padding: 56px 20px; }
  .services-grid, .process-grid, .proof-grid, .pricing-grid, .team-grid, .work-row, .form-row, .contact-cards, .footer-grid, .cs-meta-grid, .cs-split, .cs-gallery-grid, .about-split-inner { grid-template-columns: 1fr; }
  .pricing-toggle { width: 100%; }
  .pricing-toggle button { min-width: 0; flex: 1; }
  .pricing-card { min-height: auto; padding: 36px 28px; }
  .pricing-card.featured .pricing-name { margin-top: 0; }
  .pricing-badge { position: static; width: max-content; margin-bottom: 18px; }
  .work-card.col-2 { grid-column: span 1; }
  .cta-banner { padding: 40px 24px; }
  .form-card { padding: 28px; }
  .ph-editorial, .ph-centered, .about-header { padding: 64px 20px; }
  .ph-editorial p { text-align: left; margin-left: 0; }
  .planetary-body { left: 68%; top: 55%; width: clamp(420px,104vw,680px); }
  .planet-ring { left: 68%; }
  .ring-wide { width: clamp(780px,176vw,1160px); height: clamp(175px,52vw,310px); }
  .ring-tight { width: clamp(600px,136vw,920px); height: clamp(135px,40vw,240px); }
  .ring-horizon { left: 68%; width: clamp(820px,184vw,1240px); height: clamp(190px,56vw,340px); }
  .ring-pov-track { width: clamp(900px,220vw,1400px); height: clamp(300px,56vh,500px); bottom: -26vh; }
  .orbit-depth-grid { width: 220vw; height: 220vw; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .home-page .home-unfold, .home-page .reveal { clip-path: none; opacity: 1; transform: none; }
}

/* Premium white theme refresh */
:root {
  --ink: #111827;
  --green-primary: #147849;
  --green-accent: #28a865;
  --cream: #f7f8fb;
  --field: #f5f7fa;
  --border: rgba(17, 24, 39, 0.10);
}

body,
.cosmic-page {
  background: #fbfbfd;
  color: #111827;
}

.cosmic-page {
  --space-ink: #fbfbfd;
  --space-panel: rgba(255, 255, 255, 0.78);
  --space-panel-strong: rgba(255, 255, 255, 0.92);
  --space-line: rgba(17, 24, 39, 0.10);
  --space-text: rgba(17, 24, 39, 0.86);
  --space-muted: rgba(77, 89, 107, 0.76);
  --cosmic-a: rgba(46, 168, 101, 0.14);
  --cosmic-b: rgba(115, 155, 255, 0.13);
  --cosmic-c: rgba(255, 255, 255, 0.90);
}

.space-backdrop {
  background:
    radial-gradient(circle at 50% -12%, rgba(255,255,255,0.96), transparent 28%),
    radial-gradient(circle at 16% 18%, rgba(46,168,101,0.12), transparent 30%),
    radial-gradient(circle at 85% 22%, rgba(86,128,255,0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #eef3f0 100%);
}

.space-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 14%, rgba(255,255,255,0.72) 22%, transparent 31%),
    radial-gradient(circle at 70% 78%, rgba(46,168,101,0.10), transparent 30%);
  opacity: 0.84;
}

.star-layer-far,
.star-layer-mid,
.star-layer-near {
  mix-blend-mode: multiply;
  opacity: 0.20;
}
.star-layer-far { background-image: radial-gradient(circle, rgba(17,24,39,0.18) 0 1px, transparent 1.8px); }
.star-layer-mid { background-image: radial-gradient(circle, rgba(46,168,101,0.22) 0 1px, transparent 1.7px); }
.star-layer-near { background-image: radial-gradient(circle, rgba(17,24,39,0.14) 0 1.2px, transparent 1.8px); }
.nebula { opacity: 0.55; filter: blur(42px); }

.cosmic-page > :not(.space-backdrop):not(.home-orbit-stage) { z-index: 2; }

.nav,
.cosmic-page .nav,
.cosmic-page .nav.nav-floating {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.04);
}

.nav-logo,
.nav-logo span,
.cosmic-page .nav-logo,
.cosmic-page .nav-logo span { color: #111827; }
.nav-links a { color: rgba(17, 24, 39, 0.62); }
.nav-links a:hover,
.nav-links a.active { color: #111827; }
.nav-links a.active { border-bottom-color: var(--green-accent); }
.nav-toggle { color: #111827; }

.btn-book,
.nav:not(.nav-floating) .btn-book,
.cosmic-page .nav:not(.nav-floating) .btn-book,
.cosmic-page .nav.nav-floating .btn-book {
  color: #ffffff;
  background: linear-gradient(135deg, #1fb466, #147849);
  border: 1px solid rgba(20, 120, 73, 0.24);
  box-shadow: 0 12px 30px rgba(20, 120, 73, 0.18);
}
.btn-book:hover { background: linear-gradient(135deg, #28c875, #147849); transform: translateY(-1px); }

.btn { transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-green {
  background: linear-gradient(135deg, #1fb466, #147849);
  color: #fff;
  box-shadow: 0 18px 48px rgba(20, 120, 73, 0.20);
}
.btn-green:hover { background: linear-gradient(135deg, #28c875, #147849); box-shadow: 0 24px 58px rgba(20, 120, 73, 0.25); }
.btn-outline-light,
.btn-outline-white {
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.18);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.btn-outline-light:hover,
.btn-outline-white:hover { background: #111827; color: #fff; border-color: #111827; }
.btn-white { color: #111827; background: #fff; box-shadow: 0 14px 40px rgba(15,23,42,0.10); }

.home-orbit-stage { opacity: 0.84; }
.home-orbit-stage::before {
  background:
    radial-gradient(circle at 24% 20%, rgba(46,168,101,0.14), transparent 24%),
    radial-gradient(circle at 72% 18%, rgba(90,132,255,0.12), transparent 24%),
    radial-gradient(ellipse at 50% 66%, rgba(255,255,255,0.86), transparent 50%);
  filter: blur(14px);
}
.home-orbit-stage::after {
  background:
    radial-gradient(ellipse at 50% 88%, rgba(255,255,255,0.04), rgba(255,255,255,0.80) 74%),
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.62) 74%, rgba(255,255,255,0.92) 100%);
}
.orbit-depth-grid {
  background:
    repeating-radial-gradient(circle, rgba(20,120,73,0.12) 0 1px, transparent 1px 54px),
    conic-gradient(from 40deg, transparent 0 16deg, rgba(17,24,39,0.08) 16deg 17deg, transparent 17deg 44deg);
  opacity: 0.28;
}
.ring-horizon,
.ring-wide,
.ring-tight,
.ring-pov-track {
  border-color: rgba(20, 120, 73, 0.18);
  background:
    linear-gradient(90deg, transparent, rgba(20,120,73,0.18), transparent),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(17,24,39,0.08) 38px 40px, transparent 40px 86px);
  box-shadow: 0 18px 70px rgba(20,120,73,0.08);
}
.planetary-body {
  background:
    radial-gradient(circle at 29% 20%, rgba(255,255,255,1) 0 5%, transparent 14%),
    radial-gradient(circle at 38% 30%, rgba(224,255,239,0.95), transparent 20%),
    radial-gradient(circle at 78% 77%, rgba(17,24,39,0.24), transparent 46%),
    repeating-linear-gradient(164deg, rgba(255,255,255,0.42) 0 9px, rgba(46,168,101,0.10) 9px 18px, rgba(214,232,224,0.16) 18px 32px),
    conic-gradient(from 218deg at 48% 48%, #ffffff, #ddffec 12%, #8fe6b1 28%, #e7f8ef 44%, #f9fbff 64%, #c9efdc 100%);
  box-shadow:
    0 34px 110px rgba(20,120,73,0.16),
    0 0 220px rgba(86,128,255,0.08),
    inset -80px -110px 130px rgba(15,23,42,0.18),
    inset 34px 24px 56px rgba(255,255,255,0.72);
}
.planetary-body::after { background: radial-gradient(circle at 28% 24%, transparent 0 36%, rgba(255,255,255,0.12) 56%, rgba(17,24,39,0.18) 92%); }
.ring-foreground-glow { background: radial-gradient(ellipse at 50% 100%, rgba(20,120,73,0.12), transparent 64%); }
.orbit-beacon { background: #147849; box-shadow: 0 0 18px rgba(20,120,73,0.34), 0 0 46px rgba(46,168,101,0.24); }
.orbit-dust { background: linear-gradient(90deg, transparent, rgba(20,120,73,0.26), transparent); }

.home-page .hero { min-height: 108vh; background: transparent; }
.home-page .hero-video { opacity: 0.06; filter: saturate(0.45) contrast(1.08) brightness(1.25); mix-blend-mode: multiply; }
.home-page .hero-overlay { background: linear-gradient(180deg, rgba(255,255,255,0.80), rgba(255,255,255,0.35) 44%, rgba(255,255,255,0.96)); }
.home-page .hero-content { max-width: 820px; }
.home-page .hero h1,
.hero h1 { color: #111827; letter-spacing: -0.055em; }
.home-page .hero h1 .accent,
.hero h1 .accent { color: #147849; }
.home-page .hero-sub,
.hero-sub { color: rgba(17,24,39,0.72); }
.home-page .hero-tag,
.home-page .hero-reel,
.hero-tag,
.hero-reel {
  color: #111827;
  border-color: rgba(17,24,39,0.10);
  background: rgba(255,255,255,0.74);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 14px 44px rgba(15,23,42,0.08), inset 0 1px 0 rgba(255,255,255,0.86);
}
.hero-reel span,
.hero-stat-num { color: #111827; }
.hero-stat-label { color: rgba(17,24,39,0.62); }
.hero-stat-src { color: rgba(17,24,39,0.44); }

.ticker,
.cosmic-page .ticker {
  background: rgba(255,255,255,0.76);
  border-color: rgba(17,24,39,0.08);
  backdrop-filter: blur(18px);
}
.cosmic-page .ticker-item span,
.ticker-item span { color: rgba(17,24,39,0.66); }
.ticker-dot { background: #147849; }

.section-white,
.section-cream,
.cosmic-page .section-white,
.cosmic-page .section-cream,
.cosmic-page .cs-section,
.about-intro,
.about-team-section,
.about-process-section,
.about-cta-section { background: transparent; }
.section,
.cs-section { position: relative; }
.section-title,
.cosmic-page .section-title,
.cosmic-page .ph-editorial h1,
.cosmic-page .ph-centered h1,
.cosmic-page .cs-hero h1,
.about-header h1,
.about-intro h2,
.about-split h2 { color: #111827; letter-spacing: -0.035em; }

.ph-editorial,
.ph-centered,
.cosmic-page .ph-editorial,
.cosmic-page .ph-centered,
.cs-hero,
.cosmic-page .cs-hero,
.about-header {
  background:
    radial-gradient(circle at 72% 22%, rgba(46,168,101,0.13), transparent 28%),
    radial-gradient(circle at 20% 12%, rgba(86,128,255,0.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,248,251,0.68));
  border-bottom: 1px solid rgba(17,24,39,0.08);
}
.ph-editorial p,
.ph-centered p,
.cosmic-page .ph-editorial p,
.cosmic-page .ph-centered p,
.cs-hero-sub,
.cosmic-page .cs-hero-sub,
.about-header p,
.about-intro p,
.about-split p { color: rgba(77,89,107,0.82); }
.eyebrow,
.eyebrow-pill,
.cs-label { color: #147849; }
.eyebrow-pill {
  background: rgba(255,255,255,0.80);
  border-color: rgba(20,120,73,0.18);
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
}
.rule { background: linear-gradient(90deg, #147849, #62d991); }
.cosmic-page .ph-editorial h1 .accent,
.cosmic-page .ph-centered h1 .accent,
.cosmic-page .cs-hero h1 .accent,
.about-header h1 .accent,
.about-split h2 .accent { color: #147849; }

.service-card,
.process-card,
.proof-card,
.proof-placeholder,
.pricing-card,
.form-card,
.contact-card,
.cs-meta-card,
.cs-scope-card,
.cs-img-placeholder,
.work-placeholder,
.team-card,
.cosmic-page .service-card,
.cosmic-page .process-card,
.cosmic-page .proof-card,
.cosmic-page .proof-placeholder,
.cosmic-page .pricing-card,
.cosmic-page .form-card,
.cosmic-page .contact-card,
.cosmic-page .cs-meta-card,
.cosmic-page .cs-scope-card,
.cosmic-page .cs-img-placeholder,
.cosmic-page .work-placeholder,
.cosmic-page .team-card {
  color: #111827;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(17,24,39,0.09);
  box-shadow: 0 24px 80px rgba(15,23,42,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(22px) saturate(150%);
}
.service-card:hover,
.process-card:hover,
.team-card:hover,
.contact-card:hover,
.cs-scope-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,120,73,0.20);
  box-shadow: 0 34px 100px rgba(15,23,42,0.12), 0 0 0 1px rgba(255,255,255,0.7) inset;
}
.service-card,
.process-card,
.team-card,
.contact-card,
.cs-scope-card { transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease; }
.service-card p,
.process-card p,
.proof-card > p,
.pricing-feats li,
.form-card .form-sub,
.contact-card-label,
.cs-meta-card p,
.cs-scope-card p,
.cs-narrow p,
.cs-split p,
.cs-list li,
.cosmic-page .service-card p,
.cosmic-page .process-card p,
.cosmic-page .proof-card > p,
.cosmic-page .pricing-feats li,
.cosmic-page .form-card .form-sub,
.cosmic-page .contact-card-label,
.cosmic-page .cs-meta-card p,
.cosmic-page .cs-scope-card p,
.cosmic-page .cs-narrow p,
.cosmic-page .cs-split p,
.cosmic-page .cs-list li { color: rgba(77,89,107,0.78); }
.service-icon,
.contact-card-icon,
.cs-scope-icon,
.team-avatar {
  color: #147849;
  background: linear-gradient(135deg, rgba(46,168,101,0.14), rgba(255,255,255,0.78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.process-num,
.cosmic-page .process-num,
.proof-stat-num,
.cosmic-page .proof-stat-num,
.proof-link,
.cosmic-page .proof-link,
.contact-card-label { color: #147849; }

.proof-placeholder,
.cs-img-placeholder,
.work-placeholder { border-style: solid; }
.proof-placeholder-inner h3 { color: rgba(17,24,39,0.46); }
.proof-image,
.smart-image { box-shadow: 0 24px 70px rgba(15,23,42,0.12); }

.work-card {
  box-shadow: 0 24px 70px rgba(15,23,42,0.12);
  border: 1px solid rgba(255,255,255,0.42);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}
.work-card:hover { transform: translateY(-8px); box-shadow: 0 34px 100px rgba(15,23,42,0.18); }
.work-bg.green { background: linear-gradient(135deg, #dff8eb, #8ee5b1, #147849); }
.work-bg.blue { background: linear-gradient(135deg, #edf4ff, #9db9ff, #2a4b98); }
.work-fade { background: linear-gradient(to top, rgba(17,24,39,0.74), rgba(17,24,39,0.14), transparent); }
.work-hover { background: rgba(255,255,255,0.72); backdrop-filter: blur(18px); }
.work-hover button { background: #111827; color: #fff; box-shadow: 0 16px 40px rgba(15,23,42,0.20); }

.filter-pill,
.cosmic-page .filter-pill {
  color: rgba(17,24,39,0.74);
  background: rgba(255,255,255,0.76);
  border-color: rgba(17,24,39,0.10);
  box-shadow: 0 12px 34px rgba(15,23,42,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
}
.filter-pill:hover,
.cosmic-page .filter-pill:hover {
  color: #111827;
  background: #fff;
  border-color: rgba(20,120,73,0.24);
  box-shadow: 0 18px 44px rgba(15,23,42,0.10);
}
.filter-pill.active,
.cosmic-page .filter-pill.active {
  color: #fff;
  background: #111827;
  border-color: #111827;
  box-shadow: 0 18px 44px rgba(15,23,42,0.16);
}

.pricing-toggle,
.cosmic-page .pricing-toggle {
  background: rgba(255,255,255,0.78);
  border-color: rgba(17,24,39,0.08);
  box-shadow: 0 18px 52px rgba(15,23,42,0.08), inset 0 1px 0 rgba(255,255,255,0.92);
}
.pricing-toggle button,
.cosmic-page .pricing-toggle button {
  color: rgba(17,24,39,0.70);
  background: transparent;
  border-color: transparent;
}
.pricing-toggle button:hover,
.cosmic-page .pricing-toggle button:hover { color: #111827; background: rgba(17,24,39,0.045); }
.pricing-toggle button.active,
.cosmic-page .pricing-toggle button.active {
  color: #fff;
  background: #111827;
  border-color: #111827;
  box-shadow: 0 14px 32px rgba(15,23,42,0.16);
}
.pricing-card,
.cosmic-page .pricing-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.82));
  border-color: rgba(17,24,39,0.09);
  box-shadow: 0 28px 88px rgba(15,23,42,0.10), inset 0 1px 0 rgba(255,255,255,0.96);
}
.pricing-card:hover,
.cosmic-page .pricing-card:hover {
  border-color: rgba(20,120,73,0.22);
  background: linear-gradient(180deg, #fff, #f8fbf9);
  box-shadow: 0 38px 110px rgba(15,23,42,0.15), 0 0 0 1px rgba(255,255,255,0.86) inset;
}
.pricing-card.featured,
.cosmic-page .pricing-card.featured { border-color: rgba(20,120,73,0.32); }
.pricing-name,
.cosmic-page .pricing-name { color: #111827; }
.pricing-price,
.cosmic-page .pricing-price { color: #147849; }
.pricing-per,
.cosmic-page .pricing-per { color: rgba(77,89,107,0.74); }
.pricing-feats .check,
.cosmic-page .pricing-feats .check { color: #147849; text-shadow: none; }
.pricing-badge,
.cosmic-page .pricing-badge {
  color: #147849;
  background: rgba(46,168,101,0.10);
  border: 1px solid rgba(20,120,73,0.16);
  box-shadow: none;
}
.cosmic-page .pricing-card .btn-green { background: linear-gradient(135deg, #1fb466, #147849); }
.cosmic-page .pricing-card .btn-green:hover { background: linear-gradient(135deg, #28c875, #147849); }

.form-card,
.cosmic-page .form-card { background: rgba(255,255,255,0.86); }
.form-field label { color: #111827; }
.form-field input,
.form-field select,
.form-field textarea,
.cosmic-page .form-field input,
.cosmic-page .form-field select,
.cosmic-page .form-field textarea {
  color: #111827;
  background: rgba(248,250,252,0.88);
  border-color: rgba(17,24,39,0.10);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: rgba(20,120,73,0.34);
  box-shadow: 0 0 0 4px rgba(46,168,101,0.10);
}
.form-submit { background: linear-gradient(135deg, #1fb466, #147849); box-shadow: 0 18px 48px rgba(20,120,73,0.20); }

.about-intro-img {
  border-color: rgba(17,24,39,0.09);
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(245,248,251,0.78)), radial-gradient(circle at 50% 42%, rgba(46,168,101,0.12), transparent 42%);
  box-shadow: 0 34px 100px rgba(15,23,42,0.10);
}
.orbit-ring { border-color: rgba(20,120,73,0.22); }
.orbit-core { background: radial-gradient(circle at 34% 32%, #fff, #a7f2c5 36%, #147849 74%); box-shadow: 0 0 42px rgba(20,120,73,0.20); }
.dot-one { background: #111827; }
.dot-two { background: #147849; }
.about-split {
  border-color: rgba(17,24,39,0.08);
  background: linear-gradient(90deg, rgba(255,255,255,0.82), rgba(241,247,244,0.84), rgba(255,255,255,0.82));
}

.cs-quote-section {
  background: linear-gradient(180deg, #f6f8fb, #ffffff);
  border-top: 1px solid rgba(17,24,39,0.08);
  border-bottom: 1px solid rgba(17,24,39,0.08);
}
.cs-quote { color: #111827; }
.cs-quote-author { color: #147849; }
.cs-quote-role { color: rgba(77,89,107,0.66); }
.cs-stat-label { color: rgba(17,24,39,0.78); }
.cs-stat-sub { color: rgba(77,89,107,0.62); }
.cs-stat-row { border-top-color: rgba(17,24,39,0.10); }
.cs-stat-num { color: #147849; }

.cta-banner,
.cosmic-page .cta-banner {
  color: #111827;
  background:
    radial-gradient(circle at 50% 0%, rgba(46,168,101,0.12), transparent 44%),
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(241,248,244,0.92));
  border: 1px solid rgba(17,24,39,0.09);
  box-shadow: 0 34px 100px rgba(15,23,42,0.10), inset 0 1px 0 rgba(255,255,255,0.96);
}
.cta-banner h2 { color: #111827; }
.cta-banner p { color: rgba(77,89,107,0.78); }
.cta-banner .btn-white { background: #111827; color: #fff; }
.cta-banner .btn-outline-white { background: #fff; color: #111827; border-color: rgba(17,24,39,0.14); }

.footer {
  background: #f5f5f7;
  border-top: 1px solid rgba(17,24,39,0.08);
}
.footer-brand span,
.footer-col h4 { color: #111827; }
.footer-col p,
.footer-col li,
.footer-col a { color: rgba(77,89,107,0.78); }
.footer-col a:hover { color: #111827; }
.footer-bottom { border-top-color: rgba(17,24,39,0.08); }
.footer-bottom p { color: rgba(77,89,107,0.62); }

.page-transition-overlay::before,
.page-transition-overlay::after {
  background: radial-gradient(circle at 50% 42%, rgba(46,168,101,0.12), transparent 42%), linear-gradient(135deg, rgba(255,255,255,0.98), rgba(242,247,244,0.98));
}
.transition-path { background: linear-gradient(90deg, transparent, rgba(20,120,73,0.36), transparent); }
.transition-label { color: rgba(17,24,39,0.72); }

@media (max-width: 768px) {
  .nav-links.open {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(17,24,39,0.08);
    box-shadow: 0 18px 48px rgba(15,23,42,0.10);
  }
  .home-page .hero-content { bottom: 84px; }
  .hero h1,
  .home-page .hero h1 { letter-spacing: -0.04em; }
  .home-orbit-stage { opacity: 0.68; }
  .pricing-toggle { padding: 6px; gap: 6px; }
  .filter-pill,
  .cosmic-page .filter-pill { min-width: 0; }
}

/* Contact card polish */
.contact-page .contact-wrap {
  max-width: 1180px;
}

.contact-page .form-card {
  max-width: 680px;
  margin: 0 auto 40px;
}

.contact-page .contact-cards {
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.contact-page .contact-card,
.contact-page .contact-card-link {
  min-height: 218px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 34px 28px;
  text-align: center;
  border-radius: 28px;
}

.contact-page .contact-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.contact-page .contact-card-icon {
  width: 62px;
  height: 62px;
  margin: 0 0 18px;
  border-radius: 18px;
  color: #147849;
  background: linear-gradient(145deg, rgba(46,168,101,0.12), rgba(255,255,255,0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 12px 34px rgba(20,120,73,0.08);
  transition: color 0.22s ease, transform 0.22s ease;
}

.contact-page .contact-card-icon svg {
  width: 28px;
  height: 28px;
}

.contact-page .contact-card-label {
  margin: 0;
  color: rgba(77,89,107,0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.contact-page .contact-card-value {
  max-width: 100%;
  color: #111827;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 800;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.contact-page .contact-card-email {
  font-size: clamp(16px, 1.25vw, 21px);
}

.contact-page .contact-card:hover .contact-card-icon,
.contact-page .contact-card-link:hover .contact-card-icon {
  color: #0f6d42;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .contact-page .contact-cards {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .contact-page .contact-card,
  .contact-page .contact-card-link {
    min-height: 190px;
  }
}

/* Contact intro refinement */
.contact-page .ph-centered-inner {
  max-width: 920px;
}

.contact-page .contact-intro-copy {
  max-width: 520px;
  margin: 26px auto 0;
  color: rgba(77, 89, 107, 0.76);
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.006em;
}

@media (max-width: 768px) {
  .contact-page .contact-intro-copy {
    max-width: 34ch;
    font-size: 18px;
    line-height: 1.5;
  }
}

/* Ultra premium brand polish */
:root {
  --premium-black: #08090b;
  --premium-ink: #111318;
  --premium-muted: #647084;
  --premium-line: rgba(8, 9, 11, 0.085);
  --premium-soft: #f6f7f9;
  --premium-glass: rgba(255,255,255,0.74);
  --premium-shadow: 0 28px 90px rgba(15, 23, 42, 0.10);
  --premium-shadow-strong: 0 42px 130px rgba(15, 23, 42, 0.16);
}

html { background: #fbfbfd; }
body {
  background: #fbfbfd;
  color: var(--premium-ink);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8,9,11,0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8,9,11,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.22), transparent 64%);
  opacity: 0.36;
}

.space-backdrop {
  background:
    radial-gradient(circle at 50% -18%, rgba(255,255,255,0.96), transparent 31%),
    radial-gradient(circle at 18% 18%, rgba(20,120,73,0.105), transparent 31%),
    radial-gradient(circle at 82% 18%, rgba(73,112,255,0.105), transparent 31%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 45%, #f4f6f8 100%);
}
.star-layer-far,
.star-layer-mid,
.star-layer-near { opacity: 0.095; }
.nebula { opacity: 0.36; filter: blur(52px); }

.container,
.nav-inner,
.ph-editorial-inner,
.about-header-inner,
.about-intro-inner,
.about-split-inner,
.cs-hero-inner,
.work-grid {
  max-width: 1440px;
}

.nav,
.cosmic-page .nav,
.cosmic-page .nav.nav-floating {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 16px 32px;
  background: rgba(251, 251, 253, 0.74);
  border-bottom: 1px solid rgba(8,9,11,0.065);
  box-shadow: 0 12px 42px rgba(15,23,42,0.055);
  backdrop-filter: blur(28px) saturate(190%);
}
.home-page .nav.nav-floating { position: fixed; }
.nav-inner { min-height: 44px; }
.nav-logo { gap: 10px; font-size: 18px; letter-spacing: -0.018em; }
.nav-logo img,
.footer-brand img { width: 30px; height: 30px; }
.nav-links { gap: 8px; padding: 5px; border-radius: 999px; background: rgba(8,9,11,0.035); border: 1px solid rgba(8,9,11,0.055); }
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(17,19,24,0.66);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.006em;
  border-bottom: 0;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--premium-ink);
  background: rgba(255,255,255,0.84);
  box-shadow: 0 8px 24px rgba(15,23,42,0.06), inset 0 1px 0 rgba(255,255,255,0.92);
  border-bottom: 0;
  padding-bottom: 8px;
}
.btn-book,
.nav:not(.nav-floating) .btn-book,
.cosmic-page .nav:not(.nav-floating) .btn-book,
.cosmic-page .nav.nav-floating .btn-book {
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 750;
  background: #0b0d10;
  border-color: #0b0d10;
  box-shadow: 0 14px 34px rgba(8,9,11,0.16);
}
.btn-book:hover { background: #147849; border-color: #147849; }

.btn {
  min-height: 54px;
  padding: 16px 30px;
  font-weight: 760;
  letter-spacing: -0.012em;
  box-shadow: none;
}
.btn-green,
.cosmic-page .pricing-card .btn-green {
  background: #0b0d10;
  border: 1px solid #0b0d10;
  box-shadow: 0 18px 48px rgba(8,9,11,0.18);
}
.btn-green:hover,
.cosmic-page .pricing-card .btn-green:hover {
  background: #147849;
  border-color: #147849;
  box-shadow: 0 22px 58px rgba(20,120,73,0.22);
}
.btn-outline-light,
.btn-outline-white {
  background: rgba(255,255,255,0.64);
  color: var(--premium-ink);
  border: 1px solid rgba(8,9,11,0.14);
  box-shadow: 0 18px 48px rgba(15,23,42,0.075), inset 0 1px 0 rgba(255,255,255,0.92);
}
.btn-outline-light:hover,
.btn-outline-white:hover { background: #0b0d10; color: #fff; border-color: #0b0d10; }

.hero,
.home-page .hero {
  min-height: 104vh;
  isolation: isolate;
}
.home-page .hero-content {
  left: clamp(28px, 5.2vw, 86px);
  bottom: clamp(86px, 14vh, 150px);
  max-width: 880px;
}
.home-page .hero h1,
.hero h1 {
  max-width: 10.8ch;
  margin-bottom: 22px;
  font-size: clamp(62px, 9.6vw, 142px);
  line-height: 0.86;
  font-weight: 850;
  letter-spacing: -0.072em;
}
.hero h1 .accent,
.home-page .hero h1 .accent {
  color: #147849;
  background: linear-gradient(135deg, #147849 0%, #21a867 54%, #0b0d10 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub,
.home-page .hero-sub {
  max-width: 28ch;
  margin-bottom: 34px;
  color: rgba(17,19,24,0.68);
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.24;
  font-weight: 520;
  letter-spacing: -0.025em;
}
.hero-tag,
.home-page .hero-tag,
.hero-reel,
.home-page .hero-reel {
  border-radius: 999px;
  border-color: rgba(8,9,11,0.08);
  background: rgba(255,255,255,0.66);
  box-shadow: 0 18px 54px rgba(15,23,42,0.08), inset 0 1px 0 rgba(255,255,255,0.95);
}
.hero-tag { padding: 9px 18px; font-size: 13px; font-weight: 700; color: rgba(17,19,24,0.72); }
.hero-reel { top: 92px; right: clamp(24px, 5vw, 86px); }
.hero-stats {
  right: clamp(28px, 5.2vw, 86px);
  bottom: clamp(72px, 12vh, 128px);
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(8,9,11,0.08);
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(22px) saturate(160%);
}
.hero-stat-num { letter-spacing: -0.05em; }

.home-orbit-stage { opacity: 0.58; filter: saturate(0.85); }
.planetary-body { opacity: 0.92; }
.ring-pov-track,
.ring-horizon,
.planet-ring { opacity: 0.52; }

.ticker,
.cosmic-page .ticker {
  padding: 18px 0;
  background: rgba(251,251,253,0.76);
  border-color: rgba(8,9,11,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.84);
}
.ticker-item { padding: 0 30px; }
.ticker-item span { font-size: 13px; font-weight: 780; letter-spacing: 0.08em; text-transform: uppercase; }
.ticker-dot { width: 5px; height: 5px; }

.section,
.cs-section { padding: clamp(86px, 9vw, 142px) 32px; }
.section-title,
.cosmic-page .section-title {
  max-width: 850px;
  margin: 0 auto 70px;
  font-size: clamp(38px, 5.3vw, 78px);
  line-height: 0.98;
  font-weight: 830;
  letter-spacing: -0.06em;
}

.ph-editorial,
.ph-centered,
.cs-hero,
.about-header,
.cosmic-page .ph-editorial,
.cosmic-page .ph-centered,
.cosmic-page .cs-hero {
  padding: clamp(108px, 13vw, 188px) 32px clamp(86px, 10vw, 142px);
  background:
    radial-gradient(circle at 76% 18%, rgba(20,120,73,0.10), transparent 28%),
    radial-gradient(circle at 18% 0%, rgba(73,112,255,0.08), transparent 29%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,247,249,0.72));
}
.ph-centered-inner { max-width: 920px; }
.ph-editorial h1,
.ph-centered h1,
.cs-hero h1,
.about-header h1,
.cosmic-page .ph-editorial h1,
.cosmic-page .ph-centered h1,
.cosmic-page .cs-hero h1 {
  max-width: 12.5ch;
  font-size: clamp(54px, 7.2vw, 112px);
  line-height: 0.92;
  font-weight: 840;
  letter-spacing: -0.066em;
}
.ph-centered h1 { margin-left: auto; margin-right: auto; }
.ph-editorial p,
.ph-centered p,
.cs-hero-sub,
.about-header p,
.about-intro p,
.about-split p,
.cosmic-page .ph-editorial p,
.cosmic-page .ph-centered p,
.cosmic-page .cs-hero-sub {
  color: rgba(77,89,107,0.74);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.5;
  letter-spacing: -0.015em;
}
.eyebrow,
.eyebrow-pill,
.cs-label {
  color: rgba(17,19,24,0.66);
  font-size: 11px;
  letter-spacing: 0.16em;
}
.eyebrow-pill {
  padding: 8px 18px;
  background: rgba(255,255,255,0.72);
  border-color: rgba(8,9,11,0.08);
}
.rule { width: 42px; height: 2px; opacity: 0.6; }

.service-card,
.process-card,
.proof-card,
.proof-placeholder,
.pricing-card,
.form-card,
.contact-card,
.cs-meta-card,
.cs-scope-card,
.cs-img-placeholder,
.work-placeholder,
.team-card,
.cosmic-page .service-card,
.cosmic-page .process-card,
.cosmic-page .proof-card,
.cosmic-page .proof-placeholder,
.cosmic-page .pricing-card,
.cosmic-page .form-card,
.cosmic-page .contact-card,
.cosmic-page .cs-meta-card,
.cosmic-page .cs-scope-card,
.cosmic-page .cs-img-placeholder,
.cosmic-page .work-placeholder,
.cosmic-page .team-card {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(250,251,252,0.76));
  border-color: rgba(8,9,11,0.075);
  box-shadow: 0 24px 84px rgba(15,23,42,0.08), inset 0 1px 0 rgba(255,255,255,0.94);
}
.service-card,
.process-card,
.team-card,
.contact-card,
.cs-scope-card { padding: 34px; }
.service-card:hover,
.process-card:hover,
.team-card:hover,
.contact-card:hover,
.cs-scope-card:hover,
.pricing-card:hover,
.work-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--premium-shadow-strong), inset 0 1px 0 rgba(255,255,255,0.96);
}
.service-icon,
.contact-card-icon,
.cs-scope-icon,
.team-avatar {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  color: #0f6d42;
  background: linear-gradient(145deg, rgba(20,120,73,0.10), rgba(255,255,255,0.86));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.94), 0 14px 34px rgba(20,120,73,0.075);
}
.service-card h3,
.process-card h3,
.cs-scope-card h3,
.proof-card h3 {
  color: var(--premium-ink);
  letter-spacing: -0.025em;
}
.service-card p,
.process-card p,
.cs-scope-card p,
.proof-card > p {
  font-size: 15px;
  line-height: 1.6;
}

.pricing-grid { max-width: 1320px; gap: 28px; }
.pricing-card,
.cosmic-page .pricing-card {
  min-height: 590px;
  padding: 50px;
  border-radius: 34px;
}
.pricing-card.featured,
.cosmic-page .pricing-card.featured {
  border-color: rgba(8,9,11,0.18);
  box-shadow: 0 34px 110px rgba(15,23,42,0.14), inset 0 1px 0 rgba(255,255,255,0.96);
}
.pricing-badge,
.cosmic-page .pricing-badge {
  color: #fff;
  background: #0b0d10;
  border-color: #0b0d10;
}
.pricing-name { font-size: 28px; letter-spacing: -0.035em; }
.pricing-price { color: #0b0d10; font-size: clamp(58px, 5.8vw, 82px); }
.cosmic-page .pricing-price { color: #0b0d10; }
.pricing-per { margin-top: 16px; }
.pricing-feats { gap: 16px; }
.pricing-feats li { font-size: 15.5px; }
.pricing-toggle,
.cosmic-page .pricing-toggle { margin-bottom: 62px; }

.work-grid { padding: 0 32px; }
.work-row { gap: 18px; margin-bottom: 18px; }
.work-card {
  height: 380px;
  border-radius: 30px;
  border-color: rgba(8,9,11,0.08);
  box-shadow: 0 28px 90px rgba(15,23,42,0.14);
}
.work-card.h-sm { height: 310px; }
.work-content { bottom: 30px; left: 30px; right: 30px; }
.work-content h3 { font-size: clamp(24px, 2.2vw, 34px); letter-spacing: -0.04em; }
.work-content p { font-size: 15px; }
.work-stats { top: 28px; right: 28px; }
.work-stat-num { font-size: 34px; letter-spacing: -0.055em; }
.work-hover { background: rgba(251,251,253,0.74); }
.work-hover button { padding: 14px 24px; }

.form-card,
.cosmic-page .form-card {
  border-radius: 32px;
  padding: clamp(34px, 4vw, 56px);
}
.form-card h3 { font-size: 30px; letter-spacing: -0.035em; }
.form-field input,
.form-field select,
.form-field textarea,
.cosmic-page .form-field input,
.cosmic-page .form-field select,
.cosmic-page .form-field textarea {
  border-radius: 16px;
  padding: 15px 17px;
  background: rgba(255,255,255,0.72);
}
.contact-page .contact-card,
.contact-page .contact-card-link { border-radius: 32px; }
.contact-page .contact-card-value { letter-spacing: -0.035em; }
.contact-page .contact-intro-copy {
  max-width: 480px;
  color: rgba(77,89,107,0.68);
  font-size: clamp(17px, 1.25vw, 20px);
}

.about-header { min-height: auto; }
.about-intro h2,
.about-split h2 {
  font-size: clamp(44px, 5.4vw, 82px);
  font-weight: 830;
  letter-spacing: -0.06em;
}
.about-intro-img { border-radius: 34px; }
.orbit-visual { filter: saturate(0.9); }

.cs-stat-num { font-size: clamp(56px, 7.2vw, 96px); letter-spacing: -0.07em; }
.cs-quote { font-size: clamp(30px, 4.2vw, 54px); letter-spacing: -0.045em; font-style: normal; }
.cs-loaded-image,
.smart-image { border-radius: 30px; }

.cta-banner,
.cosmic-page .cta-banner {
  border-radius: 36px;
  padding: clamp(54px, 7vw, 92px);
  background:
    radial-gradient(circle at 78% 0%, rgba(20,120,73,0.13), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(244,247,245,0.94));
  box-shadow: 0 34px 120px rgba(15,23,42,0.12), inset 0 1px 0 rgba(255,255,255,0.96);
}
.cta-banner h2 { letter-spacing: -0.06em; line-height: 0.98; }

.footer {
  padding: 74px 32px 46px;
  background: linear-gradient(180deg, #f7f8fa, #eceff2);
}
.footer-grid { max-width: 1440px; margin-left: auto; margin-right: auto; }
.footer-brand span { letter-spacing: -0.025em; }
.footer-col h4 { font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase; }
.footer-col p,
.footer-col li { line-height: 1.7; }

@media (max-width: 1024px) {
  .nav-links { gap: 2px; }
  .hero-stats { display: none; }
  .pricing-card,
  .cosmic-page .pricing-card { padding: 40px; }
}

@media (max-width: 768px) {
  .nav,
  .cosmic-page .nav,
  .cosmic-page .nav.nav-floating { padding: 14px 20px; }
  .nav-links { border-radius: 0; background: transparent; border: 0; }
  .nav-links.open { top: 73px; padding: 18px 20px 24px; }
  .nav-links a { width: 100%; text-align: center; }
  .home-page .hero-content { left: 20px; right: 20px; bottom: 78px; }
  .home-page .hero h1,
  .hero h1 { font-size: clamp(52px, 16vw, 76px); line-height: 0.9; letter-spacing: -0.058em; }
  .hero-sub,
  .home-page .hero-sub { font-size: 19px; }
  .hero-btns { gap: 12px; }
  .hero-btns .btn { width: 100%; }
  .hero-reel { display: none; }
  .section,
  .cs-section { padding: 70px 20px; }
  .section-title,
  .cosmic-page .section-title { font-size: clamp(36px, 10vw, 52px); margin-bottom: 42px; }
  .ph-editorial,
  .ph-centered,
  .cs-hero,
  .about-header,
  .cosmic-page .ph-editorial,
  .cosmic-page .ph-centered,
  .cosmic-page .cs-hero { padding: 94px 20px 70px; }
  .ph-editorial h1,
  .ph-centered h1,
  .cs-hero h1,
  .about-header h1,
  .cosmic-page .ph-editorial h1,
  .cosmic-page .ph-centered h1,
  .cosmic-page .cs-hero h1 { font-size: clamp(42px, 13vw, 64px); letter-spacing: -0.052em; }
  .work-grid { padding: 0 20px; }
  .work-card,
  .work-card.h-sm { height: 310px; border-radius: 24px; }
  .pricing-card,
  .cosmic-page .pricing-card { min-height: auto; padding: 34px 28px; border-radius: 28px; }
  .pricing-price { font-size: 58px; }
  .cta-banner,
  .cosmic-page .cta-banner { border-radius: 28px; }
}

/* Premium icon refinement */
.service-icon svg,
.cs-scope-icon svg,
.contact-card-icon svg {
  width: 27px;
  height: 27px;
  display: block;
}

.service-icon,
.cs-scope-icon,
.contact-card-icon {
  flex: 0 0 auto;
}

.proof-placeholder-inner .emoji,
.work-placeholder .emoji,
.cs-img-placeholder .emoji {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 24px;
  filter: grayscale(1) saturate(0.2);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(8,9,11,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 14px 34px rgba(15,23,42,0.06);
}

.work-placeholder .inner h3,
.proof-placeholder-inner h3,
.cs-img-placeholder h3 {
  color: var(--premium-ink);
  letter-spacing: -0.025em;
}

.work-placeholder .inner p,
.cs-img-placeholder p {
  color: rgba(77,89,107,0.68);
}

/* Homepage headline descender fix */
.home-page .section-title,
.home-page .section-title.reveal,
.home-page .section-title.reveal.visible {
  overflow: visible;
  clip-path: none;
  line-height: 1.08;
  padding-bottom: 0.08em;
}

.home-page .section-title.reveal {
  transform: translateY(42px) rotateX(-7deg) scale(0.992);
}

.home-page .section-title.reveal.visible {
  transform: translateY(0) rotateX(0deg) scale(1);
}

.home-page .hero h1,
.hero h1 {
  line-height: 0.94;
  padding-bottom: 0.04em;
}

@media (max-width: 768px) {
  .home-page .section-title,
  .home-page .section-title.reveal,
  .home-page .section-title.reveal.visible {
    line-height: 1.1;
    padding-bottom: 0.1em;
  }
}

/* Sliding nav indicator */
.nav-links {
  position: relative;
  isolation: isolate;
  --nav-indicator-x: 5px;
  --nav-indicator-w: 0px;
}

.nav-links::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: var(--nav-indicator-w);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 28px rgba(15,23,42,0.09), inset 0 1px 0 rgba(255,255,255,0.96);
  opacity: 0;
  transform: translate3d(var(--nav-indicator-x), 0, 0);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), width 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.18s ease;
  pointer-events: none;
}

.nav-links.nav-indicator-ready::before {
  opacity: 1;
}

.nav-links a,
.nav-links a.active,
.nav-links a:hover,
.nav-links a:focus-visible {
  position: relative;
  z-index: 1;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 0 !important;
  padding-bottom: 8px;
}

.nav-links a.active,
.nav-links a:hover,
.nav-links a:focus-visible {
  color: #08090b;
}

@media (max-width: 768px) {
  .nav-links::before {
    display: none;
  }

  .nav-links a,
  .nav-links a.active,
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255,255,255,0.72) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.92) !important;
  }
}

/* Persistent active nav state */
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #147849;
  opacity: 0.9;
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(20,120,73,0.22);
}

.nav-links a.active {
  color: #08090b;
  font-weight: 780;
}

.nav-links:hover a.active:not(:hover),
.nav-links:focus-within a.active:not(:focus-visible) {
  color: rgba(8,9,11,0.72);
}

.nav-links:hover a.active:not(:hover)::after,
.nav-links:focus-within a.active:not(:focus-visible)::after {
  opacity: 0.72;
}

@media (max-width: 768px) {
  .nav-links a.active::after {
    display: none;
  }

  .nav-links:hover a.active:not(:hover),
  .nav-links:focus-within a.active:not(:focus-visible) {
    color: #08090b;
  }
}

/* Pricing card balance fix */
.services-page .pricing-grid {
  max-width: 1240px;
  align-items: stretch;
  gap: clamp(18px, 2.2vw, 30px);
}

.services-page .pricing-card,
.services-page .cosmic-page .pricing-card,
.services-page.cosmic-page .pricing-card {
  min-height: 520px;
  padding: clamp(34px, 3.4vw, 48px);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
  border-radius: 32px;
}

.services-page .pricing-card.featured .pricing-name {
  margin-top: 0;
}

.services-page .pricing-badge,
.services-page.cosmic-page .pricing-badge {
  position: static;
  width: max-content;
  margin: 0 0 28px;
  padding: 8px 16px;
  font-size: 12px;
  line-height: 1;
}

.services-page .pricing-card:not(.featured)::before {
  opacity: 0.72;
}

.services-page .pricing-card:not(.featured) .pricing-name {
  margin-top: 42px;
}

.services-page .pricing-name {
  margin-bottom: 24px;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1;
}

.services-page .pricing-price {
  font-size: clamp(64px, 6.4vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.services-page .pricing-per {
  margin: 16px 0 44px;
  font-size: 16px;
}

.services-page .pricing-feats {
  gap: 17px;
  justify-content: start;
}

.services-page .pricing-feats li {
  gap: 16px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.42;
}

.services-page .pricing-feats .check {
  width: 18px;
  text-align: center;
  transform: translateY(1px);
}

.services-page .pricing-card .btn {
  margin-top: 38px;
  align-self: end;
  min-height: 58px;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .services-page .pricing-card,
  .services-page.cosmic-page .pricing-card {
    min-height: auto;
  }

  .services-page .pricing-card:not(.featured) .pricing-name {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .services-page .pricing-card,
  .services-page.cosmic-page .pricing-card {
    padding: 34px 26px;
    grid-template-rows: auto auto auto auto auto;
  }

  .services-page .pricing-badge,
  .services-page.cosmic-page .pricing-badge {
    margin-bottom: 20px;
  }

  .services-page .pricing-price {
    font-size: 62px;
  }
}

/* About orbit visual alignment */
.about-page .about-intro-img {
  overflow: hidden;
}

.about-page .about-intro-img .inner {
  width: 100%;
}

.about-page .orbit-visual {
  --orbit-size: min(340px, 72vw);
  --outer-radius: calc(var(--orbit-size) * 0.40);
  --inner-radius: calc(var(--orbit-size) * 0.26);
  width: var(--orbit-size);
  margin-bottom: 34px;
  filter: saturate(0.95);
}

.about-page .orbit-visual::before {
  content: "";
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.72), rgba(46,168,101,0.12) 45%, transparent 72%);
  filter: blur(18px);
  opacity: 0.72;
}

.about-page .orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(20,120,73,0.20);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitLinePulse 4.8s ease-in-out infinite;
}

.about-page .orbit-ring-one {
  width: 80%;
  height: 80%;
  inset: auto;
}

.about-page .orbit-ring-two {
  width: 52%;
  height: 52%;
  inset: auto;
  animation-delay: -1.6s;
}

.about-page .orbit-core {
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  inset: auto;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 34% 30%, #ffffff 0 8%, #c9ffdc 29%, #64ce91 58%, #147849 100%);
  box-shadow: 0 22px 54px rgba(20,120,73,0.22), inset -18px -20px 34px rgba(9,83,50,0.32), inset 18px 14px 28px rgba(255,255,255,0.66);
  animation: orbitCoreBreathe 5.5s ease-in-out infinite;
}

.about-page .orbit-dot {
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(15,23,42,0.16);
  will-change: transform;
}

.about-page .dot-one {
  background: #0b1220;
  animation: orbitOuterDot 10s linear infinite;
}

.about-page .dot-two {
  background: #147849;
  animation: orbitInnerDot 7.4s linear infinite reverse;
}

.about-page .about-intro-img h3 {
  margin-top: 0;
}

@keyframes orbitOuterDot {
  from { transform: rotate(-138deg) translateX(var(--outer-radius)) translate(-50%, -50%); }
  to { transform: rotate(222deg) translateX(var(--outer-radius)) translate(-50%, -50%); }
}

@keyframes orbitInnerDot {
  from { transform: rotate(46deg) translateX(var(--inner-radius)) translate(-50%, -50%); }
  to { transform: rotate(406deg) translateX(var(--inner-radius)) translate(-50%, -50%); }
}

@keyframes orbitLinePulse {
  0%, 100% { opacity: 0.58; box-shadow: 0 0 0 rgba(20,120,73,0); }
  50% { opacity: 0.9; box-shadow: 0 0 26px rgba(20,120,73,0.08); }
}

@keyframes orbitCoreBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.035); }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .orbit-ring,
  .about-page .orbit-core,
  .about-page .dot-one,
  .about-page .dot-two {
    animation: none !important;
  }

  .about-page .dot-one { transform: rotate(-138deg) translateX(var(--outer-radius)) translate(-50%, -50%); }
  .about-page .dot-two { transform: rotate(46deg) translateX(var(--inner-radius)) translate(-50%, -50%); }
}

@media (max-width: 768px) {
  .about-page .orbit-visual {
    --orbit-size: min(300px, 78vw);
  }
}

/* About orbit containment correction */
.about-page .about-intro-img {
  min-height: 620px;
  padding: clamp(42px, 5vw, 70px);
  align-items: center;
}

.about-page .about-intro-img .inner {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-page .orbit-visual {
  --orbit-size: clamp(260px, 28vw, 360px);
  --outer-radius: calc(var(--orbit-size) * 0.39);
  --inner-radius: calc(var(--orbit-size) * 0.255);
  position: relative;
  width: var(--orbit-size);
  height: var(--orbit-size);
  aspect-ratio: 1;
  flex: 0 0 auto;
  margin: 0 auto 38px;
  overflow: visible;
  transform: none;
}

.about-page .orbit-ring,
.about-page .orbit-core,
.about-page .orbit-dot {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.about-page .orbit-ring {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-page .orbit-ring-one {
  width: 78%;
  height: 78%;
}

.about-page .orbit-ring-two {
  width: 51%;
  height: 51%;
}

.about-page .orbit-core {
  left: 50%;
  top: 50%;
  width: clamp(82px, 8vw, 104px);
  height: clamp(82px, 8vw, 104px);
}

.about-page .orbit-dot {
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  z-index: 4;
}

.about-page .dot-one {
  animation-name: aboutOrbitOuterCentered;
}

.about-page .dot-two {
  animation-name: aboutOrbitInnerCentered;
}

@keyframes aboutOrbitOuterCentered {
  from { transform: translate(-50%, -50%) rotate(-138deg) translateX(var(--outer-radius)); }
  to { transform: translate(-50%, -50%) rotate(222deg) translateX(var(--outer-radius)); }
}

@keyframes aboutOrbitInnerCentered {
  from { transform: translate(-50%, -50%) rotate(46deg) translateX(var(--inner-radius)); }
  to { transform: translate(-50%, -50%) rotate(406deg) translateX(var(--inner-radius)); }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .dot-one { transform: translate(-50%, -50%) rotate(-138deg) translateX(var(--outer-radius)); }
  .about-page .dot-two { transform: translate(-50%, -50%) rotate(46deg) translateX(var(--inner-radius)); }
}

@media (max-width: 768px) {
  .about-page .about-intro-img {
    min-height: 560px;
    padding: 38px 24px;
  }

  .about-page .orbit-visual {
    --orbit-size: min(290px, 76vw);
    margin-bottom: 30px;
  }
}

