/* ==========================================================================
   AgencyInsightLab — design system
   --------------------------------------------------------------------------
   The brand site's stylesheet. It deliberately reuses the product's own
   idiom so that app.<domain> and <domain> read as one company: the teal
   (#0F7A8B), the deep blue-teal dark surface, Manrope for display, IBM Plex
   Sans for text and IBM Plex Mono for the micro-labels.

   Order matters here and is worth keeping:
     1. tokens          2. reset/base       3. typography
     4. layout          5. buttons          6. header
     7. hero            8. components       9. pricing
    10. editorial      11. forms           12. footer
    13. utilities      14. motion          15. responsive

   Nothing in here depends on a plugin, a page builder or a CSS framework.
   ========================================================================== */


/* 1. Tokens ================================================================ */

:root {
    /* Ink */
    --tf-ink:        #16272C;
    --tf-ink-2:      #2E434A;
    --tf-body:       #46595F;
    --tf-muted:      #66797F;
    --tf-faint:      #8B9CA1;

    /* Surfaces */
    --tf-bg:         #FFFFFF;
    --tf-bg-soft:    #F4F7F8;
    --tf-bg-tint:    #EAF4F6;
    --tf-bg-sunk:    #EDF2F3;

    /* Lines */
    --tf-line:       #E4EAEC;
    --tf-line-soft:  #EDF1F2;
    --tf-line-dark:  #24424C;

    /* Brand */
    --tf-brand:      #0F7A8B;
    --tf-brand-dark: #0B5C69;
    --tf-brand-deep: #084651;
    --tf-brand-soft: #9AC7CE;
    --tf-bright:     #23AEC4;
    --tf-bright-lo:  #7FD8E6;

    /* Dark surface (header bands, footer, CTA) */
    --tf-dark:       #10242C;
    --tf-dark-2:     #16333C;
    --tf-dark-3:     #1D434E;
    --tf-on-dark:    #EAF4F6;
    --tf-on-dark-mu: #9FBDC4;

    /* Accents — used sparingly, for state not decoration */
    --tf-amber:      #B27C1E;
    --tf-amber-bg:   #FDF4E3;
    --tf-green:      #1C8663;
    --tf-green-bg:   #E8F5F0;
    --tf-red:        #B4402F;
    --tf-red-bg:     #FBEDEA;

    /* Type */
    --tf-font-display: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --tf-font-text:    'IBM Plex Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --tf-font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

    /* Radii */
    --tf-r-xs: 5px;
    --tf-r-sm: 8px;
    --tf-r:    12px;
    --tf-r-lg: 18px;
    --tf-r-xl: 26px;
    --tf-r-pill: 999px;

    /* Elevation. Tinted with the brand hue rather than pure black, which is
       what stops the cards reading as grey boxes on a tinted background. */
    --tf-shadow-xs: 0 1px 2px rgba(16, 36, 44, .05);
    --tf-shadow-sm: 0 2px 6px rgba(16, 36, 44, .06);
    --tf-shadow:    0 10px 28px rgba(16, 36, 44, .09);
    --tf-shadow-lg: 0 24px 60px rgba(16, 36, 44, .14);
    --tf-shadow-brand: 0 12px 30px rgba(15, 122, 139, .26);

    /* Rhythm */
    --tf-container: 1200px;
    --tf-container-narrow: 820px;
    --tf-container-wide: 1340px;
    --tf-gutter: 24px;
    --tf-section: 96px;
    --tf-header-h: 72px;

    --tf-ease: cubic-bezier(.22, .61, .36, 1);
}


/* 2. Reset / base ========================================================== */

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--tf-header-h) + 16px);
}

body {
    margin: 0;
    background: var(--tf-bg);
    color: var(--tf-body);
    font-family: var(--tf-font-text);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.tf-nav-open { overflow: hidden; }

img, svg, video, canvas, iframe { max-width: 100%; }
img, video { height: auto; display: block; }

a {
    color: var(--tf-brand);
    text-decoration: none;
    transition: color .18s var(--tf-ease);
}

a:hover { color: var(--tf-brand-dark); }

button, input, select, textarea { font: inherit; color: inherit; }

hr {
    border: 0;
    border-top: 1px solid var(--tf-line);
    margin: 40px 0;
}

::selection { background: var(--tf-bg-tint); color: var(--tf-brand-deep); }

:focus-visible {
    outline: 3px solid rgba(35, 174, 196, .55);
    outline-offset: 2px;
    border-radius: 3px;
}

.tf-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--tf-brand);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 var(--tf-r-sm) 0;
    font-weight: 600;
}

.tf-skip-link:focus {
    left: 0;
    color: #fff;
}

.screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
}


/* 3. Typography ============================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--tf-font-display);
    color: var(--tf-ink);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.18;
    margin: 0 0 .5em;
    text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 1.35rem + 2.9vw, 3.6rem); letter-spacing: -.033em; }
h2 { font-size: clamp(1.75rem, 1.2rem + 1.9vw, 2.65rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.25rem, 1.05rem + .7vw, 1.6rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: .9375rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

strong, b { font-weight: 600; color: var(--tf-ink-2); }

small { font-size: .8125rem; }

blockquote {
    margin: 32px 0;
    padding: 4px 0 4px 24px;
    border-left: 3px solid var(--tf-brand-soft);
    font-size: 1.125rem;
    color: var(--tf-ink-2);
    font-style: normal;
}

code, kbd, pre {
    font-family: var(--tf-font-mono);
    font-size: .875em;
}

code {
    background: var(--tf-bg-sunk);
    border-radius: var(--tf-r-xs);
    padding: .15em .4em;
    color: var(--tf-brand-deep);
}

pre {
    background: var(--tf-dark);
    color: var(--tf-on-dark);
    padding: 20px 22px;
    border-radius: var(--tf-r);
    overflow-x: auto;
    line-height: 1.6;
}

pre code { background: none; color: inherit; padding: 0; }

/* The micro-label used above every section heading and inside cards. */
.tf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--tf-font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--tf-brand);
    margin: 0 0 14px;
}

.tf-eyebrow::before {
    content: "";
    width: 18px;
    height: 1px;
    background: currentColor;
    opacity: .5;
    flex: none;
}

.tf-eyebrow.is-plain::before { display: none; }
.tf-eyebrow.on-dark { color: var(--tf-bright-lo); }

.tf-lede {
    font-size: clamp(1.0625rem, 1rem + .3vw, 1.1875rem);
    line-height: 1.6;
    color: var(--tf-body);
    max-width: 62ch;
}

.tf-lede.on-dark { color: var(--tf-on-dark-mu); }

.tf-dim { color: var(--tf-muted); }
.tf-mono { font-family: var(--tf-font-mono); }


/* 4. Layout ================================================================ */

.tf-container {
    width: 100%;
    max-width: var(--tf-container);
    margin-inline: auto;
    padding-inline: var(--tf-gutter);
}

.tf-container.is-narrow { max-width: var(--tf-container-narrow); }
.tf-container.is-wide   { max-width: var(--tf-container-wide); }

