@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
    --bg:#f1efe9;
    --surface:#fbf8f2;
    --surface-strong:#ffffff;
    --ink:#161616;
    --ink-2:#3c3c3c;
    --muted:#676767;
    --line:rgba(22,22,22,.12);
    --hairline:rgba(22,22,22,.09);
    --shadow:0 18px 54px rgba(18,28,22,.06);
    --shadow-soft:0 10px 28px rgba(18,28,22,.045);
    --radius-xl:22px;
    --radius-lg:16px;
    --radius-md:10px;
    --pill:999px;
    --accent:#1d5f44;
    --accent-2:#124030;
    --accent-warm:#c4a16c;
    --accent-soft:rgba(29,95,68,.08);
    --sand:rgba(227,218,204,.46);
    --hero-glow:rgba(29,95,68,.10);
    --hero-warm:rgba(196,161,108,.12);
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif !important;
    color:var(--ink) !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.78)),
        radial-gradient(980px 560px at 100% -10%, rgba(29,95,68,.06), transparent),
        radial-gradient(760px 460px at 0 0, rgba(196,161,108,.09), transparent),
        radial-gradient(540px 340px at 50% 24%, rgba(29,95,68,.035), transparent),
        var(--bg) !important;
}

h1,h2,h3,
.price,
.proof-card strong,
.hero-card .price,
.pricing-card .price{
    font-family:'Manrope',-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif !important;
    letter-spacing:-.045em;
    font-weight:800 !important;
}

h1{line-height:.96}
h2{line-height:1.02}
h3{line-height:1.08}

a{
    color:#0f5a3b;
}

.container{
    max-width:1200px;
}

.topbar,
.site-header{
    position:sticky;
    top:0;
    z-index:60;
    border-bottom:1px solid var(--hairline) !important;
    background:rgba(251,248,242,.82) !important;
    box-shadow:0 10px 30px rgba(20,25,22,.03);
    backdrop-filter:saturate(180%) blur(18px);
}

.topbar-content,
.shell{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:.9rem 0;
}

.logo,
.brand{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
}

.logo img,
.brand img{
    height:84px !important;
    width:auto;
    display:block;
}

.main-nav,
.site-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    flex-wrap:wrap;
    gap:10px 16px;
}

.main-nav a,
.site-nav a{
    color:var(--ink) !important;
    font-weight:600 !important;
    opacity:.9;
    letter-spacing:-.015em;
}

.main-nav a:hover,
.site-nav a:hover{
    opacity:1;
    text-decoration:none;
}

.nav-cta,
.nav-pill{
    padding:11px 15px !important;
    border-radius:10px !important;
    border:1px solid rgba(29,95,68,.18) !important;
    background:var(--surface-strong) !important;
    color:var(--accent) !important;
    opacity:1 !important;
    box-shadow:var(--shadow-soft) !important;
}

.nav-pill.secondary{
    border-color:var(--hairline) !important;
    color:var(--ink) !important;
}

.hero,
.apple-hero,
.hub-hero,
.page-hero{
    border-bottom:1px solid var(--hairline);
    background:linear-gradient(180deg,rgba(255,255,255,.94),rgba(255,255,255,.70)) !important;
}

.hero,
.apple-hero{
    padding:68px 0 40px !important;
}

.page-hero,
.hub-hero{
    padding:88px 0 58px !important;
}

.section{
    padding:72px 0;
}

.section.alt{
    background:linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.72));
    border-top:1px solid var(--hairline);
    border-bottom:1px solid var(--hairline);
}

.hero-grid,
.hub-hero-grid{
    display:grid;
    grid-template-columns:1.12fr .88fr;
    gap:24px;
    align-items:stretch;
}

.hero-copy,
.hero-side,
.hero-card,
.hero-panel,
.hero-summary,
.info-card,
.card,
.agenda-card,
.hub-card,
.highlight-card,
.offer-card,
.trust-card,
.pricing-box,
.pricing-card,
.feature,
.deliverable,
.slot,
.outline,
.ribbon,
.form-shell,
.apple-form,
.price-card,
.contact-item{
    background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,250,245,.96)) !important;
    border:1px solid var(--hairline) !important;
    border-radius:var(--radius-lg) !important;
    box-shadow:var(--shadow) !important;
}

