/* ===========================================================================
   ActEaze public site - "Almanac"
   A different language from anything before it: warm paper canvas, a serif
   display face, monospaced micro labels, hairline rules instead of shadows,
   square-ish corners, asymmetric columns, and one deep green block to punctuate
   the page. No gradients, no pills, no curves.
   =========================================================================== */

.st-scope {
    --paper:   #fbfaf7;   /* warm off white, the canvas */
    --sand:    #f4f1ea;   /* second surface */
    --sage:    #ecf1ed;   /* third surface, faintly green */
    --surface: #ffffff;

    --ink:     #101614;
    --ink-2:   #2c3733;
    --muted:   #6e7a74;
    --line:    #e3e0d7;
    --line-2:  #cdc9bd;

    --green:   #12603f;   /* deep forest, the accent */
    --green-br:#1e9e63;
    --ochre:   #b9791a;
    --clay:    #b4553f;

    background: var(--paper);
    color: var(--ink-2);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}

.st-scope h1, .st-scope h2, .st-scope h3, .st-scope h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.015em;
    line-height: 1.08;
}
.st-scope h5, .st-scope h6 { font-family: 'Inter', sans-serif; font-weight: 600; color: var(--ink); }
/* Links inherit their colour from the surface they sit on, but buttons carry
   their own - otherwise this rule outranks the button styles and paints their
   text with the surrounding colour. */
.st-scope a:not(.btn) { color: inherit; }
.st-scope a { text-decoration: none; }
.st-scope p { line-height: 1.68; }