.tf-section { padding-block: var(--tf-section); position: relative; }
.tf-section.is-tight { padding-block: 64px; }
.tf-section.is-loose { padding-block: 128px; }
.tf-section.is-flush-top { padding-top: 0; }
.tf-section.is-flush-bottom { padding-bottom: 0; }

.tf-section.on-soft { background: var(--tf-bg-soft); }
.tf-section.on-tint { background: var(--tf-bg-tint); }

.tf-section.on-dark {
    background: var(--tf-dark);
    color: var(--tf-on-dark-mu);
}

.tf-section.on-dark h1,
.tf-section.on-dark h2,
.tf-section.on-dark h3,
.tf-section.on-dark h4 { color: #fff; }

/* A hairline between two sections that share a background. */
.tf-section.has-rule { border-top: 1px solid var(--tf-line); }

.tf-section-head {
    max-width: 720px;
    margin-bottom: 52px;
}

.tf-section-head.is-centered {
    margin-inline: auto;
    text-align: center;
}

.tf-section-head.is-centered .tf-lede { margin-inline: auto; }
.tf-section-head.is-centered .tf-eyebrow::before { display: none; }

.tf-section-head h2 { margin-bottom: 16px; }

/* Head with an action parked on the right at desktop width. */
.tf-section-head.is-split {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.tf-section-head.is-split > div:first-child { max-width: 680px; }

.tf-grid { display: grid; gap: 24px; }
.tf-grid.is-2 { grid-template-columns: repeat(2, 1fr); }
.tf-grid.is-3 { grid-template-columns: repeat(3, 1fr); }
.tf-grid.is-4 { grid-template-columns: repeat(4, 1fr); }
.tf-grid.is-gap-lg { gap: 32px; }
.tf-grid.is-gap-sm { gap: 16px; }

.tf-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    align-items: center;
}

.tf-split.is-top { align-items: start; }
.tf-split.is-media-first > *:first-child { order: 2; }
.tf-split.is-narrow-media { grid-template-columns: 1.05fr .95fr; }


/* 5. Buttons =============================================================== */

.tf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: var(--tf-r-sm);
    font-family: var(--tf-font-display);
    font-size: .9375rem;
    font-weight: 600;
    letter-spacing: -.005em;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .18s var(--tf-ease),
                border-color .18s var(--tf-ease),
                color .18s var(--tf-ease),
                box-shadow .22s var(--tf-ease),
                transform .18s var(--tf-ease);
}

.tf-btn svg { width: 17px; height: 17px; flex: none; }

.tf-btn:active { transform: translateY(1px); }

.tf-btn-primary {
    background: var(--tf-brand);
    color: #fff;
    box-shadow: var(--tf-shadow-brand);
}

.tf-btn-primary:hover {
    background: var(--tf-brand-dark);
    color: #fff;
    box-shadow: 0 16px 34px rgba(15, 122, 139, .32);
}

.tf-btn-ghost {
    background: transparent;
    border-color: var(--tf-line);
    color: var(--tf-ink-2);
}

.tf-btn-ghost:hover {
    background: var(--tf-bg-tint);
    border-color: var(--tf-brand-soft);
    color: var(--tf-brand-dark);
}

.tf-btn-solid-dark {
    background: var(--tf-dark);
    color: #fff;
}

.tf-btn-solid-dark:hover { background: var(--tf-dark-3); color: #fff; }

.tf-btn-on-dark {
    background: #fff;
    color: var(--tf-ink);
}

.tf-btn-on-dark:hover { background: var(--tf-bg-tint); color: var(--tf-brand-deep); }

.tf-btn-outline-dark {
    background: transparent;
    border-color: rgba(159, 189, 196, .34);
    color: var(--tf-on-dark);
}

.tf-btn-outline-dark:hover {
    border-color: var(--tf-bright);
    background: rgba(35, 174, 196, .12);
    color: #fff;
}

.tf-btn-lg { padding: 16px 30px; font-size: 1rem; }
.tf-btn-sm { padding: 9px 16px; font-size: .875rem; border-radius: var(--tf-r-xs); }
.tf-btn-block { display: flex; width: 100%; }

.tf-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--tf-font-display);
    font-weight: 600;
    font-size: .9375rem;
    color: var(--tf-brand);
}

.tf-btn-link svg {
    width: 16px;
    height: 16px;
    transition: transform .18s var(--tf-ease);
}

.tf-btn-link:hover svg { transform: translateX(3px); }
.tf-btn-link.on-dark { color: var(--tf-bright-lo); }

.tf-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.tf-actions.is-centered { justify-content: center; }

.tf-note {
    font-size: .8125rem;
    color: var(--tf-muted);
    display: flex;
    align-items: center;
    gap: 7px;
}

.tf-note svg { width: 15px; height: 15px; color: var(--tf-green); flex: none; }
.tf-note.on-dark { color: var(--tf-on-dark-mu); }
.tf-note.on-dark svg { color: var(--tf-bright); }

.tf-note-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 22px;
}


/* 6. Header / navigation =================================================== */

.tf-topbar {
    background: var(--tf-dark);
    color: var(--tf-on-dark-mu);
    font-size: .8125rem;
}

.tf-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 40px;
    text-align: center;
    flex-wrap: wrap;
}

.tf-topbar a { color: var(--tf-bright-lo); font-weight: 600; }
.tf-topbar a:hover { color: #fff; }

.tf-topbar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tf-bright);
    flex: none;
    box-shadow: 0 0 0 3px rgba(35, 174, 196, .22);
}

.tf-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s var(--tf-ease), box-shadow .2s var(--tf-ease);
}

.tf-header.is-stuck {
    border-bottom-color: var(--tf-line);
    box-shadow: 0 4px 20px rgba(16, 36, 44, .05);
}

.tf-header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: var(--tf-header-h);
}

/* Brand ------------------------------------------------------------------- */

.tf-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: none;
    color: var(--tf-ink);
}

.tf-brand:hover { color: var(--tf-ink); }

.tf-brand-mark {
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--tf-brand) 0%, var(--tf-brand-deep) 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(15, 122, 139, .3);
}

.tf-brand-mark svg { width: 19px; height: 19px; }

.tf-brand-text { display: flex; flex-direction: column; line-height: 1.05; }

.tf-brand-name {
    font-family: var(--tf-font-display);
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -.028em;
    color: var(--tf-ink);
}

.tf-brand-sub {
    font-family: var(--tf-font-mono);
    font-size: 8.5px;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--tf-faint);
    margin-top: 3px;
}

.tf-brand img { max-height: 40px; width: auto; }

.tf-brand.on-dark .tf-brand-name { color: #fff; }
.tf-brand.on-dark .tf-brand-sub { color: var(--tf-on-dark-mu); }

/* Primary nav ------------------------------------------------------------- */

.tf-nav { margin-right: auto; }

.tf-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.tf-nav li { position: relative; }

.tf-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 13px;
    border-radius: var(--tf-r-xs);
    font-family: var(--tf-font-display);
    font-size: .9375rem;
    font-weight: 600;
    color: var(--tf-ink-2);
    letter-spacing: -.008em;
}

.tf-nav > ul > li > a:hover,
.tf-nav > ul > li:focus-within > a {
    background: var(--tf-bg-tint);
    color: var(--tf-brand-dark);
}