.hero-copy,
.hero-side,
.hero-panel,
.hero-summary,
.form-shell,
.apple-form,
.pricing-box,
.pricing-card,
.price-card{
    padding:28px !important;
}

.hero-copy,
.hub-copy{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.booking-stack{
    display:grid;
    gap:16px;
}

.booking-grid{
    display:grid;
    grid-template-columns:.82fr 1.18fr;
    gap:18px;
    align-items:start;
}

.booking-embed{
    padding:0 !important;
    overflow:hidden;
}

.booking-embed iframe{
    display:block;
    width:100%;
    min-height:760px;
    border:0;
    border-radius:var(--radius-lg);
    background:#fff;
}

.notice-inline{
    font-size:14px;
    color:var(--muted);
    line-height:1.6;
}

@media(max-width:960px){
    .booking-grid{
        grid-template-columns:1fr;
    }

    .booking-embed iframe{
        min-height:680px;
    }
}

.hero-summary ul,
.hero-panel ul,
.info-card ul{
    margin:0 0 0 18px;
}

.eyebrow,
.kicker,
.tag,
.badge,
.pill,
.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px !important;
    border-radius:8px !important;
    border:1px solid rgba(29,95,68,.14) !important;
    background:rgba(29,95,68,.05) !important;
    color:#154331 !important;
    font-size:11px !important;
    font-weight:800 !important;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.pill,
.tag{
    background:rgba(196,161,108,.10) !important;
    border-color:rgba(196,161,108,.24) !important;
    color:#6d5332 !important;
}

.lead,
.subtitle,
.subtle,
.muted,
.small{
    color:var(--muted) !important;
}

.lead{
    font-size:18px !important;
    line-height:1.7 !important;
    color:var(--ink-2) !important;
    font-weight:500;
}

.subtitle{
    line-height:1.6 !important;
}

.subtle{
    line-height:1.6 !important;
}

.cta-row,
.btn-row{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.btn,
.apple-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 22px !important;
    border-radius:10px !important;
    background:linear-gradient(135deg,var(--accent),var(--accent-2)) !important;
    color:#fff !important;
    font-weight:800 !important;
    border:1px solid transparent !important;
    box-shadow:0 12px 28px rgba(29,95,68,.14) !important;
}

.btn:hover,
.apple-btn:hover{
    text-decoration:none;
    transform:translateY(-1px);
}

.btn.secondary,
.btn-outline,
.ghost,
.choice-btn{
    background:var(--surface-strong) !important;
    color:var(--ink) !important;
    border:1px solid var(--hairline) !important;
    box-shadow:none !important;
}

.btn-outline{
    border-color:rgba(31,103,73,.18) !important;
    color:var(--accent) !important;
}

.metric-strip,
.process-grid,
.faq-grid,
.product-grid,
.resource-grid,
.split-grid,
.hub-grid{
    display:grid;
    gap:18px;
}

.product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.product-grid.four{grid-template-columns:repeat(4,minmax(0,1fr))}
.process-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.metric-strip{grid-template-columns:repeat(4,minmax(0,1fr))}
.faq-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.resource-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.split-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.hub-grid{grid-template-columns:repeat(3,minmax(0,1fr))}

.product-card,
.metric-card,
.process-card,
.faq-card,
.note-card{
    background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,248,243,.96));
    border:1px solid var(--hairline);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow);
    padding:26px;
}

.info-card,
.hub-card{
    background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,245,238,.95));
    border:1px solid var(--hairline);
    border-radius:var(--radius-xl);
    box-shadow:var(--shadow);
    padding:28px;
}

.product-card h3,
.metric-card strong,
.process-card strong,
.faq-card h3{
    display:block;
    margin-bottom:10px;
}

.metric-card strong{
    font-size:30px;
    color:var(--accent);
    letter-spacing:-.04em;
}

.metric-card p,
.process-card p,
.faq-card p,
.product-card p,
.note-card p{
    color:var(--ink-2);
}

.product-card,
.metric-card,
.process-card,
.faq-card,
.info-card,
.hub-card,
.hero-panel,
.hero-summary,
.cta-band{
    position:relative;
    overflow:hidden;
}