/* Monospaced micro label. Used for section numbers, eyebrows and data. */
.st-mono {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .74rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.st-mono b { color: var(--green); font-weight: 400; }
.st-dot { display: inline-block; width: 6px; height: 6px; background: var(--green-br); margin-right: .55rem; vertical-align: middle; }

/* -- Buttons ---------------------------------------------------------------- */

.st-btn {
    font-family: 'Inter', sans-serif;
    font-size: .94rem; font-weight: 500;
    padding: .8rem 1.5rem;
    border: 1px solid var(--ink);
    border-radius: 4px;
    background: var(--ink);
    color: var(--paper);
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.st-btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
/* The one green button: the sign-up call in the menu. Inverts to ink on hover,
   the opposite way round to the standard button. */
.st-btn-go { background: var(--green); border-color: var(--green); color: var(--paper); }
.st-btn-go:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.st-btn-line { background: transparent; color: var(--ink); border-color: var(--line-2); }
.st-btn-line:hover { background: transparent; color: var(--green); border-color: var(--green); }
.st-btn-pale { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.st-btn-pale:hover { background: #fff; border-color: #fff; color: var(--green); }
.st-btn-sm { padding: .5rem 1.05rem; font-size: .88rem; }

/* Text link with a rule that grows out from the left on hover. */
.st-link {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .93rem; font-weight: 500; color: var(--ink);
    padding-bottom: .2rem; position: relative;
}
.st-link::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
    background: var(--line-2); transition: background .18s ease;
}
.st-link:hover { color: var(--green); }
.st-link:hover::after { background: var(--green); }
.st-link i { font-size: .75rem; transition: transform .18s ease; }
.st-link:hover i { transform: translateX(3px); }

/* -- Head ------------------------------------------------------------------- */

.st-strip {
    background: var(--ink); color: rgba(251,250,247,.72);
    padding: .5rem 0;
}
.st-strip a { color: rgba(251,250,247,.9); }
.st-strip a:hover { color: #fff; }

.st-nav {
    position: sticky; top: 0; z-index: 1040;
    background: rgba(251,250,247,.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
}
.st-nav.st-nav-stuck { background: var(--paper); border-bottom-color: var(--line); }
.st-nav .nav-link {
    font-size: .93rem; font-weight: 500; color: var(--ink-2);
    padding: .45rem 0; margin: 0 1rem; position: relative;
}
.st-nav .nav-link::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: .15rem;
    height: 1px; background: var(--green); transition: right .22s ease;
}
.st-nav .nav-link:hover { color: var(--ink); }
.st-nav .nav-link:hover::after, .st-nav .nav-link.active::after { right: 0; }
.st-nav .nav-link.active { color: var(--ink); }

@media (max-width: 991.98px) {
    .st-nav .navbar-collapse.show, .st-nav .navbar-collapse.collapsing {
        border-top: 1px solid var(--line); margin-top: .75rem; padding-top: .75rem;
    }
    .st-nav .nav-link { margin: 0; }
}

/* -- Hero ------------------------------------------------------------------- */

.st-hero { padding: 4.5rem 0 4rem; border-bottom: 1px solid var(--line); }
.st-hero h1 {
    font-size: clamp(2.5rem, 5.4vw, 4.15rem);
    margin: 1.6rem 0 1.5rem;
}
.st-hero h1 em {
    font-style: italic;
    color: var(--green);
    font-weight: 500;
}
.st-hero-lead { font-size: 1.12rem; color: var(--ink-2); max-width: 32rem; }
.st-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2.25rem; }

.st-facts { display: flex; flex-wrap: wrap; margin-top: 3rem; border-top: 1px solid var(--line); }
.st-fact { padding: 1.25rem 1.75rem 0 0; margin-right: 1.75rem; }
.st-fact + .st-fact { border-left: 1px solid var(--line); padding-left: 1.75rem; }
.st-fact-num { font-family: 'Fraunces', serif; font-size: 1.9rem; color: var(--ink); line-height: 1; }
.st-fact-label { margin-top: .4rem; }

/* The photograph sits in a hairline frame, pushed off the grid, with a green
   square behind one corner and a small data card breaking the other. */
.st-shot { position: relative; }
.st-shot-frame {
    position: relative; z-index: 2;
    border: 1px solid var(--line-2);
    background: var(--surface);
    padding: .55rem;
}
.st-shot-frame img { width: 100%; height: 25rem; object-fit: cover; object-position: 62% 42%; display: block; }
.st-shot-block {
    position: absolute; z-index: 1; top: -1.5rem; right: -1.5rem;
    width: 11rem; height: 11rem; background: var(--sage);
}
.st-shot-card {
    position: absolute; z-index: 3; left: -2rem; bottom: -2rem;
    background: var(--surface); border: 1px solid var(--line-2);
    padding: 1.1rem 1.25rem; min-width: 15rem;
}
.st-shot-card table { width: 100%; font-size: .82rem; }
.st-shot-card td { padding: .18rem 0; color: var(--ink-2); }
.st-shot-card td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); }
.st-shot-card .st-rule { border-top: 1px solid var(--line); margin: .5rem 0; }
.st-shot-card .st-total td { font-weight: 600; color: var(--ink); }

/* -- Inner page banner ------------------------------------------------------ */

.st-page-head { padding: 4.5rem 0 3.5rem; border-bottom: 1px solid var(--line); }
.st-page-head h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); margin: 1.1rem 0 1.25rem; }
.st-page-head h1 em { font-style: italic; color: var(--green); font-weight: 500; }
.st-page-head p { font-size: 1.08rem; max-width: 38rem; }
.st-crumbs { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.st-crumbs a:hover { color: var(--green); }

/* -- Long form text --------------------------------------------------------- */

.st-prose h3 { font-size: 1.55rem; margin: 2.5rem 0 .9rem; }
.st-prose h3:first-child { margin-top: 0; }
.st-prose p { margin-bottom: 1.1rem; }
.st-prose > ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.st-prose > ul li { display: flex; gap: .85rem; padding: .7rem 0; border-top: 1px solid var(--line); font-size: .96rem; }
.st-prose > ul li:last-child { border-bottom: 1px solid var(--line); }
.st-prose > ul li::before { content: "\f00c"; font-family: "Font Awesome 5 Free"; font-weight: 900; color: var(--green); font-size: .78rem; margin-top: .32rem; }

/* A single point pulled out of the flow. */
.st-note { border: 1px solid var(--line-2); background: var(--sage); padding: 1.6rem 1.75rem; }
.st-note h6 { font-size: 1rem; margin-bottom: .5rem; }
.st-note p { margin-bottom: 0; font-size: .95rem; }

/* -- Tabs ------------------------------------------------------------------- */

.st-tabs { border: 0; border-bottom: 1px solid var(--line); gap: 2.25rem; margin-bottom: 3rem; }
.st-tabs .nav-link {
    font-family: 'IBM Plex Mono', monospace; font-size: .78rem;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted); background: transparent; border: 0;
    padding: 0 0 1rem; margin: 0; border-radius: 0;
    border-bottom: 2px solid transparent;
}
.st-tabs .nav-link:hover { color: var(--ink); }
.st-tabs .nav-link.active { color: var(--green); border-bottom-color: var(--green); background: transparent; }