.tf-nav > ul > li.current-menu-item > a,
.tf-nav > ul > li.current-menu-ancestor > a,
.tf-nav > ul > li.current-page-ancestor > a { color: var(--tf-brand); }

.tf-nav .menu-item-has-children > a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: .55;
    transition: transform .2s var(--tf-ease);
}

.tf-nav .menu-item-has-children:hover > a::after,
.tf-nav .menu-item-has-children:focus-within > a::after {
    transform: rotate(225deg) translateY(-3px);
}

/* Dropdown. Rendered as a card so a services menu can carry descriptions
   rather than a list of bare links — which is the whole point of having
   three services with names that do not explain themselves. */
.tf-nav ul ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 290px;
    display: block;
    flex-direction: column;
    gap: 2px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r);
    box-shadow: var(--tf-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s var(--tf-ease),
                transform .18s var(--tf-ease),
                visibility .18s;
}

.tf-nav ul ul::before {
    content: "";
    position: absolute;
    inset: -12px 0 auto 0;
    height: 12px;
}

.tf-nav li:hover > ul,
.tf-nav li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tf-nav ul ul li { width: 100%; }

.tf-nav ul ul a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--tf-r-xs);
    font-size: .9375rem;
    font-weight: 600;
    font-family: var(--tf-font-display);
    color: var(--tf-ink-2);
}

.tf-nav ul ul a:hover { background: var(--tf-bg-tint); color: var(--tf-brand-dark); }

.tf-nav ul ul .tf-menu-desc {
    display: block;
    font-family: var(--tf-font-text);
    font-size: .8125rem;
    font-weight: 400;
    color: var(--tf-muted);
    margin-top: 2px;
    line-height: 1.45;
    white-space: normal;
}

.tf-nav ul ul ul { top: -8px; left: calc(100% + 6px); }

/* Header actions ---------------------------------------------------------- */

.tf-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
}

.tf-header-actions .tf-login {
    font-family: var(--tf-font-display);
    font-size: .9375rem;
    font-weight: 600;
    color: var(--tf-ink-2);
    padding: 9px 12px;
    border-radius: var(--tf-r-xs);
}

.tf-header-actions .tf-login:hover { background: var(--tf-bg-soft); color: var(--tf-brand-dark); }

/* Mobile toggle ----------------------------------------------------------- */

.tf-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    flex: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r-xs);
    cursor: pointer;
}

.tf-nav-toggle span {
    position: relative;
    display: block;
    width: 18px;
    height: 1.8px;
    background: var(--tf-ink);
    border-radius: 2px;
    transition: background .15s var(--tf-ease);
}

.tf-nav-toggle span::before,
.tf-nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 1.8px;
    background: var(--tf-ink);
    border-radius: 2px;
    transition: transform .22s var(--tf-ease), top .22s var(--tf-ease);
}

.tf-nav-toggle span::before { top: -6px; }
.tf-nav-toggle span::after  { top: 6px; }

.tf-nav-toggle[aria-expanded="true"] span { background: transparent; }
.tf-nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.tf-nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }


/* 7. Hero ================================================================== */

.tf-hero {
    position: relative;
    background: var(--tf-dark);
    color: var(--tf-on-dark-mu);
    overflow: hidden;
    padding-block: 104px 112px;
    isolation: isolate;
}

/* Two soft brand washes and a grid. Cheap to paint, and it keeps the dark
   band from reading as a flat rectangle behind the headline. */
.tf-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(900px 480px at 78% -8%, rgba(35, 174, 196, .30), transparent 62%),
        radial-gradient(700px 420px at 4% 108%, rgba(15, 122, 139, .34), transparent 66%);
}

.tf-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(159, 189, 196, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(159, 189, 196, .07) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(900px 560px at 50% 22%, #000 25%, transparent 78%);
    -webkit-mask-image: radial-gradient(900px 560px at 50% 22%, #000 25%, transparent 78%);
}

.tf-hero h1 { color: #fff; margin-bottom: 20px; }
.tf-hero .tf-lede { color: var(--tf-on-dark-mu); font-size: 1.1875rem; }

.tf-hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 60px;
    align-items: center;
}

.tf-hero.is-centered .tf-hero-grid { display: block; text-align: center; }
.tf-hero.is-centered .tf-lede { margin-inline: auto; }
.tf-hero.is-centered .tf-eyebrow::before { display: none; }

/* Compact hero for interior pages. */
.tf-hero.is-page {
    padding-block: 78px 82px;
}

.tf-hero.is-page h1 { font-size: clamp(2rem, 1.4rem + 2.1vw, 3rem); }

.tf-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 14px 6px 7px;
    border: 1px solid rgba(159, 189, 196, .26);
    border-radius: var(--tf-r-pill);
    background: rgba(35, 174, 196, .1);
    font-size: .8125rem;
    color: var(--tf-on-dark);
    margin-bottom: 22px;
}

.tf-hero-pill b {
    background: var(--tf-bright);
    color: var(--tf-dark);
    font-family: var(--tf-font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: var(--tf-r-pill);
}

.tf-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 40px;
    margin-top: 44px;
    padding-top: 30px;
    border-top: 1px solid rgba(159, 189, 196, .18);
}

.tf-hero-stat strong {
    display: block;
    font-family: var(--tf-font-display);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    line-height: 1.1;
}

.tf-hero-stat span {
    font-size: .8125rem;
    color: var(--tf-on-dark-mu);
}

/* Breadcrumb inside the page hero. */
.tf-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: var(--tf-font-mono);
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--tf-on-dark-mu);
    margin-bottom: 18px;
}

.tf-crumbs a { color: var(--tf-bright-lo); }
.tf-crumbs a:hover { color: #fff; }
.tf-crumbs span[aria-hidden] { opacity: .45; }


/* 8. Components ============================================================ */

/* 8.1 Product mock — a stylised app frame, drawn in CSS, no screenshots
   required. Screenshots go stale between releases; this does not. */

.tf-mock {
    border-radius: var(--tf-r-lg);
    background: #fff;
    border: 1px solid var(--tf-line);
    box-shadow: var(--tf-shadow-lg);
    overflow: hidden;
}

.tf-hero .tf-mock {
    border-color: rgba(159, 189, 196, .2);
    box-shadow: 0 40px 80px rgba(4, 18, 24, .5);
}

.tf-mock-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    background: var(--tf-bg-soft);
    border-bottom: 1px solid var(--tf-line);
}

.tf-mock-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #D6DEE0;
    flex: none;
}

.tf-mock-url {
    margin-left: 6px;
    flex: 1;
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r-pill);
    padding: 4px 12px;
    font-family: var(--tf-font-mono);
    font-size: 10.5px;
    color: var(--tf-faint);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tf-mock-body { padding: 18px; background: var(--tf-bg-soft); }

.tf-mock-row {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}

.tf-mock-row:last-child { margin-bottom: 0; }
.tf-mock-row.is-3 { grid-template-columns: repeat(3, 1fr); }
.tf-mock-row.is-2 { grid-template-columns: 1.6fr 1fr; }

.tf-mock-card {
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r-sm);
    padding: 13px 14px;
}

