:root {
    --accent: #c9a96e;
    --accent-strong: #e1c58d;
    --bg: #07110f;
    --bg-soft: #0c1916;
    --container: 1180px;
    --green: #6ea88d;
    --line: rgba(221, 230, 220, .14);
    --muted: #aab9b1;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 22px 70px rgba(0, 0, 0, .32);
    --surface: #10211d;
    --surface-2: #152a25;
    --text: #f3f5ef;
}

[data-theme="light"] {
    --accent: #8a672d;
    --accent-strong: #6e4e1d;
    --bg: #f5f3eb;
    --bg-soft: #ece9df;
    --green: #356f57;
    --line: rgba(22, 40, 34, .14);
    --muted: #56645f;
    --shadow: 0 22px 60px rgba(45, 42, 31, .12);
    --surface: #fffdf8;
    --surface-2: #e8e6dc;
    --text: #17211e;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at 10% 0%, rgba(110, 168, 141, .12), transparent 34rem), radial-gradient(circle at 95% 15%, rgba(201, 169, 110, .10), transparent 30rem), var(--bg);
    color: var(--text);
    font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

::selection {
    background: var(--accent);
    color: #121812;
}

.skip-link {
    background: var(--accent);
    border-radius: 8px;
    color: #111;
    font-weight: 800;
    left: 18px;
    padding: .7rem 1rem;
    position: fixed;
    text-decoration: none;
    top: -70px;
    z-index: 2000;
}

.skip-link:focus {
    top: 18px;
}

.container {
    margin-inline: auto;
    width: min(calc(100% - 40px), var(--container));
}

.section {
    padding: 96px 0;
}

.section-compact {
    padding: 68px 0;
}

.section-tint {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .025), transparent);
}

.eyebrow {
    align-items: center;
    color: var(--accent-strong);
    display: inline-flex;
    font-size: .76rem;
    font-weight: 850;
    gap: .55rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    background: currentColor;
    content: "";
    height: 1px;
    width: 26px;
}

h1,
h2,
h3,
h4 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -.035em;
    line-height: 1.08;
    margin: 0 0 .8rem;
}

h1 {
    font-size: clamp(3.15rem, 8vw, 6.75rem);
    max-width: 900px;
}

h2 {
    font-size: clamp(2.1rem, 5vw, 4rem);
}

h3 {
    font-size: 1.52rem;
}

p {
    margin: 0 0 1rem;
}

.lede {
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    max-width: 800px;
}

.muted {
    color: var(--muted);
}

.small {
    font-size: .88rem;
}

.site-header {
    backdrop-filter: blur(18px);
    background: rgba(7, 17, 15, .74);
    border-bottom: 1px solid transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
}

[data-theme="light"] .site-header {
    background: rgba(245, 243, 235, .82);
}

.site-header.scrolled {
    border-color: var(--line);
}

.header-inner {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: auto 1fr auto;
    min-height: 78px;
}

.brand {
    align-items: center;
    display: inline-flex;
    font-size: 1.25rem;
    font-weight: 900;
    gap: .72rem;
    letter-spacing: -.035em;
    text-decoration: none;
}

.brand img {
    height: 60px;
    width: 60px;
}

.brand b {
    color: var(--accent);
}

.site-nav {
    justify-self: center;
}

.site-nav ul {
    align-items: center;
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    border-radius: 8px;
    color: var(--muted);
    display: block;
    font-size: .92rem;
    font-weight: 700;
    padding: .55rem .7rem;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, .055);
    color: var(--text);
}

.header-actions {
    align-items: center;
    display: flex;
    gap: 10px;
}

.icon-btn {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    height: 42px;
    width: 42px;
}

.menu-btn {
    display: none;
}

.btn {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-weight: 850;
    gap: .55rem;
    justify-content: center;
    min-height: 48px;
    padding: .75rem 1.1rem;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #141814;
}

.btn-primary:hover {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
}

.btn-ghost {
    background: rgba(255, 255, 255, .03);
}

.btn-small {
    font-size: .9rem;
    min-height: 42px;
    padding: .55rem .9rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.6rem;
}