/* -- Specification table ---------------------------------------------------- */

.st-table { width: 100%; border-top: 1px solid var(--line); }
.st-table th, .st-table td { padding: 1.15rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.st-table th {
    font-family: 'IBM Plex Mono', monospace; font-size: .74rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--muted); font-weight: 400;
    width: 30%; padding-right: 2rem;
}
.st-table td { color: var(--ink-2); font-size: .96rem; }

@media (max-width: 575.98px) {
    .st-table th, .st-table td { display: block; width: 100%; }
    .st-table th { border-bottom: 0; padding-bottom: .35rem; }
    .st-table td { padding-top: 0; }
}

/* -- Forms ------------------------------------------------------------------ */

.st-form label {
    font-family: 'IBM Plex Mono', monospace; font-size: .72rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--muted); margin-bottom: .5rem;
}
.st-form .form-control, .st-form .form-select {
    background: var(--surface); border: 1px solid var(--line-2); border-radius: 4px;
    padding: .75rem 1rem; font-size: .96rem; color: var(--ink);
}
.st-form .form-control:focus, .st-form .form-select:focus {
    border-color: var(--green); box-shadow: 0 0 0 3px rgba(30,158,99,.14); background: var(--surface);
}
.st-form .form-control::placeholder { color: #a8b0ab; }
.st-form .text-danger { font-family: 'Inter', sans-serif; font-size: .85rem; }
.st-scope .required-field::after { content: "*"; color: var(--clay); margin-left: .2rem; }

.st-alert {
    border: 1px solid var(--green); border-left-width: 3px;
    background: var(--sage); color: var(--green);
    padding: 1rem 1.25rem; font-size: .95rem;
}

/* -- Marquee ---------------------------------------------------------------- */

.st-marquee {
    background: var(--ink); color: var(--paper);
    overflow: hidden; padding: .9rem 0;
}
.st-marquee-track { display: flex; width: max-content; animation: st-scroll 38s linear infinite; }
.st-marquee-track > span {
    display: inline-flex; align-items: center;
    font-family: 'IBM Plex Mono', monospace; font-size: .78rem;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 0 1.6rem; white-space: nowrap; color: rgba(251,250,247,.82);
}
.st-marquee-track > span::after {
    content: ""; width: 5px; height: 5px; background: var(--green-br); margin-left: 1.6rem;
}
@keyframes st-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -- Sections --------------------------------------------------------------- */

.st-section { padding: 5.5rem 0; border-bottom: 1px solid var(--line); }
.st-section-sand { background: var(--sand); }
.st-section-sage { background: var(--sage); }
.st-head { max-width: 46rem; }
.st-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin: 1rem 0 1.1rem; }
.st-head p { color: var(--ink-2); font-size: 1.05rem; }

/* A label column that stays put while its content scrolls past. */
.st-sticky { position: sticky; top: 6.5rem; }

/* -- Bordered grid ---------------------------------------------------------- */

/* Cells share hairlines rather than floating apart, which is what gives the
   page its drawn-on-paper feel. */