.tf-mock-label {
    font-family: var(--tf-font-mono);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--tf-faint);
    margin-bottom: 6px;
}

.tf-mock-value {
    font-family: var(--tf-font-display);
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--tf-ink);
    line-height: 1.1;
}

.tf-mock-delta {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 600;
    color: var(--tf-green);
    margin-top: 4px;
}

.tf-mock-delta.is-down { color: var(--tf-red); }

.tf-mock-chart {
    height: 104px;
    margin-top: 10px;
    display: block;
    width: 100%;
}

.tf-mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 78px;
    margin-top: 10px;
}

.tf-mock-bars i {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: var(--tf-bg-tint);
    display: block;
}

.tf-mock-bars i.is-on { background: var(--tf-brand); }

.tf-mock-list { display: grid; gap: 9px; margin-top: 10px; }

.tf-mock-line {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11.5px;
    color: var(--tf-muted);
}

.tf-mock-line b {
    margin-left: auto;
    font-family: var(--tf-font-mono);
    font-size: 11px;
    color: var(--tf-ink);
    font-weight: 500;
}

.tf-mock-pip {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--tf-brand);
    flex: none;
}

.tf-mock-pip.is-2 { background: var(--tf-bright); }
.tf-mock-pip.is-3 { background: var(--tf-brand-soft); }

.tf-mock-track {
    height: 5px;
    border-radius: 3px;
    background: var(--tf-bg-sunk);
    overflow: hidden;
    flex: 1;
    max-width: 90px;
}

.tf-mock-track i { display: block; height: 100%; background: var(--tf-brand); }

/* 8.2 Logo / trust strip */

.tf-logos { padding-block: 44px; border-bottom: 1px solid var(--tf-line); }

.tf-logos-label {
    text-align: center;
    font-family: var(--tf-font-mono);
    font-size: 10.5px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--tf-faint);
    margin-bottom: 26px;
}

.tf-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 22px 52px;
}

.tf-logo-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--tf-font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--tf-faint);
    filter: grayscale(1);
    opacity: .85;
    transition: opacity .2s var(--tf-ease), filter .2s var(--tf-ease), color .2s var(--tf-ease);
}

.tf-logo-item:hover { opacity: 1; filter: none; color: var(--tf-ink-2); }
.tf-logo-item svg { width: 22px; height: 22px; flex: none; }

.tf-logos.on-dark { border-bottom-color: rgba(159, 189, 196, .16); }
.tf-logos.on-dark .tf-logo-item { color: var(--tf-on-dark-mu); }
.tf-logos.on-dark .tf-logos-label { color: var(--tf-on-dark-mu); opacity: .8; }

/* 8.3 Cards */

.tf-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r);
    padding: 28px;
    transition: border-color .2s var(--tf-ease),
                box-shadow .25s var(--tf-ease),
                transform .25s var(--tf-ease);
}

.tf-card.is-hover:hover {
    border-color: var(--tf-brand-soft);
    box-shadow: var(--tf-shadow);
    transform: translateY(-3px);
}

.tf-card h3 { margin-bottom: 10px; font-size: 1.1875rem; }
.tf-card p { font-size: .9375rem; color: var(--tf-body); }
.tf-card .tf-btn-link { margin-top: auto; padding-top: 18px; }

.tf-card.on-dark {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(159, 189, 196, .18);
}

.tf-card.on-dark p { color: var(--tf-on-dark-mu); }

.tf-icon {
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: var(--tf-r-sm);
    display: grid;
    place-items: center;
    background: var(--tf-bg-tint);
    color: var(--tf-brand);
    margin-bottom: 20px;
}

.tf-icon svg { width: 22px; height: 22px; }
.tf-icon.is-sm { width: 36px; height: 36px; border-radius: var(--tf-r-xs); margin-bottom: 14px; }
.tf-icon.is-sm svg { width: 18px; height: 18px; }

.tf-icon.is-solid {
    background: linear-gradient(145deg, var(--tf-brand) 0%, var(--tf-brand-deep) 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(15, 122, 139, .24);
}

.tf-icon.on-dark { background: rgba(35, 174, 196, .16); color: var(--tf-bright-lo); }

/* Service card — the three-service grid on the home page. */
.tf-service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r-lg);
    overflow: hidden;
    transition: border-color .2s var(--tf-ease),
                box-shadow .25s var(--tf-ease),
                transform .25s var(--tf-ease);
}

.tf-service-card:hover {
    border-color: var(--tf-brand-soft);
    box-shadow: var(--tf-shadow);
    transform: translateY(-4px);
}

.tf-service-card-top {
    padding: 30px 30px 26px;
    border-bottom: 1px solid var(--tf-line-soft);
}

.tf-service-card-num {
    font-family: var(--tf-font-mono);
    font-size: 10.5px;
    letter-spacing: .14em;
    color: var(--tf-faint);
    display: block;
    margin-bottom: 16px;
}

.tf-service-card h3 { font-size: 1.3125rem; margin-bottom: 10px; }
.tf-service-card p { font-size: .9375rem; margin: 0; }

.tf-service-card-body { padding: 24px 30px 30px; display: flex; flex-direction: column; flex: 1; }

.tf-service-card .tf-checklist { margin-bottom: 22px; }
.tf-service-card .tf-btn-link { margin-top: auto; }

/* 8.4 Checklist / feature list */

.tf-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.tf-checklist li {
    position: relative;
    padding-left: 28px;
    font-size: .9375rem;
    color: var(--tf-body);
    line-height: 1.55;
}

.tf-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .3em;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--tf-bg-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F7A8B' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px 11px no-repeat;
}

.tf-checklist.is-2col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 28px; }
.tf-checklist.on-dark li { color: var(--tf-on-dark-mu); }

.tf-checklist.on-dark li::before {
    background-color: rgba(35, 174, 196, .16);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237FD8E6' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* A list where each row carries a label and a short explanation. */
.tf-deflist { display: grid; gap: 22px; margin: 0; padding: 0; list-style: none; }

.tf-deflist li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 16px;
    align-items: start;
}

.tf-deflist .tf-deflist-mark {
    width: 34px;
    height: 34px;
    border-radius: var(--tf-r-xs);
    display: grid;
    place-items: center;
    background: var(--tf-bg-tint);
    color: var(--tf-brand);
    flex: none;
}

.tf-deflist .tf-deflist-mark svg { width: 17px; height: 17px; }

.tf-deflist h4 { margin: 2px 0 4px; font-size: 1rem; }
.tf-deflist p { font-size: .9375rem; margin: 0; }

/* 8.5 Numbered steps */

.tf-steps {
    counter-reset: tf-step;
    display: grid;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tf-step {
    counter-increment: tf-step;
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding: 0 0 30px;
}

.tf-step::before {
    content: counter(tf-step, decimal-leading-zero);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--tf-line);
    font-family: var(--tf-font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--tf-brand);
    z-index: 1;
}

/* The connector belongs to the step above it, so the last one has none. */
.tf-step::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 44px;
    bottom: 0;
    width: 1px;
    background: var(--tf-line);
}

.tf-step:last-child { padding-bottom: 0; }
.tf-step:last-child::after { display: none; }