.hero {
    align-items: center;
    display: grid;
    min-height: calc(100vh - 78px);
    overflow: hidden;
    padding: 70px 0 90px;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 58px;
    grid-template-columns: 1.05fr .95fr;
}

.hero h1 span {
    color: var(--accent);
}

.hero-copy .lede {
    margin-top: 1.4rem;
}

.hero-visual {
    min-height: 580px;
    position: relative;
}

.hero-visual::before {
    border: 1px solid var(--line);
    border-radius: 50%;
    content: "";
    inset: 8% 2% 5% 10%;
    position: absolute;
    transform: rotate(-8deg);
}

.hero-visual img {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .32));
    height: 100%;
    object-fit: contain;
    position: relative;
    width: 100%;
}

.float-note {
    backdrop-filter: blur(14px);
    background: rgba(16, 33, 29, .86);
    border: 1px solid var(--line);
    border-radius: 14px;
    bottom: 8%;
    box-shadow: var(--shadow);
    max-width: 250px;
    padding: 16px 18px;
    position: absolute;
    right: 0;
}

[data-theme="light"] .float-note {
    background: rgba(255, 253, 248, .88);
}

.float-note strong {
    color: var(--accent-strong);
    display: block;
    font-family: Georgia, serif;
    font-size: 1.22rem;
}

.trust-strip {
    border-block: 1px solid var(--line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    border-right: 1px solid var(--line);
    min-height: 110px;
    padding: 26px 22px;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    color: var(--accent-strong);
    display: block;
    font-size: 1.05rem;
}

.trust-item span {
    color: var(--muted);
    font-size: .9rem;
}

.section-head {
    align-items: end;
    display: flex;
    gap: 34px;
    justify-content: space-between;
    margin-bottom: 36px;
}

.section-head>* {
    max-width: 740px;
}

.split {
    align-items: center;
    display: grid;
    gap: 58px;
    grid-template-columns: 1fr 1fr;
}

.panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(24px, 4vw, 42px);
}

.card-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}

.card:hover {
    border-color: rgba(201, 169, 110, .48);
}

.card-number {
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--accent-strong);
    display: inline-grid;
    font-size: .82rem;
    font-weight: 900;
    height: 38px;
    margin-bottom: 24px;
    place-items: center;
    width: 38px;
}

.card p {
    color: var(--muted);
}

.card-link {
    color: var(--accent-strong);
    font-weight: 800;
    text-decoration: none;
}

.card-link:hover {
    text-decoration: underline;
}