.st-grid { border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.st-cell {
    border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 2.25rem 1.9rem;
    height: 100%;
    background: transparent;
    transition: background .2s ease;
}
.st-cell:hover { background: var(--surface); }
.st-cell-num { font-family: 'IBM Plex Mono', monospace; font-size: .78rem; color: var(--green); letter-spacing: .1em; }
.st-cell h4 { font-size: 1.35rem; margin: 1.1rem 0 .7rem; }
.st-cell p { font-size: .95rem; color: var(--ink-2); margin-bottom: 1rem; }
.st-cell-tags { font-family: 'IBM Plex Mono', monospace; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* -- Statement -------------------------------------------------------------- */

.st-statement {
    font-family: 'Fraunces', serif; font-weight: 500;
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    line-height: 1.28; color: var(--ink);
}
.st-statement em { font-style: italic; color: var(--green); }

/* -- Feature rows ----------------------------------------------------------- */

.st-row { padding: 3.5rem 0; border-top: 1px solid var(--line); }
.st-row:first-of-type { border-top: 0; }
.st-row h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 1rem; }
.st-row-art { border: 1px solid var(--line-2); background: var(--surface); padding: .55rem; }
.st-row-art img { width: 100%; height: 17rem; object-fit: cover; display: block; }
.st-checks { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.st-checks li {
    display: flex; gap: .85rem; padding: .7rem 0;
    border-top: 1px solid var(--line); font-size: .96rem;
}
.st-checks li:last-child { border-bottom: 1px solid var(--line); }
.st-checks i { color: var(--green); font-size: .8rem; margin-top: .4rem; }

/* A plain table mock, drawn rather than photographed. */
.st-mock { border: 1px solid var(--line-2); background: var(--surface); }
.st-mock-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: .7rem 1rem; border-bottom: 1px solid var(--line);
    font-family: 'IBM Plex Mono', monospace; font-size: .72rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--muted);
}
.st-mock table { width: 100%; font-size: .82rem; }
.st-mock thead th {
    font-family: 'IBM Plex Mono', monospace; font-size: .68rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--muted); font-weight: 400;
    padding: .65rem 1rem; border-bottom: 1px solid var(--line); text-align: left;
}
.st-mock tbody td { padding: .6rem 1rem; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.st-mock tbody tr:last-child td { border-bottom: 0; }
.st-mock .st-num-cell { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); }
.st-tag {
    font-family: 'IBM Plex Mono', monospace; font-size: .68rem; letter-spacing: .08em;
    text-transform: uppercase; border: 1px solid var(--line-2); padding: .1rem .45rem; color: var(--muted);
}

/* -- Deep green band -------------------------------------------------------- */