.tf-step h4 { margin: 10px 0 6px; font-size: 1.0625rem; }
.tf-step p { font-size: .9375rem; margin: 0; }

.tf-steps.on-dark .tf-step::before {
    background: var(--tf-dark-2);
    border-color: rgba(159, 189, 196, .22);
    color: var(--tf-bright-lo);
}

.tf-steps.on-dark .tf-step::after { background: rgba(159, 189, 196, .18); }
.tf-steps.on-dark .tf-step p { color: var(--tf-on-dark-mu); }

/* 8.6 Stats band */

.tf-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--tf-line);
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r);
    overflow: hidden;
}

.tf-stat { background: #fff; padding: 30px 26px; text-align: center; }

.tf-stat strong {
    display: block;
    font-family: var(--tf-font-display);
    font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.035em;
    color: var(--tf-brand);
    line-height: 1.05;
    margin-bottom: 6px;
}

.tf-stat span { font-size: .875rem; color: var(--tf-muted); }

.tf-stats.on-dark { background: rgba(159, 189, 196, .18); border-color: rgba(159, 189, 196, .18); }
.tf-stats.on-dark .tf-stat { background: var(--tf-dark-2); }
.tf-stats.on-dark .tf-stat strong { color: var(--tf-bright-lo); }
.tf-stats.on-dark .tf-stat span { color: var(--tf-on-dark-mu); }

/* 8.7 Quote / testimonial */

.tf-quote {
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tf-quote-text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--tf-ink-2);
    margin: 0;
}

.tf-quote-by {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.tf-avatar {
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--tf-bg-tint);
    color: var(--tf-brand-dark);
    font-family: var(--tf-font-display);
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: -.02em;
}

.tf-quote-by strong { display: block; font-size: .9375rem; color: var(--tf-ink); }
.tf-quote-by span { display: block; font-size: .8125rem; color: var(--tf-muted); }

.tf-stars { display: flex; gap: 2px; color: var(--tf-amber); }
.tf-stars svg { width: 15px; height: 15px; fill: currentColor; }

/* 8.8 Accordion (FAQ) */

.tf-accordion { border-top: 1px solid var(--tf-line); }

.tf-acc-item { border-bottom: 1px solid var(--tf-line); }

.tf-acc-trigger {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    padding: 22px 0;
    background: none;
    border: 0;
    text-align: left;
    cursor: pointer;
    font-family: var(--tf-font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -.015em;
    color: var(--tf-ink);
    transition: color .18s var(--tf-ease);
}

.tf-acc-trigger:hover { color: var(--tf-brand); }

.tf-acc-sign {
    position: relative;
    width: 20px;
    height: 20px;
    flex: none;
    margin-top: 3px;
}

.tf-acc-sign::before,
.tf-acc-sign::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 13px;
    height: 1.8px;
    background: var(--tf-brand);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .25s var(--tf-ease), opacity .25s var(--tf-ease);
}

.tf-acc-sign::after { transform: translate(-50%, -50%) rotate(90deg); }

.tf-acc-trigger[aria-expanded="true"] .tf-acc-sign::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.tf-acc-panel {
    overflow: hidden;
    height: 0;
    transition: height .28s var(--tf-ease);
}

.tf-acc-panel > div { padding: 0 44px 24px 0; }
.tf-acc-panel p { font-size: .9375rem; }

/* 8.9 Tabs */

.tf-tabs {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    background: var(--tf-bg-sunk);
    border-radius: var(--tf-r-pill);
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.tf-tab {
    padding: 9px 20px;
    border: 0;
    background: transparent;
    border-radius: var(--tf-r-pill);
    font-family: var(--tf-font-display);
    font-size: .875rem;
    font-weight: 600;
    color: var(--tf-muted);
    cursor: pointer;
    transition: background .18s var(--tf-ease), color .18s var(--tf-ease);
}

.tf-tab:hover { color: var(--tf-ink); }

.tf-tab[aria-selected="true"] {
    background: #fff;
    color: var(--tf-brand-dark);
    box-shadow: var(--tf-shadow-xs);
}

.tf-tabpanel[hidden] { display: none; }

/* 8.10 CTA band */

.tf-cta {
    position: relative;
    background: var(--tf-dark);
    border-radius: var(--tf-r-xl);
    padding: 64px 56px;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}

.tf-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(700px 360px at 82% 0%, rgba(35, 174, 196, .32), transparent 62%),
        radial-gradient(600px 340px at 10% 106%, rgba(15, 122, 139, .38), transparent 66%);
}

.tf-cta h2 { color: #fff; margin-bottom: 14px; }
.tf-cta .tf-lede { color: var(--tf-on-dark-mu); margin-inline: auto; margin-bottom: 30px; }
.tf-cta .tf-eyebrow { color: var(--tf-bright-lo); }
.tf-cta .tf-eyebrow::before { display: none; }

/* 8.11 Callout / notice */

.tf-callout {
    display: flex;
    gap: 14px;
    padding: 20px 22px;
    border-radius: var(--tf-r);
    background: var(--tf-bg-tint);
    border: 1px solid #CFE5E9;
    color: var(--tf-ink-2);
    font-size: .9375rem;
}

.tf-callout svg { width: 19px; height: 19px; flex: none; color: var(--tf-brand); margin-top: 2px; }
.tf-callout.is-warn { background: var(--tf-amber-bg); border-color: #F0DFBC; }
.tf-callout.is-warn svg { color: var(--tf-amber); }
.tf-callout p:last-child { margin-bottom: 0; }

/* 8.12 Badge / pill */

.tf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 11px;
    border-radius: var(--tf-r-pill);
    font-family: var(--tf-font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--tf-bg-tint);
    color: var(--tf-brand-dark);
}

.tf-badge.is-green { background: var(--tf-green-bg); color: var(--tf-green); }
.tf-badge.is-amber { background: var(--tf-amber-bg); color: var(--tf-amber); }
.tf-badge.is-solid { background: var(--tf-brand); color: #fff; }

/* 8.13 Comparison table */

.tf-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r);
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.tf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9375rem;
    min-width: 720px;
}

.tf-table th, .tf-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--tf-line-soft);
    vertical-align: middle;
}

.tf-table thead th {
    background: var(--tf-bg-soft);
    font-family: var(--tf-font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tf-muted);
    white-space: nowrap;
    border-bottom-color: var(--tf-line);
    position: sticky;
    top: 0;
}

.tf-table tbody tr:last-child td { border-bottom: 0; }
.tf-table tbody tr:hover { background: #FBFDFD; }

.tf-table td:first-child { font-weight: 500; color: var(--tf-ink-2); }
.tf-table td.is-num { font-family: var(--tf-font-mono); font-size: .875rem; }

.tf-table .tf-group-row td {
    background: var(--tf-bg-soft);
    font-family: var(--tf-font-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tf-brand-dark);
    font-weight: 500;
}

.tf-yes, .tf-no { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; }
.tf-yes { background: var(--tf-green-bg); color: var(--tf-green); }
.tf-no  { background: var(--tf-bg-sunk); color: #B6C2C5; }
.tf-yes svg, .tf-no svg { width: 12px; height: 12px; }

/* 8.14 Integration tiles */

.tf-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    gap: 12px;
}

.tf-tile {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 16px;
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r-sm);
    font-size: .875rem;
    font-weight: 500;
    color: var(--tf-ink-2);
    transition: border-color .2s var(--tf-ease), box-shadow .2s var(--tf-ease);
}

