:root {
    --bone: #f6f1e6;
    --bone-2: #efe6d4;
    --paper: #fffaf1;
    --cream: #fbf6ec;
    --line: #e2d4c0;
    --line-strong: #cbb89d;
    --ink: #2a1b12;
    --text: #3d2a1c;
    --text-2: #5c4332;
    --muted: #7d6554;
    --muted-2: #a08b78;
    --accent: #6b3f24;
    --accent-hover: #542f19;
    --gold: #b08a4a;
    --gold-soft: #d4b57a;
    --ok: #4f5d36;
    --ok-bg: #e8eedc;
    --warn: #9a6b1f;
    --warn-bg: #f6ebcf;
    --bad: #8a3324;
    --bad-bg: #f6e2dc;
    --shadow: 0 18px 50px rgba(61, 42, 28, .08);
    --shadow-sm: 0 8px 24px rgba(61, 42, 28, .06);
    --radius: 18px;
    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
    --bg: var(--bone);
    --bg2: var(--bone-2);
    --card: var(--paper);
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; background: var(--bone); }
body {
    font-family: var(--sans);
    background: var(--bone);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }
img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, .serif { font-family: var(--serif); letter-spacing: -.02em; color: var(--ink); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 22px; }

/* Brand */
.brand-mark {
    display: inline-flex;
    flex-direction: column;
    width: max-content;
    max-width: 100%;
    text-decoration: none;
    color: inherit;
    line-height: 1;
    --brand-name: 1.85rem;
    --brand-rule: var(--gold);
}
.brand-mark__name {
    font-family: var(--serif);
    font-weight: 700;
    font-size: var(--brand-name);
    letter-spacing: .015em;
    line-height: .92;
    color: var(--ink);
    padding-bottom: .18em;
    margin-bottom: .22em;
    border-bottom: 1.5px solid var(--brand-rule);
}
.brand-mark__name span { color: var(--accent); }
.brand-mark__tag {
    display: flex;
    flex-direction: column;
    gap: .14em;
    color: var(--text-2);
}
.brand-mark__line {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: max(9px, calc(var(--brand-name) * .28));
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.05;
}
.brand-mark__line span { display: block; }
.brand-mark--xs { --brand-name: 1.2rem; }
.brand-mark--sm { --brand-name: 1.42rem; }
.brand-mark--md { --brand-name: 1.85rem; }
.brand-mark--lg { --brand-name: 2.75rem; }
.brand-mark--xl { --brand-name: 3.55rem; }
.brand-mark--invert { --brand-rule: rgba(255,250,241,.35); }
.brand-mark--invert .brand-mark__name,
.brand-mark--invert .brand-mark__name span { color: var(--paper); }
.brand-mark--invert .brand-mark__tag { color: rgba(255,250,241,.78); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 12px;
    font-weight: 650;
    font-size: 15px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(180deg, #7a4a2c, var(--accent));
    color: #fffaf1;
    box-shadow: 0 10px 24px rgba(107, 63, 36, .22);
}
.btn-primary:hover { background: var(--accent-hover); color: #fffaf1; }
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--paper); color: var(--ink); }
.btn-danger { background: var(--bad); color: #fff; }
.btn-sm { padding: 8px 14px; font-size: 13.5px; border-radius: 10px; }
.btn-block { width: 100%; }

/* Forms */
label, .field-label {
    display: block;
    font-size: 13.5px;
    font-weight: 650;
    margin: 14px 0 6px;
    color: var(--text-2);
}
input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]),
select, textarea, .field {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--paper);
    color: var(--text);
    transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus, .field:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(176, 138, 74, .16);
}
.field-help, .field-error { font-size: 13px; margin-top: 5px; }
.field-error, .text-red-600 { color: var(--bad); }
.text-green-600 { color: var(--ok); }

