 :root {
     --bg-deep: #050810;
     --bg-dark: #0a0e1a;
     --bg-card: #0f1525;
     --gold: #C9A84C;
     --gold-light: #E8C97A;
     --gold-dim: #8a6f30;
     --gold-glow: rgba(201, 168, 76, 0.15);
     --white: #F5F0E8;
     --white-dim: #b8b0a0;
     --red-soft: rgba(255, 60, 60, 0.06);
 }

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

 html {
     scroll-behavior: smooth;
 }

 body {
     background: var(--bg-deep);
     color: var(--white);
     font-family: "Josefin Sans", sans-serif;
     overflow-x: hidden;
 }

 /* noise overlay */
 body::before {
     content: '';
     position: fixed;
     inset: 0;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
     pointer-events: none;
     z-index: 0;
     opacity: 0.4;
 }

 /* ── NAV ── */
 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 100;
     height: 66px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 6rem;
     background: rgba(5, 8, 16, 0.85);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(201, 168, 76, 0.1);
 }

 .nav-logo {
     font-family: "Cormorant Garamond", serif;
     font-size: 20px;
     font-weight: 600;
     color: var(--gold);
     letter-spacing: 2px;
     text-transform: uppercase;
 }

 .nav-trust {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 11px;
     color: var(--white-dim);
     letter-spacing: 1.5px;
     text-transform: uppercase;
 }

 .nav-trust-dot {
     width: 6px;
     height: 6px;
     background: var(--gold);
     border-radius: 50%;
 }

 /* ── HERO ── */
 .hero {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 120px 6rem 80px;
     position: relative;
     overflow: hidden;
     background: radial-gradient(ellipse at 50% 60%, #0c1836 0%, #050810 65%);
     text-align: center;
 }

 .hero-glow {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 800px;
     height: 500px;
     background: radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
     pointer-events: none;
 }

 .hero-tag {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     border: 1px solid rgba(201, 168, 76, 0.3);
     padding: 7px 18px;
     font-size: 10px;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 36px;
     opacity: 0;
     animation: fadeUp 0.7s ease 0.1s forwards;
 }

 .hero-tag-line {
     width: 20px;
     height: 1px;
     background: var(--gold);
 }

 .hero h1 {
     font-family: "Cormorant Garamond", serif;
     font-size: 68px;
     font-weight: 700;
     line-height: 1.1;
     color: var(--white);
     max-width: 820px;
     opacity: 0;
     animation: fadeUp 0.8s ease 0.25s forwards;
 }

 .hero h1 em {
     color: var(--gold);
     font-style: italic;
     display: block;
 }

 .hero-sub {
     font-size: 15px;
     color: var(--white-dim);
     line-height: 1.9;
     max-width: 540px;
     margin-top: 28px;
     opacity: 0;
     animation: fadeUp 0.8s ease 0.4s forwards;
 }

 .hero-sub strong {
     color: var(--white);
 }

 /* video block */
 .hero-video-wrap {
     position: relative;
     width: 100%;
     max-width: 760px;
     margin-top: 52px;
     opacity: 0;
     animation: fadeUp 0.9s ease 0.55s forwards;
 }

 .hero-video-frame {
     width: 100%;
     aspect-ratio: 16/9;
     background: var(--bg-card);
     border: 1px solid rgba(201, 168, 76, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
     cursor: pointer;
 }

 .hero-video-frame::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
 }

 /* gold corner lines */
 .hero-video-frame::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 60%;
     height: 2px;
     background: linear-gradient(to right, var(--gold), transparent);
 }

 .vf-corner-v {
     position: absolute;
     top: 0;
     left: 0;
     bottom: 60%;
     width: 2px;
     background: linear-gradient(to bottom, var(--gold), transparent);
 }

 .vf-corner-br-h {
     position: absolute;
     bottom: 0;
     right: 0;
     left: 60%;
     height: 2px;
     background: linear-gradient(to left, var(--gold), transparent);
 }

 .vf-corner-br-v {
     position: absolute;
     bottom: 0;
     right: 0;
     top: 60%;
     width: 2px;
     background: linear-gradient(to top, var(--gold), transparent);
 }

 .play-btn {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: rgba(201, 168, 76, 0.12);
     border: 1.5px solid var(--gold);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     position: relative;
     z-index: 2;
 }

 .play-btn::after {
     content: '';
     position: absolute;
     inset: -8px;
     border-radius: 50%;
     border: 1px solid rgba(201, 168, 76, 0.15);
 }

 .hero-video-frame:hover .play-btn {
     background: rgba(201, 168, 76, 0.22);
     transform: scale(1.08);
     box-shadow: 0 0 40px rgba(201, 168, 76, 0.2);
 }

 .play-icon {
     width: 0;
     height: 0;
     border-style: solid;
     border-width: 11px 0 11px 20px;
     border-color: transparent transparent transparent var(--gold);
     margin-left: 4px;
 }

 .hero-video-label {
     position: absolute;
     bottom: 20px;
     left: 0;
     right: 0;
     text-align: center;
     font-size: 11px;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--white-dim);
 }

 .hero-video-thumb {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0.25;
 }

 .hero-video-duration {
     position: absolute;
     top: 16px;
     right: 16px;
     font-size: 10px;
     letter-spacing: 1.5px;
     color: var(--gold);
     background: rgba(5, 8, 16, 0.7);
     padding: 4px 10px;
 }

 /* hook line */
 .hero-hook {
     margin-top: 32px;
     font-family: "Cormorant Garamond", serif;
     font-size: 18px;
     font-style: italic;
     color: var(--white-dim);
     letter-spacing: 0.3px;
     opacity: 0;
     animation: fadeUp 0.8s ease 0.7s forwards;
 }

 .hero-hook strong {
     color: var(--gold-light);
     font-style: normal;
 }

 /* CTA */
 .hero-cta {
     margin-top: 44px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 14px;
     opacity: 0;
     animation: fadeUp 0.8s ease 0.85s forwards;
 }

 .btn-primary {
     padding: 16px 44px;
     background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
     color: #050810;
     border: none;
     font-family: "Josefin Sans", sans-serif;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
     clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 40px rgba(201, 168, 76, 0.35);
 }

 .hero-cta-note {
     font-size: 11px;
     color: var(--white-dim);
     letter-spacing: 0.5px;
 }

 /* scroll indicator */
 .scroll-hint {
     position: absolute;
     bottom: 36px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     font-size: 9px;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--gold-dim);
     opacity: 0;
     animation: fadeUp 1s ease 1.2s forwards;
 }

 .scroll-line {
     width: 1px;
     height: 40px;
     background: linear-gradient(to bottom, var(--gold-dim), transparent);
     animation: scrollPulse 2s ease-in-out 1.5s infinite;
 }

 @keyframes scrollPulse {

     0%,
     100% {
         opacity: 0.4;
         transform: scaleY(1);
     }

     50% {
         opacity: 1;
         transform: scaleY(0.7);
     }
 }

 /* ── TRUST BAR ── */
 .trust-bar {
     background: var(--bg-card);
     border-top: 1px solid rgba(201, 168, 76, 0.1);
     border-bottom: 1px solid rgba(201, 168, 76, 0.1);
     padding: 20px 6rem;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 60px;
 }

 .trust-item {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .trust-item-icon {
     color: var(--gold);
     font-size: 18px;
 }

 .trust-item-text {
     font-size: 12px;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     color: var(--white-dim);
 }

 .trust-item-text strong {
     color: var(--white);
     display: block;
     font-size: 13px;
 }

 .trust-divider {
     width: 1px;
     height: 36px;
     background: rgba(201, 168, 76, 0.15);
 }

 /* ── STORY SECTION ── */
 .story {
     padding: 110px 6rem;
     background: var(--bg-deep);
     position: relative;
 }

 .story::before {
     content: '';
     position: absolute;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 1px;
     height: 70px;
     background: linear-gradient(to bottom, var(--gold), transparent);
 }

 .story-inner {
     max-width: 1060px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 90px;
     align-items: center;
 }

 .story-label {
     font-size: 11px;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--gold);
     font-weight: 600;
     margin-bottom: 18px;
 }

 .story-content h2 {
     font-family: "Cormorant Garamond", serif;
     font-size: 46px;
     font-weight: 700;
     line-height: 1.15;
     color: var(--white);
     margin-bottom: 32px;
 }

 .story-content h2 span {
     color: var(--gold);
     font-style: italic;
 }

 .story-paragraphs {
     display: flex;
     flex-direction: column;
     gap: 18px;
 }

 .story-paragraphs p {
     font-size: 15px;
     color: var(--white-dim);
     line-height: 1.9;
 }

 .story-paragraphs p strong {
     color: var(--white);
 }

 .story-paragraphs p em {
     color: var(--gold-light);
     font-style: italic;
 }

 .story-reveal {
     margin-top: 32px;
     background: rgba(201, 168, 76, 0.05);
     border-left: 3px solid var(--gold);
     padding: 22px 26px;
 }

 .story-reveal p {
     font-family: "Cormorant Garamond", serif;
     font-size: 22px;
     color: var(--white);
     line-height: 1.5;
 }

 .story-reveal p strong {
     color: var(--gold-light);
 }

 /* stats side */
 .story-stats {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .stat-card {
     background: var(--bg-card);
     border: 1px solid rgba(201, 168, 76, 0.12);
     padding: 32px 28px;
     position: relative;
     overflow: hidden;
     transition: border-color 0.3s ease;
 }

 .stat-card:hover {
     border-color: rgba(201, 168, 76, 0.4);
 }

 .stat-card--gold {
     background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.04));
     border-color: rgba(201, 168, 76, 0.3);
 }

 .stat-card::after {
     content: '';
     position: absolute;
     bottom: -30px;
     right: -30px;
     width: 100px;
     height: 100px;
     background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
 }

 .stat-number {
     font-family: "Cormorant Garamond", serif;
     font-size: 64px;
     font-weight: 700;
     color: var(--gold);
     line-height: 1;
     display: block;
 }

 .stat-unit {
     font-size: 10px;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--white-dim);
     display: block;
     margin: 6px 0 12px;
 }

 .stat-card>p {
     font-size: 13px;
     color: var(--white-dim);
     line-height: 1.7;
 }

 /* ── WHAT THEY DISCOVER ── */
 .discovery {
     padding: 110px 6rem;
     background: var(--bg-card);
     border-top: 1px solid rgba(201, 168, 76, 0.1);
 }

 .discovery-inner {
     max-width: 1060px;
     margin: 0 auto;
 }

 .discovery-header {
     text-align: center;
     margin-bottom: 70px;
 }

 .discovery-header h2 {
     font-family: "Cormorant Garamond", serif;
     font-size: 46px;
     font-weight: 700;
     color: var(--white);
     line-height: 1.2;
     margin-bottom: 16px;
 }

 .discovery-header h2 span {
     color: var(--gold);
     font-style: italic;
 }

 .discovery-header p {
     font-size: 14px;
     color: var(--white-dim);
     letter-spacing: 1px;
 }

 .discovery-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 2px;
     background: rgba(201, 168, 76, 0.06);
     border: 1px solid rgba(201, 168, 76, 0.1);
     margin-bottom: 60px;
 }

 .disc-item {
     background: var(--bg-dark);
     padding: 42px 38px;
     display: flex;
     gap: 24px;
     align-items: flex-start;
     transition: background 0.3s ease;
 }

 .disc-item:hover {
     background: #0c1121;
 }

 .disc-num {
     font-family: "Cormorant Garamond", serif;
     font-size: 48px;
     font-weight: 700;
     color: var(--gold);
     opacity: 0.25;
     line-height: 1;
     min-width: 42px;
 }

 .disc-content h4 {
     font-family: "Cormorant Garamond", serif;
     font-size: 22px;
     font-weight: 700;
     color: var(--white);
     margin-bottom: 10px;
 }

 .disc-content p {
     font-size: 14px;
     color: var(--white-dim);
     line-height: 1.8;
 }

 /* ── BOTTOM CTA ── */
 .bottom-cta {
     padding: 120px 6rem;
     background: var(--bg-deep);
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .bottom-cta-glow {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 700px;
     height: 400px;
     background: radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
     pointer-events: none;
 }

 .bottom-cta::before {
     content: '';
     position: absolute;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 2px;
     background: var(--gold);
 }

 .bottom-cta-inner {
     position: relative;
     z-index: 1;
     max-width: 680px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 28px;
 }

 .bottom-cta-inner h2 {
     font-family: "Cormorant Garamond", serif;
     font-size: 54px;
     font-weight: 700;
     line-height: 1.15;
     color: var(--white);
 }

 .bottom-cta-inner h2 em {
     color: var(--gold);
     font-style: italic;
     display: block;
 }

 .bottom-cta-inner p {
     font-size: 15px;
     color: var(--white-dim);
     line-height: 1.8;
     max-width: 500px;
 }

 .pro-tip {
     width: 100%;
     background: rgba(201, 168, 76, 0.05);
     border: 1px solid rgba(201, 168, 76, 0.15);
     padding: 24px 32px;
 }

 .pro-tip p {
     font-family: "Cormorant Garamond", serif;
     font-size: 19px;
     font-style: italic;
     color: var(--gold-light);
     line-height: 1.6;
 }

 .pro-tip strong {
     font-style: normal;
     color: var(--white);
 }

 .cta-lock {
     font-size: 11px;
     color: var(--white-dim);
     opacity: 0.55;
     letter-spacing: 0.5px;
 }

 /* ── FOOTER ── */
 footer {
     padding: 28px 6rem;
     background: #030508;
     border-top: 1px solid rgba(201, 168, 76, 0.1);
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 footer p {
     font-size: 11px;
     color: var(--white-dim);
     opacity: 0.5;
     letter-spacing: 0.5px;
 }

 .footer-logo {
     font-family: "Cormorant Garamond", serif;
     font-size: 16px;
     color: var(--gold);
     letter-spacing: 2px;
     opacity: 0.7;
 }

 /* ── ANIMATIONS ── */
 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(28px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* ── SCROLL REVEAL ── */
 .reveal {
     opacity: 0;
     transform: translateY(32px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .reveal-delay-1 {
     transition-delay: 0.1s;
 }

 .reveal-delay-2 {
     transition-delay: 0.2s;
 }

 .reveal-delay-3 {
     transition-delay: 0.3s;
 }

 .reveal-delay-4 {
     transition-delay: 0.4s;
 }

 /* ── RESPONSIVE ── */
 @media (max-width: 1024px) {
     nav {
         padding: 0 3rem;
     }

     .hero {
         padding: 110px 3rem 80px;
     }

     .hero h1 {
         font-size: 52px;
     }

     .trust-bar {
         padding: 20px 3rem;
         gap: 30px;
     }

     .story {
         padding: 80px 3rem;
     }

     .story-inner {
         gap: 50px;
     }

     .story-content h2 {
         font-size: 36px;
     }

     .discovery {
         padding: 80px 3rem;
     }

     .discovery-header h2 {
         font-size: 36px;
     }

     .bottom-cta {
         padding: 80px 3rem;
     }

     .bottom-cta-inner h2 {
         font-size: 40px;
     }

     footer {
         padding: 24px 3rem;
     }
 }

 @media (max-width: 768px) {
     nav {
         padding: 0 1.5rem;
     }

     .nav-trust {
         display: none;
     }

     .hero {
         padding: 100px 1.5rem 70px;
     }

     .hero h1 {
         font-size: 36px;
     }

     .hero-sub {
         font-size: 14px;
     }

     .trust-bar {
         padding: 18px 1.5rem;
         flex-wrap: wrap;
         gap: 16px;
     }

     .trust-divider {
         display: none;
     }

     .story {
         padding: 70px 1.5rem;
     }

     .story-inner {
         grid-template-columns: 1fr;
         gap: 50px;
     }

     .story-content h2 {
         font-size: 30px;
     }

     .story-stats {
         flex-direction: row;
         flex-wrap: wrap;
     }

     .stat-card {
         flex: 1;
         min-width: calc(50% - 10px);
     }

     .stat-number {
         font-size: 48px;
     }

     .discovery {
         padding: 70px 1.5rem;
     }

     .discovery-header h2 {
         font-size: 28px;
     }

     .discovery-grid {
         grid-template-columns: 1fr;
     }

     .disc-item {
         padding: 28px 24px;
     }

     .bottom-cta {
         padding: 80px 1.5rem;
     }

     .bottom-cta-inner h2 {
         font-size: 32px;
     }

     footer {
         padding: 24px 1.5rem;
         flex-direction: column;
         gap: 10px;
         text-align: center;
     }
 }