.tf-tile:hover { border-color: var(--tf-brand-soft); box-shadow: var(--tf-shadow-sm); color: var(--tf-ink-2); }

.tf-tile-mark {
    width: 30px;
    height: 30px;
    flex: none;
    border-radius: var(--tf-r-xs);
    display: grid;
    place-items: center;
    background: var(--tf-bg-tint);
    color: var(--tf-brand);
    font-family: var(--tf-font-display);
    font-size: 12px;
    font-weight: 700;
}

.tf-tile-mark svg { width: 16px; height: 16px; }

/* 8.15 Feature row with a sticky media column */

.tf-featurerow + .tf-featurerow { margin-top: 96px; }


/* 9. Pricing =============================================================== */

.tf-price-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.tf-switch {
    position: relative;
    width: 50px;
    height: 28px;
    border-radius: var(--tf-r-pill);
    background: var(--tf-bg-sunk);
    border: 1px solid var(--tf-line);
    cursor: pointer;
    padding: 0;
    flex: none;
    transition: background .2s var(--tf-ease), border-color .2s var(--tf-ease);
}

.tf-switch::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--tf-shadow-sm);
    transform: translateY(-50%);
    transition: transform .22s var(--tf-ease);
}

.tf-switch[aria-checked="true"] { background: var(--tf-brand); border-color: var(--tf-brand); }
.tf-switch[aria-checked="true"]::after { transform: translate(22px, -50%); }

.tf-switch-label {
    font-family: var(--tf-font-display);
    font-size: .9375rem;
    font-weight: 600;
    color: var(--tf-muted);
    cursor: pointer;
}

.tf-switch-label.is-on { color: var(--tf-ink); }

.tf-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.tf-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r-lg);
    padding: 30px 28px 32px;
    transition: border-color .2s var(--tf-ease), box-shadow .25s var(--tf-ease);
}

.tf-plan:hover { border-color: var(--tf-brand-soft); box-shadow: var(--tf-shadow-sm); }

.tf-plan.is-featured {
    border-color: var(--tf-brand);
    border-width: 1.5px;
    box-shadow: var(--tf-shadow);
}

.tf-plan-flag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tf-brand);
    color: #fff;
    font-family: var(--tf-font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--tf-r-pill);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(15, 122, 139, .3);
}

.tf-plan-name {
    font-family: var(--tf-font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--tf-ink);
    margin-bottom: 4px;
}

.tf-plan-desc {
    font-size: .875rem;
    color: var(--tf-muted);
    min-height: 40px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.tf-plan-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 4px;
}

.tf-plan-amount {
    font-family: var(--tf-font-display);
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--tf-ink);
    line-height: 1;
}

.tf-plan-cur {
    font-family: var(--tf-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tf-muted);
    align-self: flex-start;
    margin-top: 4px;
}

.tf-plan-per { font-size: .875rem; color: var(--tf-muted); }

.tf-plan-annual {
    font-size: .8125rem;
    color: var(--tf-green);
    font-weight: 500;
    min-height: 20px;
    margin-bottom: 22px;
}

.tf-plan .tf-btn { margin-bottom: 24px; }

.tf-plan-features {
    list-style: none;
    margin: 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--tf-line-soft);
    display: grid;
    gap: 10px;
    flex: 1;
}

.tf-plan-features li {
    position: relative;
    padding-left: 25px;
    font-size: .875rem;
    color: var(--tf-body);
    line-height: 1.5;
}

.tf-plan-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .32em;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--tf-bg-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F7A8B' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 10px 10px no-repeat;
}

.tf-plan-features li b { color: var(--tf-ink-2); font-weight: 600; }

.tf-plan-features .tf-feature-head {
    padding-left: 0;
    font-family: var(--tf-font-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tf-faint);
    margin-top: 8px;
}

.tf-plan-features .tf-feature-head::before { display: none; }

/* Credits / add-on grid */
.tf-addon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 18px;
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r-sm);
}

.tf-addon strong { font-size: .9375rem; color: var(--tf-ink-2); font-weight: 600; }
.tf-addon span { font-size: .8125rem; color: var(--tf-muted); display: block; }

.tf-addon-price {
    font-family: var(--tf-font-display);
    font-weight: 700;
    color: var(--tf-brand);
    white-space: nowrap;
    font-size: 1.0625rem;
}


/* 10. Editorial (blog, single, legal, WYSIWYG) ============================= */

.tf-prose { font-size: 1.0625rem; line-height: 1.75; color: var(--tf-body); }

.tf-prose > * + * { margin-top: 1.15em; }

.tf-prose h2 {
    font-size: clamp(1.45rem, 1.2rem + .9vw, 1.9rem);
    margin-top: 1.9em;
    margin-bottom: .55em;
    scroll-margin-top: calc(var(--tf-header-h) + 20px);
}

.tf-prose h3 {
    font-size: 1.25rem;
    margin-top: 1.7em;
    margin-bottom: .5em;
    scroll-margin-top: calc(var(--tf-header-h) + 20px);
}

.tf-prose h4 { margin-top: 1.5em; margin-bottom: .4em; }
.tf-prose > :first-child { margin-top: 0; }

.tf-prose ul, .tf-prose ol { padding-left: 22px; margin-block: 1.15em; }
.tf-prose li { margin-bottom: .5em; }
.tf-prose li::marker { color: var(--tf-brand-soft); }

.tf-prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.tf-prose a:hover { text-decoration-thickness: 2px; }

.tf-prose img, .tf-prose figure { border-radius: var(--tf-r); }
.tf-prose figure { margin-inline: 0; }

.tf-prose figcaption {
    font-size: .8125rem;
    color: var(--tf-muted);
    text-align: center;
    margin-top: 10px;
}

.tf-prose table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.tf-prose th, .tf-prose td { padding: 11px 14px; border: 1px solid var(--tf-line); text-align: left; }
.tf-prose th { background: var(--tf-bg-soft); font-weight: 600; color: var(--tf-ink-2); }

.tf-prose .tf-callout { font-size: .9375rem; line-height: 1.6; }

/* Legal documents get a numbered-heading treatment and a contents rail. */
.tf-legal-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.tf-toc {
    position: sticky;
    top: calc(var(--tf-header-h) + 24px);
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r);
    padding: 20px;
    background: var(--tf-bg-soft);
}

.tf-toc-title {
    font-family: var(--tf-font-mono);
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--tf-faint);
    margin-bottom: 12px;
}

.tf-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: tf-toc; display: grid; gap: 7px; }

.tf-toc li { counter-increment: tf-toc; }

.tf-toc a {
    display: flex;
    gap: 9px;
    font-size: .875rem;
    color: var(--tf-body);
    line-height: 1.45;
}

.tf-toc a::before {
    content: counter(tf-toc);
    font-family: var(--tf-font-mono);
    font-size: 11px;
    color: var(--tf-faint);
    flex: none;
    min-width: 14px;
}