/* Surfaces */
.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.tag {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    background: #f0e6d4;
    color: var(--accent);
}
.tag.ok { background: var(--ok-bg); color: var(--ok); }
.tag.warn { background: var(--warn-bg); color: var(--warn); }
.tag.bad { background: var(--bad-bg); color: var(--bad); }
.flash { padding: 13px 18px; border-radius: 12px; margin-bottom: 18px; font-size: 14px; font-weight: 550; }
.flash.success { background: var(--ok-bg); color: var(--ok); border: 1px solid #c9d6b0; }
.flash.error { background: var(--bad-bg); color: var(--bad); border: 1px solid #e8b8ae; }
.flash.warning { background: var(--warn-bg); color: var(--warn); border: 1px solid #e6d19a; }

/* Public header */
header.site {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(246, 241, 230, .78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
header.site.is-scrolled {
    background: rgba(251, 246, 236, .94);
    border-bottom-color: var(--line);
    box-shadow: 0 8px 28px rgba(61, 42, 28, .06);
}
header.site .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 18px;
}
nav.site { display: flex; gap: 16px; align-items: center; font-size: 14.5px; }
nav.site a { color: var(--text-2); font-weight: 550; }
nav.site a.nav-current:not(.nav-home) { color: var(--ink); font-weight: 700; }
nav.site a:hover { color: var(--ink); }
nav.site a.nav-home {
    padding: 8px 14px;
    border-radius: 10px;
    background: var(--accent-hover);
    color: #fffaf1;
    box-shadow: 0 6px 16px rgba(84, 47, 25, .18);
}
nav.site a.nav-home:hover {
    background: var(--accent);
    color: #fffaf1;
}
nav.site a.btn-primary,
nav.site a.btn-primary:hover {
    color: #fffaf1;
}
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
}
.lang-switch select {
    width: auto;
    background: var(--paper);
    color: var(--text-2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 13px;
}

/* Hero */
.hero {
    padding: 72px 0 84px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-orbs, .hero-ornament {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    animation: float 9s ease-in-out infinite;
}
.hero-orb-a {
    width: 420px; height: 420px; top: -120px; left: -80px;
    background: radial-gradient(circle, rgba(176,138,74,.22), transparent 68%);
}
.hero-orb-b {
    width: 360px; height: 360px; right: -60px; bottom: -80px;
    background: radial-gradient(circle, rgba(107,63,36,.12), transparent 70%);
    animation-delay: -3s;
}
.hero-ornament svg { width: min(920px, 92vw); margin: 20px auto 0; opacity: .18; }
.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 99px;
    margin: 28px 0 18px;
    background: rgba(176, 138, 74, .12);
    color: var(--accent);
    border: 1px solid rgba(176, 138, 74, .28);
}
.hero h1 {
    font-size: clamp(34px, 5.4vw, 62px);
    font-weight: 700;
    line-height: 1.08;
    max-width: 860px;
    margin: 0 auto 18px;
}
.hero p.lead {
    font-size: 18.5px;
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 22px;
}
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto 26px;
    display: flex;
    justify-content: center;
    gap: 10px 18px;
    flex-wrap: wrap;
    max-width: 860px;
}
.hero-benefits li {
    position: relative;
    padding-left: 22px;
    color: var(--text-2);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}
.hero-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ok);
    font-weight: 700;
}
.hero-note {
    margin-top: 16px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}
.hero-plan-preview {
    margin: 38px auto 0;
    max-width: 920px;
    padding: 22px 22px 18px;
    border-radius: 18px;
    background: rgba(255, 250, 241, .78);
    border: 1px solid rgba(176, 138, 74, .24);
    box-shadow: 0 18px 40px rgba(107, 63, 36, .06);
}
.hero-plan-preview__title {
    margin: 0 0 16px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}
.hero-plan-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    text-align: left;
}
.hero-plan-preview__item {
    padding: 16px 16px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
}
.hero-plan-preview__step {
    display: inline-block;
    margin-bottom: 8px;
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1;
    color: var(--gold);
}
.hero-plan-preview__item b {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}
.hero-plan-preview__item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}
.hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.trust-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,250,241,.72);
    border: 1px solid var(--line);
    color: var(--text-2);
    font-size: 13px;
    font-weight: 600;
}
.scroll-hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 42px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.scroll-hint i {
    width: 18px;
    height: 28px;
    border: 1px solid var(--line-strong);
    border-radius: 99px;
    position: relative;
}
.scroll-hint i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 6px;
    width: 3px;
    height: 7px;
    margin-left: -1.5px;
    border-radius: 99px;
    background: var(--gold);
    animation: scrollDot 1.6s ease-in-out infinite;
}