.product-card::before,
.metric-card::before,
.process-card::before,
.faq-card::before,
.info-card::before,
.hub-card::before,
.hero-panel::before,
.hero-summary::before,
.cta-band::before{
    content:"";
    position:absolute;
    inset:0 auto auto 0;
    width:100%;
    height:1px;
    background:linear-gradient(90deg, rgba(196,161,108,.42), rgba(29,95,68,.18), transparent 78%);
    pointer-events:none;
}

.product-card,
.metric-card,
.process-card,
.faq-card,
.info-card,
.hub-card,
.showcase-card,
.showcase-metric{
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover,
.metric-card:hover,
.process-card:hover,
.faq-card:hover,
.info-card:hover,
.hub-card:hover,
.showcase-card:hover,
.showcase-metric:hover{
    transform:translateY(-2px);
    box-shadow:0 20px 44px rgba(18,28,22,.08);
    border-color:rgba(29,95,68,.16);
}

.inline-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:14px;
}

.inline-list span{
    display:inline-flex;
    padding:8px 10px;
    border:1px solid var(--hairline);
    border-radius:8px;
    background:rgba(255,255,255,.9);
    font-size:13px;
    color:var(--muted);
    font-weight:700;
}

.section-intro{
    max-width:760px;
    margin-bottom:18px;
}

.section-intro p{
    color:var(--ink-2);
}

.stack{
    display:grid;
    gap:16px;
}

.link-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:14px;
}

.link-list a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    border-radius:999px;
    border:1px solid rgba(29,95,68,.14);
    background:rgba(255,255,255,.96);
    color:var(--accent);
    font-weight:700;
    text-decoration:none;
    box-shadow:var(--shadow-soft);
}

.link-list a:hover{
    border-color:rgba(29,95,68,.24);
    transform:translateY(-1px);
}

.link-list a::after{
    content:"→";
    font-size:14px;
    line-height:1;
}

.editorial-card{
    background:
        radial-gradient(240px 160px at 100% 0, rgba(196,161,108,.12), transparent 72%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,242,234,.97));
    display:grid;
    gap:14px;
    padding:32px 34px 30px;
}

.editorial-card-muted{
    background:
        radial-gradient(220px 160px at 100% 0, rgba(29,95,68,.08), transparent 72%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,246,242,.97));
}

.editorial-card .kicker{
    width:fit-content;
    margin-bottom:0;
}

.editorial-card h2{
    max-width:14ch;
    margin:0;
}

.editorial-card p{
    max-width:34ch;
    font-size:17px;
    line-height:1.58;
    margin:0;
}

.editorial-card .link-list{
    margin-top:10px;
    gap:12px;
}

@media(max-width:960px){
    .editorial-card{
        padding:30px 28px 28px;
    }

    .editorial-card h2,
    .editorial-card p{
        max-width:none;
    }
}

.cta-band{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    padding:30px;
    border:1px solid var(--hairline);
    border-radius:var(--radius-lg);
    background:linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,244,237,.96));
    box-shadow:var(--shadow);
}

.landing-hero{
    position:relative;
    overflow:hidden;
}

.landing-hero::before{
    content:"";
    position:absolute;
    inset:auto -12% 16% auto;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(circle, var(--hero-glow), transparent 68%);
    filter:blur(6px);
    pointer-events:none;
}

.landing-hero::after{
    content:"";
    position:absolute;
    inset:-8% auto auto -10%;
    width:360px;
    height:360px;
    border-radius:50%;
    background:radial-gradient(circle, var(--hero-warm), transparent 70%);
    pointer-events:none;
}

.landing-hero-grid{
    grid-template-columns:1.04fr .96fr;
    gap:28px;
    align-items:center;
}

.hero-showcase{
    display:grid;
    gap:16px;
}

.showcase-card{
    background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,245,238,.96));
    border:1px solid var(--hairline);
    border-radius:var(--radius-xl);
    box-shadow:var(--shadow);
    padding:24px;
}

.showcase-card.primary{
    padding:30px;
}

.showcase-card h3,
.showcase-card strong{
    display:block;
    margin-bottom:8px;
}

.showcase-card p{
    color:var(--ink-2);
    line-height:1.6;
}

.showcase-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:14px;
}