.list-check {
    display: grid;
    gap: 13px;
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.list-check li {
    color: var(--muted);
    padding-left: 28px;
    position: relative;
}

.list-check li::before {
    color: var(--accent);
    content: "✦";
    left: 0;
    position: absolute;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
}

.tag-list li {
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: .83rem;
    padding: .42rem .7rem;
}

.workflow {
    counter-reset: workflow;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(5, 1fr);
}

.workflow-step {
    border-top: 1px solid var(--line);
    padding: 28px 20px;
    position: relative;
}

.workflow-step::before {
    color: var(--accent);
    content: "0" counter(workflow);
    counter-increment: workflow;
    display: block;
    font-weight: 900;
    margin-bottom: 34px;
}

.workflow-step:not(:last-child)::after {
    color: var(--muted);
    content: "→";
    position: absolute;
    right: -10px;
    top: 28px;
}

.workflow-step p {
    color: var(--muted);
    font-size: .92rem;
}

.statements {
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 1px;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.statement {
    background: var(--surface);
    padding: 34px;
}

.statement p {
    color: var(--muted);
}

.page-hero {
    border-bottom: 1px solid var(--line);
    padding: 110px 0 76px;
}

.page-hero h1 {
    font-size: clamp(3rem, 7vw, 5.8rem);
}

.breadcrumbs {
    color: var(--muted);
    display: flex;
    font-size: .85rem;
    gap: 10px;
    margin-bottom: 32px;
}

.breadcrumbs a {
    text-decoration: none;
}

.breadcrumbs span::before {
    content: "/";
    margin-right: 10px;
    opacity: .45;
}

.feature-row {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 42px;
    grid-template-columns: .8fr 1.2fr;
    padding: 42px 0;
}

.feature-row:last-child {
    border-bottom: 1px solid var(--line);
}

.feature-row p {
    color: var(--muted);
}

.notice {
    background: rgba(201, 169, 110, .075);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 28px;
}

.cta-band {
    align-items: center;
    background: linear-gradient(120deg, rgba(110, 168, 141, .12), rgba(201, 169, 110, .12));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr auto;
    padding: clamp(30px, 5vw, 56px);
}

.cta-band h2 {
    max-width: 760px;
}

.accordion {
    border-top: 1px solid var(--line);
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-button {
    background: transparent;
    border: 0;
    color: var(--text);
    cursor: pointer;
    display: flex;
    font-weight: 850;
    gap: 20px;
    justify-content: space-between;
    padding: 22px 0;
    text-align: left;
    width: 100%;
}

.accordion-button span:last-child {
    color: var(--accent);
    font-size: 1.35rem;
}

.accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.accordion-panel>div {
    overflow: hidden;
}

.accordion-item.open .accordion-panel {
    grid-template-rows: 1fr;
}

.accordion-panel p {
    color: var(--muted);
    max-width: 820px;
    padding: 0 0 22px;
}

.contact-card {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr auto;
    padding: clamp(28px, 6vw, 64px);
}

.email-display {
    color: var(--accent-strong);
    display: inline-block;
    font-family: Georgia, serif;
    font-size: clamp(1.25rem, 4vw, 2.4rem);
    overflow-wrap: anywhere;
    text-decoration: none;
}

.email-display:hover {
    text-decoration: underline;
}

.noscript-email {
    color: var(--accent-strong);
}

.site-footer {
    border-top: 1px solid var(--line);
    margin-top: 70px;
    padding: 70px 0 24px;
}

.footer-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
}

.footer-grid h4 {
    font-family: inherit;
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-grid li {
    margin: .5rem 0;
}

.footer-grid a {
    color: var(--muted);
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--text);
}

.footer-copy {
    color: var(--muted);
    max-width: 420px;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    color: var(--muted);
    display: flex;
    font-size: .82rem;
    gap: 20px;
    justify-content: space-between;
    margin-top: 56px;
    padding-top: 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: auto auto 1fr;
    }
    .menu-btn {
        display: inline-grid;
        place-items: center;
    }
    .site-nav {
        background: var(--surface);
        border: 1px solid var(--line);
        /* border-radius: var(--radius); */
        box-shadow: var(--shadow);
        inset: 78px 20px auto;
        opacity: 0;
        padding: 18px;
        position: fixed;
        transform: translateY(-10px);
        transition: .2s ease;
        visibility: hidden;
        width: 100%;
    }
    .site-nav.open {
        opacity: 1;
        transform: none;
        visibility: visible;
    }
    .site-nav ul {
        display: grid;
    }
    .site-nav a {
        padding: .8rem;
    }
    .header-actions {
        justify-self: end;
    }
    .header-email {
        display: none;
    }
    .hero-grid,
    .split {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: auto;
    }
    .hero-visual {
        min-height: 460px;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-item:nth-child(2) {
        border-right: 0;
    }
    .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }
    .card-grid {
        grid-template-columns: 1fr 1fr;
    }
    .workflow {
        grid-template-columns: 1fr;
    }
    .workflow-step:not(:last-child)::after {
        display: none;
    }
    .feature-row {
        gap: 8px;
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }
    .section {
        padding: 72px 0;
    }
    .header-inner {
        gap: 10px;
    }
    .brand span {
        display: none;
    }
    .hero {
        padding-top: 44px;
    }
    .hero-visual {
        min-height: 330px;
    }
    .float-note {
        margin-left: auto;
        margin-top: -20px;
        position: relative;
    }
    .trust-grid,
    .card-grid,
    .statements {
        grid-template-columns: 1fr;
    }
    .trust-item {
        border-bottom: 1px solid var(--line);
        border-right: 0;
    }
    .section-head,
    .cta-band,
    .contact-card,
    .footer-bottom {
        display: block;
    }
    .cta-band .actions,
    .contact-card .actions {
        margin-top: 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom>* {
        display: block;
        margin-bottom: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}