/* Sections */
section { padding: 78px 0; }
section.band { background: linear-gradient(180deg, var(--bone-2), var(--bone)); }
section h2 {
    font-size: clamp(28px, 3.8vw, 44px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}
section .sub {
    text-align: center;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 42px;
    font-size: 16.5px;
}
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.icon-seal {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: linear-gradient(180deg, #f3e7d0, #ead8b6);
    color: var(--accent);
    font-size: 20px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.step-card, .price-card, .trust-card, .audience-card {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.step-card:hover, .price-card:hover, .trust-card:hover, .audience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold-soft);
}
.step-num {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}
.alert-strip {
    background: linear-gradient(90deg, rgba(176,138,74,.14), rgba(246,241,230,.4));
    border: 1px solid rgba(176,138,74,.32);
    border-radius: 16px;
    padding: 22px 26px;
    display: flex;
    gap: 16px;
    align-items: center;
}
.alert-strip b { color: var(--accent); font-size: 1.05rem; }

/* Marketing journey */
.project-value { padding-top: 42px; }
.project-value__heading { max-width: 790px; margin: 0 auto 34px; text-align: center; }
.project-value__heading .eyebrow,
.example-section__eyebrow {
    display: block;
    margin-bottom: 10px;
    text-align: center;
}
.project-value__heading .sub { margin-bottom: 0; }
.scope-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}
.scope-card { padding: 28px; }
.scope-card--free { background: var(--paper); }
.scope-card--plan {
    border-color: rgba(176,138,74,.58);
    background: rgba(244,234,212,.56);
}
.scope-card__eyebrow,
.journey-step__kicker,
.example-roadmap__label {
    display: inline-block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.scope-card h3 { margin: 10px 0 8px; font-size: 1.42rem; }
.scope-card p { color: var(--muted); font-size: 15px; line-height: 1.55; }
.scope-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}
.scope-list li {
    position: relative;
    padding: 7px 0 7px 24px;
    color: var(--text-2);
    font-size: 14px;
}
.scope-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ok);
    font-weight: 750;
}
.journey-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    max-width: 1180px;
    margin: 0 auto;
}
.journey-step {
    min-height: 238px;
    padding: 20px 17px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
}
.journey-step--paid {
    border-color: rgba(176,138,74,.42);
    background: rgba(244,234,212,.42);
}
.journey-step__number {
    display: block;
    margin-bottom: 15px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.journey-step__kicker { margin-bottom: 8px; }
.journey-step h3 { margin: 0 0 8px; font-size: 1.08rem; line-height: 1.25; }
.journey-step p { color: var(--muted); font-size: 13.5px; line-height: 1.52; }
.example-section { overflow: hidden; }
.example-shell {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    max-width: 1050px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: var(--paper);
}
.example-summary {
    padding: 30px;
    background: var(--cream);
    border-right: 1px solid var(--line);
}
.example-summary__top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}
.example-summary__label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
}
.example-summary h3 { margin-bottom: 10px; font-size: 1.65rem; line-height: 1.16; }
.example-summary > p { color: var(--text-2); line-height: 1.55; }
.example-facts {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}
.example-facts div {
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255,255,255,.7);
}
.example-facts span,
.example-facts b {
    display: block;
}
.example-facts span { color: var(--muted); font-size: 11.5px; }
.example-facts b { margin-top: 3px; color: var(--ink); font-size: 13.5px; }
.example-roadmap { padding: 30px; }
.example-phases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}
.example-phase {
    display: flex;
    gap: 11px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255,250,241,.48);
}
.example-phase > span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
}
.example-phase b { display: block; color: var(--ink); font-size: 13.5px; line-height: 1.3; }
.example-phase p { margin-top: 4px; color: var(--muted); font-size: 12.5px; line-height: 1.42; }
.example-boundary {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 14px;
    max-width: 1050px;
    margin: 16px auto 0;
}
.example-boundary article {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255,250,241,.72);
}
.example-boundary__paid {
    border: 2px solid rgba(176,138,74,.58) !important;
    background: rgba(244,234,212,.68) !important;
}
.example-boundary span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.example-boundary h3 { margin: 7px 0 5px; font-size: 1.05rem; }
.example-boundary p { color: var(--muted); font-size: 13.5px; line-height: 1.48; }
.example-boundary__paid h3 { font-size: 1.26rem; line-height: 1.25; }
.example-plan-list {
    list-style: none;
    margin: 15px 0 0;
    padding: 0;
    display: grid;
    gap: 7px;
}
.example-plan-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text-2);
    font-size: 13px;
    line-height: 1.4;
}
.example-plan-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ok);
    font-weight: 750;
}
.example-note {
    max-width: 880px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.5;
    text-align: center;
}
.price { font-family: var(--serif); font-size: 46px; font-weight: 700; letter-spacing: -.03em; margin: 10px 0 2px; color: var(--ink); }
.price small { font-size: 16px; color: var(--muted); font-weight: 500; font-family: var(--sans); }
.price-card { display: flex; flex-direction: column; }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 24px; flex: 1; }
.price-card li { padding: 7px 0 7px 26px; position: relative; color: var(--muted); font-size: 14.5px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }
.price-card.featured {
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(176, 138, 74, .16);
    position: relative;
    padding-top: 32px;
}
.price-kicker { color: var(--muted); font-size: 13.5px; font-weight: 650; margin-bottom: 4px; }
.pricing-calc { margin: 8px 0 4px; }
.pricing-calc label { margin-top: 0; }
.pricing-calc input[type="range"] {
    width: 100%;
    accent-color: var(--accent);
    margin: 8px 0 4px;
}
.pricing-total { color: var(--text-2); font-size: 15px; margin: 4px 0 8px; }
.pricing-breakdown {
    min-height: 42px;
    margin: 4px 0 8px;
    color: var(--text-2);
    font-size: 13px;
    line-height: 1.45;
}
.pricing-breakdown b { color: var(--ink); }
.quote-card { max-width: 860px; margin-left: auto; margin-right: auto; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; margin-top: 16px; }
.quote-form__full { grid-column: 1 / -1; }
@media (max-width: 700px) { .quote-form { grid-template-columns: 1fr; } }
.price-card.featured::after {
    content: attr(data-ribbon);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--paper);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 99px;
}
.faq details {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 12px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: var(--gold-soft); box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 700; font-size: 16px; color: var(--ink); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--muted); margin-top: 10px; font-size: 15px; }
.cta-band {
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(176,138,74,.16), transparent 36%),
        linear-gradient(180deg, #5c3822, #3d2418);
    color: var(--paper);
    border-radius: 28px;
    padding: 56px 28px;
}
.cta-band h2, .cta-band p { color: #fffaf1; }
.cta-band p { opacity: .82; margin: 10px auto 24px; max-width: 560px; }
.cta-band .btn-primary { background: var(--paper); color: var(--accent); box-shadow: none; }
.cta-band .btn-ghost { color: #fffaf1; border-color: rgba(255,250,241,.3); }

footer.site {
    border-top: 1px solid var(--line);
    padding: 52px 0 36px;
    color: var(--muted);
    font-size: 14px;
    background: var(--cream);
}
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
footer.site a { color: var(--muted); display: block; padding: 3px 0; }
footer.site a:hover { color: var(--ink); }
footer.site b { color: var(--ink); display: block; margin-bottom: 8px; }

/* Auth */
.auth-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 36px 18px 48px;
    position: relative;
    overflow: hidden;
}
.auth-screen::before, .auth-screen::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}
.auth-screen::before {
    width: 420px; height: 420px; top: -120px; left: -80px;
    background: radial-gradient(circle, rgba(176,138,74,.2), transparent 68%);
    animation: float 10s ease-in-out infinite;
}
.auth-screen::after {
    width: 320px; height: 320px; right: -60px; bottom: -80px;
    background: radial-gradient(circle, rgba(107,63,36,.1), transparent 70%);
    animation: float 12s ease-in-out infinite reverse;
}
.auth-wrap { width: min(480px, 100%); }
.auth-wrap--wide { width: min(620px, 100%); }
.auth-card {
    margin-top: 22px;
    padding: 28px 26px 26px;
}
.auth-head { text-align: center; margin-bottom: 8px; }
.auth-head h1 { font-size: 1.8rem; margin: 18px 0 6px; }
.auth-head p { color: var(--muted); font-size: 14.5px; }
.auth-links { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.auth-links a { color: var(--text-2); font-size: 14px; }
.password-wrap { position: relative; }
.password-wrap .field { padding-right: 46px; }
.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--muted);
    padding: 4px;
    cursor: pointer;
    line-height: 0;
}
.password-toggle:hover, .password-toggle[aria-pressed="true"] { color: var(--ink); }
.captcha-box { margin-top: 8px; }
.captcha-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.captcha-row img {
    display: block;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f6f1e8;
    height: 56px;
    width: 168px;
}