.showcase-meta span{
    display:inline-flex;
    align-items:center;
    padding:8px 11px;
    border-radius:999px;
    border:1px solid var(--hairline);
    background:rgba(255,255,255,.92);
    color:var(--muted);
    font-size:13px;
    font-weight:700;
}

.showcase-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.showcase-metric{
    padding:18px;
    border-radius:14px;
    border:1px solid var(--hairline);
    background:rgba(255,255,255,.9);
}

.showcase-metric strong{
    display:block;
    margin-bottom:6px;
    color:var(--accent);
    font-size:28px;
    letter-spacing:-.05em;
}

.landing-product-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
    align-items:start;
}

.landing-product-grid .product-card{
    min-height:0;
    align-self:start;
}

.motion-enter{
    opacity:0;
    transform:translateY(18px);
    animation:fadeUp .9s cubic-bezier(.2,.7,.2,1) forwards;
}

.motion-enter.delay-1{animation-delay:.05s}
.motion-enter.delay-2{animation-delay:.18s}

.motion-float{
    animation:floatSlow 7s ease-in-out infinite;
}

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

@keyframes floatSlow{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-6px)}
}

@media (prefers-reduced-motion: reduce){
    .motion-enter,
    .motion-float{
        animation:none !important;
        opacity:1 !important;
        transform:none !important;
    }
}

.footer-links{
    display:flex;
    flex-wrap:wrap;
    gap:12px 16px;
}

.faq-card ul,
.process-card ul,
.product-card ul,
.note-card ul{
    margin:10px 0 0 18px;
    color:var(--ink-2);
}

.faq-card li + li,
.process-card li + li,
.product-card li + li,
.note-card li + li{
    margin-top:8px;
}

.apple-cards,
.cards,
.features,
.deliverables,
.contact-list{
    gap:18px !important;
}

.breadcrumb,
.apple-breadcrumb{
    color:var(--muted);
}

.breadcrumb a,
.apple-breadcrumb a{
    color:var(--accent);
    font-weight:700;
}

.agenda-time,
.price-tag,
.status{
    color:var(--accent) !important;
    font-weight:800 !important;
}

.price,
.price-tag,
.hero-card .price,
.pricing-card .price{
    font-size:clamp(28px,4vw,42px) !important;
}

input,
select,
textarea{
    width:100%;
    padding:12px 14px;
    border-radius:8px;
    border:1px solid var(--hairline);
    background:rgba(255,255,255,.94);
    color:var(--ink);
    font:inherit;
    font-family:'Manrope',-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
    border-color:rgba(31,103,73,.45);
    box-shadow:0 0 0 3px rgba(31,103,73,.10);
}

.footer,
.apple-footer,
.site-footer{
    margin-top:42px;
    border-top:1px solid var(--hairline) !important;
    background:rgba(252,251,248,.96) !important;
    color:var(--muted) !important;
}

.card p,
.card li,
.info-card p,
.info-card li,
.hub-card p,
.highlight-card p,
.offer-card p,
.trust-card p,
.proof-card p,
.section p,
.section li{
    color:var(--ink-2) !important;
}

.hero-image img,
.lecturer-photo img,
.preview,
.video-wrap video{
    border-radius:10px !important;
}

.footer-content,
.footer-grid{
    display:flex;
    gap:24px;
    justify-content:space-between;
    padding:20px 0;
}

.footer a,
.apple-footer a,
.site-footer a{
    color:var(--accent) !important;
}

@media(max-width:960px){
    .hero-grid,
    .hub-hero-grid,
    .product-grid,
    .product-grid.four,
    .process-grid,
    .metric-strip,
    .faq-grid,
    .resource-grid,
    .split-grid,
    .hub-grid,
    .landing-product-grid,
    .landing-hero-grid,
    .showcase-grid,
    .grid-2,
    .grid-3,
    .two-col{
        grid-template-columns:1fr !important;
    }

    .cta-band,
    .footer-content,
    .footer-grid{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:700px){
    .topbar-content,
    .shell{
        flex-direction:column;
        align-items:flex-start;
    }

    .logo img,
    .brand img{
        height:70px !important;
    }

    .btn,
    .apple-btn{
        width:100%;
    }
}