.st-band { background: var(--green); color: rgba(255,255,255,.78); padding: 4.5rem 0; }
.st-band h2 { color: #fff; }
.st-band-grid { border-top: 1px solid rgba(255,255,255,.2); margin-top: 2.75rem; }
.st-band-cell { padding: 2rem 1.5rem 0 0; border-right: 1px solid rgba(255,255,255,.2); }
.st-band-cell:last-child { border-right: 0; }
.st-band-num { font-family: 'Fraunces', serif; font-size: clamp(2.4rem, 4.5vw, 3.4rem); color: #fff; line-height: 1; }
.st-band-label { font-family: 'IBM Plex Mono', monospace; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.66); margin-top: .8rem; }

/* -- Pricing ---------------------------------------------------------------- */

.st-plans { border: 1px solid var(--line); background: var(--surface); }
.st-plan { padding: 2.5rem 2rem; border-right: 1px solid var(--line); height: 100%; display: flex; flex-direction: column; }
.st-plan:last-child { border-right: 0; }
.st-plan-pick { background: var(--sage); }
.st-plan h4 { font-size: 1.6rem; margin: .9rem 0 .5rem; }
.st-plan-for { font-size: .93rem; color: var(--muted); min-height: 2.8rem; }
.st-plan-amt { font-family: 'Fraunces', serif; font-size: 1.7rem; color: var(--green); margin: 1.4rem 0 .3rem; }
.st-plan ul { list-style: none; padding: 0; margin: 1.6rem 0 2rem; }
.st-plan li { display: flex; gap: .8rem; padding: .55rem 0; border-top: 1px solid var(--line); font-size: .92rem; }
.st-plan li i { color: var(--green); font-size: .75rem; margin-top: .4rem; }

/* -- Questions -------------------------------------------------------------- */

.st-faq .accordion-item { border: 0; border-top: 1px solid var(--line); background: transparent; border-radius: 0; }
.st-faq .accordion-item:last-child { border-bottom: 1px solid var(--line); }
.st-faq .accordion-button {
    font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 500; color: var(--ink);
    background: transparent; padding: 1.4rem 0; box-shadow: none; border-radius: 0;
}
.st-faq .accordion-button:not(.collapsed) { color: var(--green); background: transparent; }
.st-faq .accordion-button::after {
    background-image: none; content: "+"; font-family: 'IBM Plex Mono', monospace;
    font-size: 1.3rem; color: var(--muted); width: auto; height: auto; transform: none;
    display: flex; align-items: center; justify-content: center;
}
.st-faq .accordion-button:not(.collapsed)::after { content: "\2212"; color: var(--green); }
.st-faq .accordion-body { padding: 0 0 1.5rem; font-size: .98rem; max-width: 46rem; }

/* -- Closing and footer ----------------------------------------------------- */

.st-cta { background: var(--ink); color: rgba(251,250,247,.72); padding: 5rem 0; }
.st-cta h2 { color: var(--paper); font-size: clamp(1.9rem, 3.8vw, 3rem); }
.st-cta em { font-style: italic; color: var(--green-br); }

.st-footer { background: var(--ink); color: rgba(251,250,247,.6); padding: 3.5rem 0 1.75rem; border-top: 1px solid rgba(255,255,255,.12); }
.st-footer h6 { color: rgba(251,250,247,.5); font-family: 'IBM Plex Mono', monospace; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 400; margin-bottom: 1.1rem; }
.st-footer a { color: rgba(251,250,247,.72); font-size: .93rem; display: block; padding: .25rem 0; }
.st-footer a:hover { color: #fff; }
.st-footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding-top: 1.5rem; font-size: .84rem; }
.st-footer .form-control {
    background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.28);
    border-radius: 0; color: #fff; padding: .5rem 0;
}
.st-footer .form-control::placeholder { color: rgba(251,250,247,.4); }
.st-footer .form-control:focus { background: transparent; color: #fff; border-bottom-color: var(--green-br); box-shadow: none; }

/* -- Back to top ------------------------------------------------------------ */

.st-top {
    position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 1035;
    width: 44px; height: 44px; border-radius: 4px;
    border: 1px solid var(--line-2); background: var(--surface); color: var(--ink);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease, background .18s ease, color .18s ease;
}
.st-top.is-on { opacity: 1; visibility: visible; transform: none; }
.st-top:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* -- Motion ----------------------------------------------------------------- */

[data-reveal] {
    opacity: 0; transform: translateY(14px);
    transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
    transition-delay: var(--delay, 0s);
}
[data-reveal].is-in { opacity: 1; transform: none; }

.st-scope a:focus-visible, .st-scope button:focus-visible {
    outline: 2px solid var(--green); outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .st-marquee-track { animation: none; }
    [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1199.98px) {
    .st-shot-card { left: -1rem; bottom: -1.5rem; min-width: 13rem; }
    .st-shot-block { width: 8rem; height: 8rem; }
}
@media (max-width: 991.98px) {
    .st-hero { padding: 3rem 0; }
    .st-shot { margin-top: 3.5rem; }
    .st-shot-frame img { height: 19rem; }
    .st-shot-card { position: static; margin-top: 1rem; min-width: 0; }
    .st-shot-block { display: none; }
    .st-section { padding: 3.5rem 0; }
    .st-plan { border-right: 0; border-bottom: 1px solid var(--line); }
    .st-band-cell { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 1.5rem; }
    .st-fact + .st-fact { border-left: 0; padding-left: 0; }
}
