:root {
  --navy: #10172b;
  --navy-deep: #090d1a;
  --plum: #3a2945;
  --cream: #f8f4ea;
  --stone: #ede8df;
  --white: #fffdf7;
  --ink: #1b2133;
  --muted: #6d6d78;
  --gold: #d8ad5b;
  --gold-bright: #f0cf88;
  --teal: #4c827e;
  --line: #dcd4c8;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Inter", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --container: 1024px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--sans); font-size: 14px; font-weight: 400; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: 0; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.content-width { width: min(calc(100% - 48px), var(--container)); }

.hero { min-height: max(700px, 88vh); position: relative; overflow: hidden; color: var(--white); background-color: var(--navy-deep); background-image: linear-gradient(90deg, rgba(9, 13, 26, .96) 0%, rgba(16, 23, 43, .84) 43%, rgba(16, 23, 43, .28) 100%), url("https://images.unsplash.com/photo-1462331940025-496dfbfc7564?auto=format&fit=crop&w=2000&q=85"); background-position: center; background-size: cover; }
.hero::after { content: ""; height: 1px; position: absolute; right: 0; bottom: 0; left: 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .75; }
.stars { position: absolute; inset: 0; opacity: .55; background-image: radial-gradient(circle, #fff 0 1px, transparent 1.4px), radial-gradient(circle, #f0cf88 0 1.2px, transparent 1.7px), radial-gradient(circle, #b8d5d1 0 1px, transparent 1.4px); background-position: 7% 36%, 91% 71%, 66% 15%; background-size: 137px 181px, 223px 263px, 191px 233px; }
.nav { height: 90px; position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 17px; }
.brand-mark { color: var(--gold-bright); font-size: 18px; text-shadow: 0 0 18px rgba(240, 207, 136, .65); }
.nav-links { display: flex; align-items: center; gap: 34px; color: #aab3bf; font-size: 12px; }
.nav-links > a:hover { color: var(--white); }
.menu-toggle { display: none; width: 40px; height: 40px; color: white; border: 0; background: transparent; }
.menu-toggle svg { width: 22px; }
.button { min-height: 44px; padding: 0 19px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 4px; font-size: 12px; font-weight: 500; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg, .product-meta svg { width: 13px; height: 13px; }
.button-small { min-height: 40px; padding-inline: 18px; }
.button-light { color: var(--ink) !important; background: var(--white); box-shadow: 0 10px 30px rgba(0, 0, 0, .18); }
.button-outline { color: var(--white); border-color: rgba(240, 207, 136, .48); background: rgba(9, 13, 26, .4); backdrop-filter: blur(8px); }
.hero-content { min-height: calc(max(700px, 88vh) - 90px); position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); align-items: center; gap: 80px; padding-block: 80px; }
.hero-copy { max-width: 570px; position: relative; z-index: 2; }
.hero-kicker { margin-bottom: 20px; display: flex; align-items: center; gap: 9px; color: var(--gold-bright) !important; font-family: var(--mono); font-size: 10px !important; letter-spacing: 1.8px; text-transform: uppercase; }
.hero-kicker svg { width: 14px; height: 14px; }
.hero h1 { max-width: 570px; margin-bottom: 24px; font-size: 52px; line-height: 1.05; }
.hero-copy > p { max-width: 540px; margin-bottom: 40px; color: #aab4c0; font-size: 15px; line-height: 1.7; }
.hero-copy > .hero-kicker { margin-bottom: 20px; color: var(--gold-bright); }
.hero-actions { display: flex; gap: 13px; }
.zodiac-wheel { width: 330px; aspect-ratio: 1; position: relative; justify-self: end; border: 1px solid rgba(240, 207, 136, .3); border-radius: 50%; box-shadow: 0 0 80px rgba(216, 173, 91, .1), inset 0 0 50px rgba(9, 13, 26, .58); backdrop-filter: blur(3px); animation: celestial-float 8s ease-in-out infinite; }
.zodiac-wheel::before, .zodiac-wheel::after { content: ""; position: absolute; border: 1px solid rgba(240, 207, 136, .2); border-radius: 50%; }
.zodiac-wheel::before { inset: 28px; }
.zodiac-wheel::after { inset: 78px; border-color: rgba(184, 213, 209, .28); }
.zodiac-orbit { position: absolute; inset: 52px; border: 1px dashed rgba(240, 207, 136, .22); border-radius: 50%; animation: celestial-spin 45s linear infinite; }
.zodiac-wheel > span { width: 28px; height: 28px; position: absolute; top: calc(50% - 14px); left: calc(50% - 14px); display: grid; place-items: center; color: var(--gold-bright); font-family: var(--serif); font-size: 18px; transform: rotate(calc(var(--index) * 30deg)) translateY(-144px) rotate(calc(var(--index) * -30deg)); text-shadow: 0 0 12px rgba(240, 207, 136, .5); }
.zodiac-core { width: 82px; aspect-ratio: 1; position: absolute; top: 50%; left: 50%; display: grid; place-items: center; color: var(--gold-bright); border: 1px solid rgba(240, 207, 136, .48); border-radius: 50%; background: rgba(9, 13, 26, .62); transform: translate(-50%, -50%); }
.zodiac-core svg { width: 34px; height: 34px; stroke-width: 1; }
@keyframes celestial-spin { to { transform: rotate(360deg); } }
@keyframes celestial-float { 50% { transform: translateY(-10px); } }

.section { padding: 64px 0; }
.services { position: relative; background-color: var(--cream); background-image: linear-gradient(135deg, rgba(76, 130, 126, .06), transparent 42%); }
.products { padding-top: 76px; padding-bottom: 76px; background-color: var(--stone); background-image: linear-gradient(120deg, rgba(58, 41, 69, .06), transparent 45%); border-top: 1px solid var(--line); }
.eyebrow { margin-bottom: 12px; color: #7f7a6e; font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.section h2, .about h2, .cta h2 { margin-bottom: 32px; font-size: 26px; line-height: 1.3; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { min-height: 190px; padding: 24px 20px; position: relative; overflow: hidden; background: rgba(255, 253, 247, .86); border: 1px solid #ddd4c6; border-radius: 6px; box-shadow: 0 14px 40px rgba(35, 31, 43, .05); }
.service-card::after { content: ""; width: 42px; height: 42px; position: absolute; right: -22px; bottom: -22px; border: 1px solid rgba(76, 130, 126, .35); border-radius: 50%; }
.service-card svg { width: 24px; height: 24px; margin-bottom: 18px; color: var(--teal); stroke-width: 1.4; }
.service-card h3, .product-card h3 { margin-bottom: 6px; font-size: 18px; }
.service-card p, .product-card p { margin-bottom: 0; color: #667078; font-size: 13px; line-height: 1.55; }
.products h2 { margin-bottom: 13px; }
.section-intro { margin-bottom: 32px; color: #6e7479; font-size: 14px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.product-card { min-height: 180px; padding: 48px 20px 20px; position: relative; overflow: hidden; display: flex; flex-direction: column; background: rgba(255, 253, 247, .9); border: 1px solid #ddd4c6; border-radius: 6px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.product-card::before { content: attr(data-symbol); position: absolute; top: 14px; right: 18px; color: var(--teal); font-family: var(--serif); font-size: 26px; line-height: 1; opacity: .8; }
.product-card::after { content: ""; width: 74px; height: 74px; position: absolute; top: -42px; right: -34px; border: 1px solid rgba(76, 130, 126, .24); border-radius: 50%; }
.product-card:hover { transform: translateY(-4px); border-color: rgba(76, 130, 126, .55); box-shadow: 0 18px 40px rgba(35, 31, 43, .09); }
.product-card.featured { color: var(--white); border-color: var(--gold); background: var(--plum); }
.product-card.featured::before { color: var(--gold-bright); }
.product-card.featured p { color: #cec3d2; }
.product-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.tag { padding: 2px 6px; color: #9a8d74; border: 1px solid #e5dfd1; border-radius: 3px; font-family: var(--mono); font-size: 10px; letter-spacing: .8px; }
.featured .tag { color: var(--gold-bright); background: rgba(216, 173, 91, .08); border-color: rgba(240, 207, 136, .38); }
.product-card p { flex: 1; }
.product-meta { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.product-meta a { display: inline-flex; align-items: center; gap: 5px; color: var(--gold); }
.price::before { content: ""; width: 5px; height: 5px; margin-right: 8px; display: inline-block; background: var(--gold); }

.about { padding: 96px 0 88px; color: var(--white); background-color: var(--navy); background-image: linear-gradient(110deg, rgba(58, 41, 69, .82), transparent 62%); border-top: 1px solid rgba(216, 173, 91, .3); }
.about .eyebrow { color: var(--gold); }
.about h2 { margin-bottom: 24px; }
.about-lead { max-width: 540px; margin-bottom: 40px; color: #a7b0bc; font-size: 14px; line-height: 1.7; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 54px; }
.proof { padding: 18px 0 18px 20px; display: flex; flex-direction: column; gap: 6px; border-left: 1px solid var(--gold); }
.proof strong { font-size: 13px; font-weight: 500; }
.proof span { color: #8e99a6; font-size: 12px; }

.cta { padding: 68px 0 66px; text-align: center; background-color: var(--cream); background-image: linear-gradient(90deg, transparent, rgba(216, 173, 91, .08), transparent); }
.cta h2 { margin-bottom: 16px; }
.cta p { margin-bottom: 27px; color: #6d757b; font-size: 14px; }
.cta-actions { display: flex; justify-content: center; gap: 13px; }
.button-gold { color: #1b2133; background: var(--gold-bright); box-shadow: 0 10px 24px rgba(216, 173, 91, .18); }
.button-dark-outline { color: var(--ink); border-color: #77818a; }

.footer { padding: 48px 0 20px; color: #8e9bab; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 40px; }
.footer .brand { margin-bottom: 18px; color: var(--white); }
.gold-rule { width: 18px; height: 1px; margin-bottom: 17px; display: block; background: var(--gold); }
.footer address { font-family: var(--mono); font-style: normal; font-size: 11px; line-height: 1.7; }
.footer-label { margin-bottom: 19px; color: #687587; font-family: var(--mono); font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; font-size: 13px; }
.footer-column .footer-label { margin-bottom: 2px; }
.footer a:hover { color: var(--white); }
.legal-mobile { display: none; }
.footer-bottom { margin-top: 40px; padding-top: 20px; display: flex; align-items: flex-start; justify-content: space-between; border-top: 1px solid #263447; font-size: 11px; }
.footer-bottom p { margin-bottom: 17px; }
.footer-bottom small { font-size: 11px; }
.bottom-links { display: flex; gap: 19px; }

.internal-header { color: var(--white); background: var(--navy-deep); border-bottom: 1px solid rgba(216, 173, 91, .2); }
.internal-header .nav { height: 76px; }
.internal-main { min-height: 60vh; background: var(--cream); }
.page-hero { padding: 78px 0 58px; border-bottom: 1px solid var(--line); background-color: var(--stone); background-image: linear-gradient(120deg, rgba(58, 41, 69, .08), transparent 55%); }
.page-hero .eyebrow { color: #977124; }
.page-hero h1 { max-width: 720px; margin-bottom: 16px; font-size: 48px; line-height: 1.08; }
.page-hero p { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.prose { max-width: 760px; padding-top: 64px; padding-bottom: 80px; }
.prose > p:first-child { font-size: 16px; color: #45505b; }
.prose h2 { margin: 42px 0 12px; font-size: 25px; }
.prose p, .prose li { color: #4f5963; font-size: 15px; line-height: 1.8; }
.prose ul { padding-left: 22px; }
.prose a { color: #9b6a10; text-decoration: underline; text-underline-offset: 3px; }
.updated { margin-bottom: 28px; font-family: var(--mono); font-size: 11px !important; color: #858078 !important; text-transform: uppercase; letter-spacing: 1px; }
.contact-panel { margin-top: 36px; padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.contact-panel h2 { margin-top: 0; }

.product-hero { padding: 84px 0 76px; color: var(--white); background-color: var(--navy); background-image: linear-gradient(90deg, rgba(9, 13, 26, .95), rgba(16, 23, 43, .8)), url("https://images.unsplash.com/photo-1462331940025-496dfbfc7564?auto=format&fit=crop&w=1800&q=80"); background-position: center 58%; background-size: cover; }
.breadcrumbs { margin-bottom: 28px; color: #8292a3; font-family: var(--mono); font-size: 11px; }
.product-hero-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 80px; align-items: center; }
.product-hero h1 { margin-bottom: 20px; font-size: 56px; line-height: 1; }
.product-summary { max-width: 650px; color: #a9b5c1; font-size: 17px; line-height: 1.7; }
.product-badge { display: flex; gap: 10px; margin-bottom: 24px; color: var(--gold); font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.purchase-box { padding: 30px; color: var(--ink); border: 1px solid rgba(240, 207, 136, .58); border-radius: 6px; background: rgba(255, 253, 247, .96); box-shadow: 0 24px 60px rgba(0, 0, 0, .18); }
.purchase-box .product-price { margin-bottom: 20px; font-family: var(--mono); font-size: 28px; }
.purchase-box .button { width: 100%; min-height: 48px; font-size: 14px; }
.purchase-points { margin: 22px 0 0; padding: 20px 0 0; list-style: none; border-top: 1px solid var(--line); }
.purchase-points li { position: relative; padding-left: 18px; color: #667078; font-size: 12px; line-height: 1.7; }
.purchase-points li::before { content: ""; width: 5px; height: 5px; position: absolute; top: 8px; left: 0; background: var(--gold); }
.product-content { padding: 76px 0; background: var(--cream); }
.product-content-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(240px, .5fr); gap: 80px; }
.product-content h2 { margin-bottom: 24px; font-size: 32px; }
.feature-list { margin: 0; padding: 0; list-style: none; }
.feature-list li { padding: 17px 0 17px 30px; position: relative; color: #4f5963; font-size: 15px; line-height: 1.55; border-bottom: 1px solid var(--line); }
.feature-list li::before { content: ""; width: 8px; height: 8px; position: absolute; top: 24px; left: 0; border: 1px solid var(--gold); transform: rotate(45deg); }
.audience-box { padding: 28px; border-left: 2px solid var(--teal); background: var(--stone); }
.audience-box h3 { margin-bottom: 18px; font-size: 21px; }
.audience-box p { color: #667078; font-size: 13px; line-height: 1.65; }
.faq-section { padding: 70px 0; background: var(--stone); }
.faq-section h2 { margin-bottom: 30px; font-size: 30px; }
.faq-item { padding: 24px 0; border-top: 1px solid #d5d1c6; }
.faq-item h3 { margin-bottom: 10px; font-size: 19px; }
.faq-item p { margin-bottom: 0; color: #626b74; font-size: 14px; line-height: 1.7; }
.product-closing { padding: 64px 0; text-align: center; background: var(--cream); }
.product-closing h2 { margin-bottom: 12px; font-size: 34px; }
.product-closing p { margin-bottom: 26px; color: var(--muted); }

@media (max-width: 760px) {
  .container, .content-width { width: min(calc(100% - 40px), 520px); }
  .hero { min-height: 760px; }
  .nav { height: 72px; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-links { width: calc(100% - 40px); padding: 18px; position: absolute; top: 64px; left: 20px; display: none; flex-direction: column; align-items: stretch; gap: 4px; color: var(--white); background: #13263b; border: 1px solid #33465a; border-radius: 7px; }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 12px; }
  .nav-links .button { margin-top: 6px; }
  .hero-content { height: auto; grid-template-columns: 1fr; gap: 0; padding-top: 220px; padding-bottom: 82px; }
  .hero-copy { width: 100%; }
  .hero h1 { max-width: 340px; font-size: 34px; }
  .hero-copy > p { max-width: 360px; }
  .zodiac-wheel { width: 184px; position: absolute; top: 26px; right: 4px; }
  .zodiac-wheel::before { inset: 18px; }
  .zodiac-wheel::after { inset: 44px; }
  .zodiac-orbit { inset: 31px; }
  .zodiac-wheel > span { width: 22px; height: 22px; top: calc(50% - 11px); left: calc(50% - 11px); font-size: 14px; transform: rotate(calc(var(--index) * 30deg)) translateY(-80px) rotate(calc(var(--index) * -30deg)); }
  .zodiac-core { width: 48px; }
  .zodiac-core svg { width: 22px; height: 22px; }
  .section { padding: 58px 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .about { padding: 68px 0; }
  .proof-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
  .footer-column:last-child { display: none; }
  .page-hero { padding: 56px 0 42px; }
  .page-hero h1 { font-size: 38px; }
  .prose { padding-top: 44px; padding-bottom: 58px; }
  .product-hero-grid, .product-content-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-hero { padding: 56px 0; }
  .product-hero h1 { font-size: 44px; }
  .product-content { padding: 56px 0; }
}

@media (max-width: 480px) {
  .container, .content-width { width: calc(100% - 32px); }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 205px; }
  .hero h1 { font-size: 30px; line-height: 1.2; }
  .hero-actions { align-items: stretch; flex-direction: column; width: 170px; }
  .service-grid, .product-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 145px; }
  .product-card { min-height: 160px; }
  .cta-actions { align-items: center; flex-direction: column; }
  .cta-actions .button { width: min(100%, 240px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-company { grid-column: 1 / -1; }
  .legal-mobile { margin-top: 34px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; font-size: 10px; }
  .legal-mobile .footer-label { margin-bottom: 3px; }
  .footer-bottom { margin-top: 42px; flex-direction: column; gap: 22px; }
  .bottom-links { display: none; }
  .page-hero h1 { font-size: 34px; }
  .prose h2 { font-size: 23px; }
  .product-hero h1 { font-size: 40px; }
  .product-summary { font-size: 15px; }
  .purchase-box { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
  .zodiac-wheel, .zodiac-orbit { animation: none; }
}