.tf-toc a:hover { color: var(--tf-brand); }
.tf-toc a.is-active { color: var(--tf-brand); font-weight: 600; }

.tf-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--tf-font-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--tf-muted);
    background: var(--tf-bg-soft);
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r-pill);
    padding: 6px 14px;
    margin-bottom: 30px;
}

/* Post cards */

.tf-post-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r);
    overflow: hidden;
    transition: border-color .2s var(--tf-ease), box-shadow .25s var(--tf-ease), transform .25s var(--tf-ease);
}

.tf-post-card:hover { border-color: var(--tf-brand-soft); box-shadow: var(--tf-shadow); transform: translateY(-3px); }

.tf-post-thumb {
    aspect-ratio: 16 / 9;
    background: linear-gradient(140deg, var(--tf-bg-tint), var(--tf-bg-soft));
    overflow: hidden;
    display: block;
}

.tf-post-thumb img { width: 100%; height: 100%; object-fit: cover; }

.tf-post-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }

.tf-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: var(--tf-font-mono);
    font-size: 10.5px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--tf-faint);
    margin-bottom: 12px;
}

.tf-post-meta a { color: var(--tf-brand); }

.tf-post-card h3 { font-size: 1.125rem; margin-bottom: 9px; }
.tf-post-card h3 a { color: inherit; }
.tf-post-card h3 a:hover { color: var(--tf-brand); }
.tf-post-card p { font-size: .9375rem; margin-bottom: 16px; }
.tf-post-card .tf-btn-link { margin-top: auto; }

.tf-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 56px;
}

.tf-pagination .page-numbers {
    display: inline-grid;
    place-items: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r-xs);
    font-size: .875rem;
    font-weight: 600;
    color: var(--tf-ink-2);
    background: #fff;
}

.tf-pagination .page-numbers:hover { border-color: var(--tf-brand-soft); color: var(--tf-brand); }
.tf-pagination .page-numbers.current { background: var(--tf-brand); border-color: var(--tf-brand); color: #fff; }
.tf-pagination .page-numbers.dots { border-color: transparent; background: none; }

/* Single post furniture */

.tf-share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.tf-share a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r-xs);
    color: var(--tf-muted);
    background: #fff;
}

.tf-share a:hover { border-color: var(--tf-brand-soft); color: var(--tf-brand); }
.tf-share svg { width: 16px; height: 16px; }

.tf-tags { display: flex; flex-wrap: wrap; gap: 7px; }

.tf-tags a {
    font-size: .8125rem;
    padding: 5px 12px;
    border-radius: var(--tf-r-pill);
    background: var(--tf-bg-soft);
    border: 1px solid var(--tf-line);
    color: var(--tf-muted);
}

.tf-tags a:hover { background: var(--tf-bg-tint); border-color: var(--tf-brand-soft); color: var(--tf-brand-dark); }


/* 11. Forms ================================================================ */

.tf-form { display: grid; gap: 18px; }

/* Fields are <p> for the sake of the markup, but the grid gap does all the
   spacing. Leaving the base paragraph margin on them is not cosmetic: the
   last field in a row matches `p:last-child`, loses its bottom margin, and
   so stretches ~18px taller than its sibling — and `align-content: stretch`
   then pushes that space into the label and the input, which is why the
   right-hand column used to sit lower than the left. */
.tf-form p { margin: 0; }

.tf-field {
    display: grid;
    gap: 6px;
    align-content: start;
    margin: 0;
}

.tf-field label,
.tf-label {
    font-family: var(--tf-font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tf-muted);
}

.tf-field .tf-req { color: var(--tf-red); }

.tf-input,
.tf-field input[type="text"],
.tf-field input[type="email"],
.tf-field input[type="tel"],
.tf-field input[type="url"],
.tf-field input[type="search"],
.tf-field select,
.tf-field textarea {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r-sm);
    font-size: .9375rem;
    color: var(--tf-ink);
    transition: border-color .18s var(--tf-ease), box-shadow .18s var(--tf-ease);
}

.tf-field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }

.tf-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2366797F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    background-size: 15px;
    padding-right: 38px;
}

.tf-input::placeholder,
.tf-field input::placeholder,
.tf-field textarea::placeholder { color: var(--tf-faint); }

.tf-input:focus,
.tf-field input:focus,
.tf-field select:focus,
.tf-field textarea:focus {
    outline: none;
    border-color: var(--tf-brand-soft);
    box-shadow: 0 0 0 3px rgba(15, 122, 139, .12);
}

.tf-field.has-error input,
.tf-field.has-error textarea,
.tf-field.has-error select { border-color: var(--tf-red); }

.tf-field-error { font-size: .8125rem; color: var(--tf-red); }

.tf-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.tf-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .8125rem;
    color: var(--tf-muted);
    line-height: 1.5;
}

.tf-consent input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin: 2px 0 0;
    accent-color: var(--tf-brand);
    flex: none;
}

/* The honeypot. Hidden from people, reachable by bots. */
.tf-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.tf-alert {
    padding: 14px 18px;
    border-radius: var(--tf-r-sm);
    font-size: .9375rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.tf-alert svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.tf-alert.is-ok   { background: var(--tf-green-bg); color: var(--tf-green); }
.tf-alert.is-err  { background: var(--tf-red-bg); color: var(--tf-red); }

.tf-form-card {
    background: #fff;
    border: 1px solid var(--tf-line);
    border-radius: var(--tf-r-lg);
    padding: 34px;
    box-shadow: var(--tf-shadow-sm);
}

/* Search form */
.tf-searchform { display: flex; gap: 8px; }
.tf-searchform input { flex: 1; }

/* Newsletter strip in the footer */
.tf-subscribe { display: flex; gap: 8px; flex-wrap: wrap; }

.tf-subscribe input {
    flex: 1;
    min-width: 180px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(159, 189, 196, .24);
    color: #fff;
    border-radius: var(--tf-r-sm);
    padding: 11px 14px;
    font-size: .9375rem;
}

.tf-subscribe input::placeholder { color: var(--tf-on-dark-mu); }

.tf-subscribe input:focus {
    outline: none;
    border-color: var(--tf-bright);
    box-shadow: 0 0 0 3px rgba(35, 174, 196, .18);
}


/* 12. Footer =============================================================== */

.tf-footer {
    background: var(--tf-dark);
    color: var(--tf-on-dark-mu);
    padding-top: 72px;
    font-size: .9375rem;
}

.tf-footer-top {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 44px;
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(159, 189, 196, .16);
}

.tf-footer-about p { font-size: .9375rem; margin: 18px 0 24px; max-width: 34ch; }

.tf-footer h4 {
    font-family: var(--tf-font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--tf-on-dark-mu);
    opacity: .75;
    margin: 0 0 16px;
}

.tf-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.tf-footer li a { color: var(--tf-on-dark); font-size: .9375rem; }
.tf-footer li a:hover { color: var(--tf-bright-lo); }

.tf-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 28px;
    padding-block: 26px 34px;
    font-size: .8125rem;
}