/* Panel */
.shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
aside.sidebar {
    background: var(--cream);
    color: var(--text-2);
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: sticky;
    top: 0;
    height: 100vh;
    border-right: 1px solid var(--line);
}
aside.sidebar .brand-slot { padding: 2px 8px 18px; }
aside.sidebar .nav-group { display: flex; flex-direction: column; gap: 4px; flex: 1; }
aside.sidebar a, aside.sidebar .nav-link {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--text-2);
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
}
aside.sidebar a:hover { background: rgba(176,138,74,.1); color: var(--ink); }
aside.sidebar a.active { background: var(--accent); color: var(--paper); }
.nav-lock {
    margin-left: auto;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted-2);
}
aside.sidebar a.active .nav-lock { color: rgba(255,250,241,.72); }
main.panel { padding: 30px 34px 70px; max-width: 1100px; }
.page-head h1 { font-size: 2rem; margin-bottom: 6px; }
.sub { color: var(--muted); margin-bottom: 24px; font-size: 14.5px; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
.kpi {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.kpi:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.kpi b { display: block; font-family: var(--serif); font-size: 26px; letter-spacing: -.02em; color: var(--ink); }
.kpi span { color: var(--muted); font-size: 12.5px; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.q-section-title { font-family: var(--serif); font-size: 20px; margin: 22px 0 12px; color: var(--ink); }
.q-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; margin-bottom: 14px; }
.q-card[hidden] { display: none !important; }
.q-card .q-title { font-weight: 700; font-size: 15.5px; margin-bottom: 4px; color: var(--ink); }
.q-card .q-help { color: var(--muted); font-size: 13px; margin-bottom: 12px; }
.opts { display: flex; gap: 10px; flex-wrap: wrap; }
.opts label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 9px;
    cursor: pointer;
    font-weight: 550;
    font-size: 14px;
    background: var(--paper);
}
.opts label:has(input:checked) { border-color: var(--gold); background: #f4ead4; }
.opts input { width: auto; }
.result-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}
.result-head h1 { font-size: clamp(2rem, 4vw, 2.7rem); line-height: 1.06; margin: 4px 0 7px; }
.result-head .sub { margin: 0; }
.eyebrow {
    display: block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.result-head ~ .card { margin-bottom: 18px; }
.result-summary {
    border-left: 5px solid var(--ok);
    padding: 32px;
}
.result-summary--warn { border-left-color: var(--warn); }
.result-summary--bad { border-left-color: var(--bad); }
.result-summary h2, .card > h2, .training-card h2, .action-card h2, .payment-card h2 {
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.15;
    margin: 13px 0 8px;
}
.result-summary > p { max-width: 800px; font-size: 16px; }
.result-note {
    margin-top: 16px;
    padding-top: 13px;
    border-top: 1px solid var(--line);
    font-size: 13px !important;
}
.result-intro { max-width: 800px; margin-bottom: 20px; }
.diagnostic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.diagnostic-item {
    display: flex;
    gap: 13px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--cream);
}
.diagnostic-item__check {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    font-weight: 800;
}
.diagnostic-item h3 { font-family: var(--sans); font-size: 15px; letter-spacing: 0; margin: 1px 0 4px; }
.diagnostic-item p { font-size: 13.5px; line-height: 1.5; }
.inline-alert {
    padding: 13px 16px;
    margin: 18px 0;
    border: 1px solid #e6d19a;
    border-radius: 11px;
    background: var(--warn-bg);
    color: var(--warn);
    font-size: 14px;
}
.inline-alert--bad { border-color: #e8b8ae; background: var(--bad-bg); color: var(--bad); }
.inline-alert--ok { border-color: #b8cfaa; background: var(--ok-bg); color: var(--ok); }
.deliverable-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--line);
}
.deliverable-grid article { padding: 18px; background: var(--paper); }
.deliverable-grid b { color: var(--ink); font-size: 14px; }
.deliverable-grid p { margin-top: 4px; font-size: 13.5px; }
.flow-steps { list-style: none; padding: 0; margin-top: 20px; }
.flow-steps li { display: flex; gap: 15px; position: relative; padding: 0 0 21px; }
.flow-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 33px;
    bottom: 4px;
    width: 1px;
    background: var(--line-strong);
}
.flow-steps li > span {
    position: relative;
    z-index: 1;
    flex: 0 0 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: var(--paper);
    color: var(--accent);
    font-weight: 750;
}
.flow-steps li.done > span { border-color: var(--ok); background: var(--ok-bg); color: var(--ok); }
.flow-steps b { color: var(--ink); }
.flow-steps p { margin-top: 2px; font-size: 14px; }
.training-card { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; }
.training-card .result-note { grid-column: 1 / -1; margin-top: 0; }
.training-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.training-facts div { padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); }
.training-facts b { display: block; color: var(--ink); font-family: var(--serif); font-size: 22px; }
.training-facts span { display: block; color: var(--muted); font-size: 12px; }
.action-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; border-color: var(--gold); }
.action-card > div { max-width: 680px; }
.action-card--bad { border-color: #d99b8e; }
.action-card--ok { border-color: #b8cfaa; }
.payment-card { display: grid; grid-template-columns: 1.45fr .8fr; gap: 28px; align-items: center; border-color: var(--gold); }
.plain-list { margin: 18px 0 0; padding-left: 20px; color: var(--text-2); font-size: 14px; }
.plain-list li + li { margin-top: 7px; }
.payment-card__price { padding: 22px; border-radius: 14px; background: var(--cream); text-align: center; }
.payment-card__price > span, .payment-card__price > small, .payment-card__price > em { display: block; color: var(--muted); font-size: 12.5px; }
.payment-card__price > b { display: block; color: var(--ink); font-family: var(--serif); font-size: 42px; line-height: 1; margin: 8px 0; }
.payment-card__price .btn { margin: 18px 0 11px; }
.payment-card__price > em { font-style: normal; line-height: 1.4; }
details > summary { cursor: pointer; color: var(--text-2); }
.sidebar-toggle {
    display: none;
    margin: 12px 16px 0;
    width: calc(100% - 32px);
}

/* Learn */
.learn-header {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
}
.learn-header .wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.learn-main { max-width: 860px; margin: 0 auto; padding: 34px 20px 70px; }
.progress { height: 10px; background: var(--line); border-radius: 99px; overflow: hidden; }
.progress > div { height: 100%; background: linear-gradient(90deg, var(--gold), var(--accent)); border-radius: 99px; transition: width .4s ease; }
.module { border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; margin-bottom: 12px; background: var(--paper); }
.module h4 { font-size: 16px; margin-bottom: 6px; }
.module .body { color: var(--muted); font-size: 14.5px; }
.module .body h1, .module .body h2, .module .body h3 { font-size: 16px; margin: 14px 0 6px; color: var(--text); }
.module .body ul { padding-left: 20px; }
.module .body p { margin-bottom: 8px; }
.q-block { border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; margin-bottom: 14px; background: var(--paper); }
.q-block p { font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.q-block label { display: flex; gap: 10px; align-items: center; padding: 9px 12px; border: 1px solid var(--line); border-radius: 9px; margin-bottom: 8px; cursor: pointer; font-size: 14px; }
.q-block label:has(input:checked) { border-color: var(--gold); background: #f4ead4; }
.q-block input { accent-color: var(--accent); width: auto; }
video { width: 100%; border-radius: 10px; margin: 10px 0; }

/* Legal / verify */
.legal-doc, .page-prose { line-height: 1.75; color: var(--muted); }
.legal-doc h1, .page-prose h1 { font-size: 2.2rem; margin-bottom: 18px; color: var(--ink); }
.legal-doc h3, .page-prose h3 { color: var(--ink); margin-top: 22px; font-size: 1.2rem; }
.verify-seal {
    text-align: center;
    padding: 48px 32px;
    position: relative;
}
.verify-code {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: .12em;
}

/* Reveal + motion */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }
.hero .brand-mark, .hero .badge, .hero h1, .hero .lead, .hero-benefits, .hero .cta-row, .hero-note, .hero-plan-preview, .hero .trust-chips {
    animation: rise .8s ease both;
}
.hero .badge { animation-delay: .08s; }
.hero h1 { animation-delay: .16s; }
.hero .lead { animation-delay: .24s; }
.hero-benefits { animation-delay: .3s; }
.hero .cta-row { animation-delay: .36s; }
.hero-note { animation-delay: .42s; }
.hero-plan-preview { animation-delay: .48s; }
.hero .trust-chips { animation-delay: .54s; }

@keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(18px); }
}
@keyframes scrollDot {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* Breeze / utility compatibility */
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.w-3\/4 { width: 75%; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.ms-2 { margin-inline-start: .5rem; }
.ms-3 { margin-inline-start: .75rem; }
.ms-4 { margin-inline-start: 1rem; }
.gap-2 { gap: .5rem; }
.gap-4 { gap: 1rem; }
.space-y-1 > * + * { margin-top: .25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.text-sm { font-size: .9rem; }
.text-lg { font-size: 1.15rem; }
.font-medium { font-weight: 600; }
.underline { text-decoration: underline; }
.text-gray-600, .text-gray-700, .text-gray-800, .text-gray-900 { color: var(--text-2); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.min-h-screen { min-height: 100vh; }

/* Expediente editable */
.project-editor-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); min-height: 620px; }
.project-editor-nav { padding: 20px 14px; border-right: 1px solid var(--line); background: var(--cream); }
.project-editor-nav .eyebrow { margin: 0 8px 10px; }
.project-editor-nav__item {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 10px 9px;
    color: var(--text-2);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.35;
}
.project-editor-nav__item:hover { background: rgba(176,138,74,.1); color: var(--ink); }
.project-editor-nav__item.is-active { background: var(--accent); color: var(--paper); }
.project-editor-nav__item span { color: var(--gold); font-size: 10px; letter-spacing: .08em; padding-top: 2px; }
.project-editor-nav__item.is-active span { color: rgba(255,250,241,.68); }
.project-editor-main { min-width: 0; padding: 26px; }
.project-editor-actions { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; margin-bottom: 20px; }
.project-editor-actions h2 { margin: 4px 0 0; font-size: 1.65rem; }
.project-editor-actions__buttons { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.project-section { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-bottom: 14px; background: var(--paper); }
.project-section--protected { border-left: 4px solid var(--gold); }
.project-section > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 17px;
    border-bottom: 1px solid var(--line);
    background: #fcfbf8;
}
.project-section h3 { margin: 0 0 6px; font-family: var(--sans); font-size: 15px; letter-spacing: 0; }
.project-section-status { color: var(--muted); font-size: 12px; white-space: nowrap; }
.project-section-status.is-error { color: var(--bad); }
.project-section-content { padding: 16px 17px; color: var(--text-2); line-height: 1.65; }
.project-section-content h2, .project-section-content h3 { color: var(--ink); margin: 16px 0 8px; }
.project-section-content h2:first-child, .project-section-content h3:first-child { margin-top: 0; }
.project-section-content ul, .project-section-content ol { padding-left: 22px; margin: 10px 0; }
.project-section-content li + li { margin-top: 6px; }
.project-section-content table { margin: 12px 0; font-size: 12px; }
.project-section-content--editable { min-height: 110px; outline: 0; }
.project-section-content--editable:focus { background: #fffdf7; box-shadow: inset 0 0 0 2px rgba(176,138,74,.28); }
.project-editor-toolbar { display: flex; gap: 6px; padding: 10px 17px 0; }
.project-editor-toolbar button {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    color: var(--text-2);
    padding: 5px 8px;
    cursor: pointer;
    font-size: 12px;
}
.project-editor-toolbar button:hover { border-color: var(--gold); color: var(--ink); }
.project-section-save { display: flex; gap: 12px; align-items: center; padding: 0 17px 14px; }
.project-section-save small { color: var(--muted); font-size: 12px; }

@media (max-width: 920px) {
    .grid3, .grid4, .kpis { grid-template-columns: 1fr 1fr; }
    .journey-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .example-shell { grid-template-columns: 1fr; }
    .example-summary { border-right: 0; border-bottom: 1px solid var(--line); }
    footer.site .cols { grid-template-columns: 1fr 1fr; }
    .shell { grid-template-columns: 1fr; }
    aside.sidebar {
        position: relative;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    aside.sidebar .nav-group { display: none; }
    body.sidebar-open aside.sidebar .nav-group { display: flex; flex-direction: column; }
    .sidebar-toggle { display: inline-flex; }
    main.panel { padding: 20px 16px 60px; }
    .price-card.featured { transform: none; }
    header.site .container { min-height: 76px; }
    .project-editor-layout { grid-template-columns: 1fr; }
    .project-editor-nav { border-right: 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; }
    .project-editor-nav .eyebrow { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    nav.site {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--line);
        padding: 14px 22px 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    body.nav-open nav.site { display: flex; }
    .grid3, .grid4, .kpis, footer.site .cols { grid-template-columns: 1fr; }
    .scope-grid, .journey-grid, .example-phases, .example-boundary { grid-template-columns: 1fr; }
    .result-head, .action-card { align-items: stretch; flex-direction: column; }
    .diagnostic-grid, .deliverable-grid, .training-card, .payment-card { grid-template-columns: 1fr; }
    .training-card .result-note { grid-column: auto; }
    .scope-card, .example-summary, .example-roadmap { padding: 22px; }
    .journey-step { min-height: auto; }
    .hero-plan-preview__grid { grid-template-columns: 1fr; }
    .hero-benefits { flex-direction: column; align-items: flex-start; max-width: 320px; }
    .hero { padding: 42px 0 56px; }
    section { padding: 56px 0; }
}
/* GEO / recursos */
.geo-hero { padding: 52px 0 20px; }
.geo-hero h1 { font-size: clamp(2.05rem, 4.4vw, 3.05rem); line-height: 1.08; max-width: 20ch; }
.geo-hero .lead { font-size: 1.12rem; max-width: 68ch; color: var(--text-2); margin: 16px 0 18px; }
.geo-prose { max-width: 760px; }
.geo-prose p { margin: 0 0 14px; color: var(--text-2); }
.geo-prose h2 { font-size: clamp(1.55rem, 3vw, 2.05rem); margin: 34px 0 12px; }
.geo-prose h3 { font-size: 1.25rem; margin: 22px 0 8px; }
.geo-prose ul { padding-left: 20px; margin: 0 0 16px; color: var(--text-2); }
.geo-prose li + li { margin-top: 6px; }
.geo-blocks, .geo-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0 8px;
}
.geo-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.geo-block {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
}
.geo-block b { display: block; color: var(--ink); margin-bottom: 6px; }
.geo-block p { margin: 0; color: var(--muted); font-size: 14.5px; }
.geo-disclaimer {
    font-size: 13.5px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    padding-top: 16px;
    margin-top: 28px;
    max-width: 760px;
}
.geo-more {
    display: inline-block;
    margin-top: 14px;
    font-weight: 650;
    font-size: 14.5px;
}
.geo-more-row { margin-top: 22px; }
.resource-list { display: grid; gap: 14px; }
.resource-card {
    display: block;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 24px;
    color: inherit;
}
.resource-card:hover { border-color: var(--gold); color: inherit; }
.resource-card h2 { font-size: 1.45rem; margin: 6px 0 8px; }
.resource-card p { color: var(--text-2); margin: 0; }

@media (max-width: 920px) {
    .geo-facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .geo-blocks, .geo-facts { grid-template-columns: 1fr; }
    .geo-hero { padding: 36px 0 8px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}