.tf-footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.tf-footer-legal a { color: var(--tf-on-dark-mu); }
.tf-footer-legal a:hover { color: #fff; }

.tf-social { display: flex; gap: 8px; }

.tf-social a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: var(--tf-r-xs);
    border: 1px solid rgba(159, 189, 196, .22);
    color: var(--tf-on-dark-mu);
}

.tf-social a:hover { border-color: var(--tf-bright); color: #fff; background: rgba(35, 174, 196, .12); }
.tf-social svg { width: 16px; height: 16px; }

.tf-footer-contact { display: grid; gap: 10px; margin-top: 4px; }

.tf-footer-contact a,
.tf-footer-contact span {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: .875rem;
    color: var(--tf-on-dark);
    line-height: 1.5;
}

.tf-footer-contact svg { width: 15px; height: 15px; flex: none; margin-top: 3px; color: var(--tf-bright); }


/* 13. Utilities ============================================================ */

.tf-mt-0  { margin-top: 0 !important; }
.tf-mt-16 { margin-top: 16px; }
.tf-mt-24 { margin-top: 24px; }
.tf-mt-32 { margin-top: 32px; }
.tf-mt-40 { margin-top: 40px; }
.tf-mt-56 { margin-top: 56px; }
.tf-mb-0  { margin-bottom: 0 !important; }
.tf-mb-16 { margin-bottom: 16px; }
.tf-mb-24 { margin-bottom: 24px; }
.tf-mb-32 { margin-bottom: 32px; }
.tf-mb-40 { margin-bottom: 40px; }

.tf-center { text-align: center; }
.tf-relative { position: relative; }
.tf-sticky-media { position: sticky; top: calc(var(--tf-header-h) + 32px); }


/* 14. Motion =============================================================== */

/* Progressive: the class is only added by JS when IntersectionObserver exists,
   so with JS off every section is simply visible. */
.tf-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s var(--tf-ease), transform .6s var(--tf-ease);
    will-change: opacity, transform;
}

.tf-reveal.is-in { opacity: 1; transform: none; }

.tf-reveal[data-delay="1"] { transition-delay: .08s; }
.tf-reveal[data-delay="2"] { transition-delay: .16s; }
.tf-reveal[data-delay="3"] { transition-delay: .24s; }
.tf-reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }

    .tf-reveal { opacity: 1; transform: none; }
}


/* 15. Responsive =========================================================== */

@media (max-width: 1100px) {
    :root { --tf-section: 80px; }

    .tf-footer-top { grid-template-columns: 1.3fr repeat(2, 1fr); gap: 36px; }
    .tf-split { gap: 44px; }
    .tf-legal-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 40px; }
}

@media (max-width: 980px) {
    .tf-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .tf-hero { padding-block: 72px 80px; }
    .tf-grid.is-4 { grid-template-columns: repeat(2, 1fr); }
    .tf-price-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
    .tf-plan-desc { min-height: 0; }
    .tf-stats { grid-template-columns: repeat(2, 1fr); }
    .tf-legal-layout { grid-template-columns: 1fr; gap: 32px; }
    .tf-toc { position: static; }

    /* --- Mobile navigation ------------------------------------------------
       The desktop dropdown becomes a stacked list inside a sheet that slides
       down from the header. Everything is still the same markup and the same
       WordPress menu. */

    .tf-nav-toggle { display: inline-flex; }

    /* Anchored to the header rather than to the viewport. The announcement
       bar is 40px tall until the page scrolls and then it is gone, so any
       fixed offset is wrong half the time; `top: 100%` on a child of the
       sticky header is right in both states. */
    .tf-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: calc(100vh - var(--tf-header-h));
        background: #fff;
        padding: 20px var(--tf-gutter) 40px;
        overflow-y: auto;
        overscroll-behavior: contain;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .22s var(--tf-ease), transform .22s var(--tf-ease), visibility .22s;
        border-top: 1px solid var(--tf-line);
        box-shadow: 0 18px 40px rgba(16, 36, 44, .14);
    }

    body.tf-nav-open .tf-nav { opacity: 1; visibility: visible; transform: none; }

    .tf-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }

    .tf-nav > ul > li > a {
        padding: 13px 4px;
        font-size: 1.0625rem;
        border-radius: 0;
        border-bottom: 1px solid var(--tf-line-soft);
        justify-content: space-between;
    }

    .tf-nav > ul > li > a:hover { background: none; }

    .tf-nav .menu-item-has-children > a::after { opacity: .7; }

    .tf-nav ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: 0;
        box-shadow: none;
        background: var(--tf-bg-soft);
        border-radius: var(--tf-r-sm);
        margin: 6px 0 10px;
        padding: 6px;
        min-width: 0;
        display: none;
    }

    .tf-nav li.is-open > ul { display: block; }
    .tf-nav ul ul::before { display: none; }
    .tf-nav ul ul ul { left: auto; top: auto; margin-left: 12px; }

    .tf-header-actions .tf-login { display: none; }
    .tf-header-inner { gap: 12px; }
    .tf-brand { margin-right: auto; }
}

@media (max-width: 760px) {
    :root { --tf-section: 64px; --tf-gutter: 20px; }

    .tf-grid.is-2,
    .tf-grid.is-3,
    .tf-grid.is-4 { grid-template-columns: 1fr; }

    .tf-split { grid-template-columns: 1fr; gap: 36px; }
    .tf-split.is-media-first > *:first-child { order: 0; }
    .tf-checklist.is-2col { grid-template-columns: 1fr; }
    .tf-field-row { grid-template-columns: 1fr; }
    .tf-cta { padding: 44px 24px; border-radius: var(--tf-r-lg); }
    .tf-footer-top { grid-template-columns: 1fr; gap: 32px; }
    .tf-section-head { margin-bottom: 36px; }
    .tf-form-card { padding: 24px; }
    .tf-mock-row.is-3 { grid-template-columns: 1fr 1fr; }
    .tf-mock-row.is-2 { grid-template-columns: 1fr; }
    .tf-featurerow + .tf-featurerow { margin-top: 64px; }
    .tf-hero-stats { gap: 18px 28px; }
    .tf-topbar-inner { font-size: .75rem; padding-block: 8px; }
    .tf-acc-panel > div { padding-right: 8px; }
}

@media (max-width: 480px) {
    .tf-stats { grid-template-columns: 1fr; }
    .tf-btn { width: 100%; }
    .tf-actions { flex-direction: column; align-items: stretch; }
    .tf-actions .tf-note { justify-content: center; }
    .tf-brand-sub { display: none; }
    .tf-mock-row.is-3 { grid-template-columns: 1fr; }
}


/* 16. Print ================================================================ */

@media print {
    .tf-header, .tf-footer, .tf-topbar, .tf-cta, .tf-nav-toggle, .tf-share { display: none !important; }
    body { color: #000; background: #fff; font-size: 11pt; }
    .tf-hero { background: none !important; color: #000; padding-block: 0 24px; }
    .tf-hero h1, .tf-hero .tf-lede { color: #000 !important; }
    .tf-hero::before, .tf-hero::after { display: none; }
    a { color: #000; text-decoration: underline; }
    .tf-section { padding-block: 16px; }
}
