/*
 * ATAPIC landing page styles.
 *
 * Extracted from Views/Home/Index.cshtml when the Razor compile pool hit
 * the CS8103 user-string limit. Keeping this as a static CSS file (not a
 * compiled .cshtml string constant) is what brings the build back under
 * the threshold. The page is still Layout = null and the only stylesheet
 * it needs. Filename is lowercase to match the WebOptimizer pipeline
 * entry in Program.cs: MinifyCssFiles("css/site.css", "css/landing.css").
 */

:root {
    /* Brand cyan-teal - matches what users see on /chat (#00b3c9 family,
       346+ uses across views & wwwroot/css). Same in both themes. */
    --primary: #00b3c9;
    --primary-dark: #0090a3;
    --primary-light: #00d4e6;

    /* Surface tokens - flipped by [data-theme="dark"] below */
    --text-dark: #0a0e27;
    --text-light: #6c7280;
    --bg-light: #f7f9fb;
    --bg-white: #ffffff;
    --neutral-100: #f1f3f5;
    --neutral-200: #e6e9ef;
    --neutral-300: #d7dbe3;
    --surface: #ffffff;
    --surface-input: #fdfefe;
    --text-placeholder: #b0b5c0;
    --border-subtle: rgba(0,0,0,0.05);
    --nav-bg: rgba(255,255,255,0.92);
    --footer-bg: #0a0e27;
    --footer-text: #cbd5e1;

    --shadow-sm: 0 6px 18px rgba(10,14,39,.06);
    --shadow-md: 0 14px 40px rgba(10,14,39,.10);
    --radius: 18px;
}

[data-theme="dark"] :root,
[data-theme="dark"] {
    --text-dark: #e7eaf2;
    --text-light: #9aa3b2;
    --bg-light: #0e1525;
    --bg-white: #0a0f1c;
    --neutral-100: #1a2030;
    --neutral-200: #2a3142;
    --neutral-300: #3a4256;
    --surface: #131a2a;
    --surface-input: #0e1525;
    --text-placeholder: #5b6478;
    --border-subtle: rgba(255,255,255,0.06);
    --nav-bg: rgba(10,15,28,0.85);
    --footer-bg: #05080f;
    --footer-text: #9aa3b2;
    --shadow-sm: 0 6px 18px rgba(0,0,0,.4);
    --shadow-md: 0 14px 40px rgba(0,0,0,.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
    transition: background-color .2s ease, color .2s ease;
}

a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section { padding: 80px 0; }
.section-light { background-color: var(--bg-light); }

/* Top nav */
.nav {
    position: sticky; top: 0; z-index: 50;
    background: var(--nav-bg); backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 14px 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; }
.nav-brand img { width: 28px; height: 28px; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-link {
    font-size: 14px; color: var(--text-light); padding: 8px 12px; border-radius: 8px;
}
.nav-link:hover { color: var(--text-dark); background: var(--neutral-100); }
.nav-cta {
    background: var(--primary); color: #fff !important;
    padding: 9px 18px; border-radius: 999px; font-weight: 600; font-size: 14px;
    transition: background .15s, transform .12s;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.nav-theme-toggle {
    background: transparent; border: 1px solid var(--neutral-200);
    border-radius: 999px; width: 36px; height: 36px; cursor: pointer;
    color: var(--text-dark); display: inline-flex; align-items: center;
    justify-content: center; transition: background .15s, border-color .15s;
}
.nav-theme-toggle:hover { background: var(--neutral-100); border-color: var(--neutral-300); }
.nav-theme-toggle .material-icons { font-size: 20px; }

/* Mobile nav drawer */
.nav-burger {
    display: none; background: transparent; border: 1px solid var(--neutral-200);
    border-radius: 999px; width: 36px; height: 36px; cursor: pointer;
    color: var(--text-dark); align-items: center; justify-content: center;
}
.nav-burger .material-icons { font-size: 22px; }
.nav-drawer {
    position: fixed; inset: 0; background: var(--bg-white); z-index: 60;
    transform: translateX(100%); transition: transform .25s ease;
    display: flex; flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; border-bottom: 1px solid var(--border-subtle);
}
.nav-drawer-body { padding: 12px 12px 24px; overflow-y: auto; flex: 1; }
.nav-drawer-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; border-radius: 12px; font-size: 17px;
    color: var(--text-dark); font-weight: 500;
}
.nav-drawer-link:hover { background: var(--neutral-100); }
.nav-drawer-link .material-icons { color: var(--text-light); font-size: 20px; }
.nav-drawer hr {
    border: 0; border-top: 1px solid var(--border-subtle); margin: 12px 4px;
}
.nav-drawer-cta {
    display: block; margin: 8px 4px 0; padding: 14px 18px; border-radius: 999px;
    background: var(--primary); color: #fff !important; text-align: center;
    font-weight: 600; font-size: 16px;
}
.nav-drawer-cta:hover { background: var(--primary-dark); }
body.nav-open { overflow: hidden; }

/* Hero */
.hero-section {
    background: var(--bg-white);
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
}
/* Full-spread cyan ambient (matches /careers + /pricing hero pattern):
   broad ellipse anchored to the top that fades through the headline
   area, plus a soft bottom edge so the section blends into the
   next section without a hard seam. */
.hero-section::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 1200px 700px at 50% -10%, rgba(0,179,201,.16), transparent 65%),
        radial-gradient(ellipse 800px 500px at 50% 110%, rgba(0,179,201,.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
[data-theme="dark"] .hero-section::before {
    background:
        radial-gradient(ellipse 1200px 700px at 50% -10%, rgba(0,179,201,.22), transparent 65%),
        radial-gradient(ellipse 800px 500px at 50% 110%, rgba(0,179,201,.10), transparent 70%);
}

/* Subtle cyan tint to alternating sections so the cyan motif carries
   through the whole page instead of stopping at the hero. */
.section-light {
    position: relative;
    overflow: hidden;
}
.section-light::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse 900px 500px at 50% 0%, rgba(0,179,201,.04), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.section-light > .container { position: relative; z-index: 1; }

[data-theme="dark"] .section-light::before {
    background: radial-gradient(ellipse 900px 500px at 50% 0%, rgba(0,179,201,.07), transparent 70%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.pre-headline {
    font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 16px; opacity: .8; font-weight: 700;
}
.hero-headline {
    font-size: clamp(34px, 5vw, 52px); font-weight: 800; line-height: 1.15;
    margin-bottom: 18px; letter-spacing: -.4px;
}
.hero-subheadline {
    font-size: clamp(15px, 1.5vw, 18px); color: var(--text-light);
    max-width: 720px; margin: 0 auto 28px; line-height: 1.6;
}
.trust-badges {
    display: flex; justify-content: center; gap: 14px; margin: 10px 0 36px; flex-wrap: wrap;
    color: var(--text-light);
}
.trust-badge {
    font-size: 13px; opacity: .95; display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 999px; background: var(--surface);
    border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm);
}

/* AI card */
.ai-card-wrapper { display: flex; justify-content: center; margin-top: 10px; }
.ai-card {
    width: 100%; max-width: 960px; background: var(--surface); border-radius: 24px;
    box-shadow: 0 24px 70px rgba(10,14,39,.10); border: 1px solid var(--neutral-200);
    padding: 20px 26px 18px; text-align: left;
}
.ai-card-header {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; margin-bottom: 14px; color: var(--text-light);
}
.ai-card-title { font-weight: 600; }
.ai-status { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; }
.ai-status-dot {
    width: 8px; height: 8px; border-radius: 999px; background: #16c784;
    box-shadow: 0 0 0 4px rgba(22,199,132,.2);
}
.ai-input-row {
    display: flex; align-items: center; gap: 10px;
    background: var(--surface-input); border-radius: 999px; border: 1px solid var(--neutral-200);
    padding: 10px 12px 10px 22px; box-shadow: 0 8px 30px rgba(10,14,39,.06);
}
.ai-input {
    flex: 1; border: none; outline: none; background: transparent;
    font-size: 17px; padding: 14px 0; color: var(--text-dark);
}
.ai-input::placeholder { color: var(--text-placeholder); }
.ai-send-btn {
    width: 44px; height: 44px; border-radius: 999px; border: none; outline: none;
    background: var(--primary); color: #fff; padding: 0;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    flex-shrink: 0; transition: background .15s ease, transform .12s ease;
}
.ai-send-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.ai-send-btn:active { transform: translateY(0); }
.ai-send-arrow { font-size: 24px; font-weight: 600; }
.ai-suggestions { margin-top: 14px; font-size: 13px; color: var(--text-light); }
.ai-suggestions-label { margin-bottom: 8px; }
.ai-suggestion-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.ai-pill {
    border-radius: 999px; border: 1px solid var(--neutral-300); background: var(--surface);
    padding: 6px 14px; font-size: 12px; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background .15s ease, border-color .15s ease, transform .1s ease;
    color: var(--text-dark);
}
.ai-pill:hover { border-color: var(--primary); background: rgba(0,179,201,0.06); transform: translateY(-1px); }
.ai-note { margin-top: 18px; font-size: 13px; color: var(--text-light); }
.ai-note a { color: var(--primary-dark); font-weight: 600; }
.ai-note a:hover { text-decoration: underline; }

/* Section headers */
.section-header { text-align: center; margin-bottom: 54px; }
.section-headline {
    font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 12px;
    color: var(--text-dark); letter-spacing: -.25px;
}
.section-subheadline {
    font-size: 18px; color: var(--text-light); max-width: 760px;
    margin: 0 auto; line-height: 1.8;
}

/* Cards */
.grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px; margin-top: 34px;
}
/* Force an even 4-up row for the four-responsibilities section so the
   last card never orphans onto its own row. Collapses to 2x2, then 1-up. */
.grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid.grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid.grid-4 { grid-template-columns: 1fr; } }
.card {
    background: var(--surface); padding: 28px; border-radius: 14px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--neutral-200);
    transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card h3 { font-size: 18px; margin-bottom: 8px; text-align: center; }
.card p { color: var(--text-light); }
.icon {
    width: 56px; height: 56px; background: rgba(0,179,201,0.10);
    border-radius: 14px; color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.icon .material-icons { font-size: 28px; line-height: 1; }
[data-theme="dark"] .icon { background: rgba(0,179,201,0.16); }
.trust-badge .material-icons {
    font-size: 16px; color: var(--primary); vertical-align: -3px; margin-right: 4px;
}

/* Chrome extension card */
.extension-card {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
    align-items: center;
    background: var(--surface); border: 1px solid var(--neutral-200);
    border-radius: 24px; padding: 56px;
    box-shadow: var(--shadow-md);
}
.extension-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--primary-dark);
    background: rgba(0,179,201,0.10); padding: 6px 12px; border-radius: 999px;
    margin-bottom: 16px;
}
.extension-eyebrow .material-icons { font-size: 16px; }
[data-theme="dark"] .extension-eyebrow {
    color: var(--primary-light); background: rgba(0,179,201,0.18);
}
.extension-list { list-style: none; padding: 0; margin: 0 0 26px; }
.extension-list li {
    padding: 8px 0 8px 28px; position: relative; color: var(--text-dark);
    font-size: 15px; line-height: 1.6;
}
.extension-list li::before {
    content: "✓"; position: absolute; left: 0;
    color: var(--primary); font-weight: 800;
}
.extension-visual { display: flex; align-items: center; justify-content: center; }

/* Labelled placeholder for screenshots we don't have yet */
.visual-placeholder {
    width: 100%; aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(0,179,201,0.08), transparent);
    border: 1px dashed var(--neutral-300); border-radius: 14px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; color: var(--text-light);
}
.visual-placeholder-icon { font-size: 48px; color: var(--primary); }
.visual-placeholder-label { font-size: 13px; font-weight: 600; letter-spacing: .3px; }

@media (max-width: 992px) {
    .extension-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
    .extension-card .section-headline { text-align: center !important; }
    .extension-card .section-subheadline { text-align: center !important; }
}

/* Steps */
.steps-container { display: flex; flex-direction: column; gap: 100px; margin-top: 60px; }
.step { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.step-content { padding-right: 20px; }
.step-visual img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.08); }

@media (max-width: 992px) {
    .step { grid-template-columns: 1fr; text-align: center; }
    .step-content { padding-right: 0; }
}

.step-number {
    background: var(--neutral-100); color: var(--text-dark);
    width: 46px; height: 46px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800; margin-bottom: 14px;
    border: 1px solid var(--neutral-200);
}
.step h3 { font-size: 28px; margin-bottom: 10px; }
.step p  { font-size: 18px; color: var(--text-light); margin-bottom: 16px; }
.step-features { list-style: none; padding: 0; }
.step-features li {
    padding: 10px 0 10px 28px; position: relative; color: var(--text-dark);
}
.step-features li::before {
    content: "✓"; position: absolute; left: 0; color: var(--primary-dark); font-weight: 800;
}

/* Alternate even steps */
.step:nth-child(even) .step-content { order: 2; }
.step:nth-child(even) .step-visual { order: 1; }
@media (max-width: 992px) {
    .step .step-content, .step .step-visual { order: 0; }
}

/* Final CTA + flow */
.final-cta { background: transparent; color: var(--text-dark); padding: 80px 0 90px; text-align: center; }
.steps-flow {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px; margin: 40px auto 26px; max-width: 980px;
}
/* Even 4-up flow (behavior -> growth narrative) so the last step never orphans.
   Collapses to 2x2, then single column. */
.steps-flow.steps-flow-4 { grid-template-columns: repeat(4, 1fr); max-width: 1140px; }
@media (max-width: 1024px) { .steps-flow.steps-flow-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps-flow.steps-flow-4 { grid-template-columns: 1fr; } }
.flow-step {
    background: var(--surface); border: 1px solid var(--neutral-200); border-radius: 14px;
    padding: 24px; text-align: left; box-shadow: var(--shadow-sm);
}
.flow-step-number {
    font-size: 13px; font-weight: 900; margin-bottom: 10px;
    letter-spacing: .5px; color: var(--text-light);
}
.flow-step h3 { font-size: 18px; margin-bottom: 8px; }
.flow-step p  { color: var(--text-light); font-size: 14px; }

.primary-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 26px; border-radius: 999px; background: var(--primary);
    color: #fff !important; font-weight: 600; font-size: 16px;
    box-shadow: var(--shadow-md); margin-top: 18px; gap: 8px;
    transition: background .15s ease, transform .12s ease;
}
.primary-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

.secondary-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 26px; border-radius: 999px; background: transparent;
    color: var(--primary) !important; font-weight: 600; font-size: 16px;
    border: 1.5px solid var(--primary); margin-top: 18px; gap: 8px;
    transition: background .15s ease, color .15s ease, transform .12s ease;
}
.secondary-btn:hover { background: var(--primary); color: #fff !important; transform: translateY(-1px); }

.extension-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.extension-cta-row .primary-btn,
.extension-cta-row .secondary-btn { margin-top: 18px; }

/* Footer */
.footer {
    background: var(--footer-bg); color: var(--footer-text);
    padding: 64px 0 32px; font-size: 14px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px;
    margin-bottom: 40px;
}
.footer-brand-col p {
    margin-top: 12px; max-width: 320px; opacity: .7; line-height: 1.6;
}
.footer-brand {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 17px; color: var(--footer-text);
}
.footer-brand img { width: 28px; height: 28px; }
.footer-col h4 {
    font-size: 13px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 16px; opacity: .9;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: var(--footer-text); opacity: .7; font-size: 14px;
    transition: opacity .15s, color .15s;
}
.footer-col a:hover { opacity: 1; color: var(--primary-light); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px; opacity: .6; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand-col { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* Responsive */
@media (max-width: 860px) {
    .nav-link, .nav-cta { display: none; }
    .nav-burger { display: inline-flex; }
}

@media (max-width: 768px) {
    .section { padding: 44px 0; }
    .section-header { margin-bottom: 32px; }
    .hero-section { padding: 36px 0 40px; }
    .hero-headline { font-size: 28px; line-height: 1.2; margin-bottom: 14px; }
    .hero-subheadline { font-size: 14.5px; line-height: 1.55; margin-bottom: 22px; }
    .pre-headline { font-size: 11px; letter-spacing: 1.4px; margin-bottom: 12px; }
    .trust-badges { gap: 8px; margin: 6px 0 22px; }
    .trust-badge { font-size: 11.5px; padding: 5px 10px; gap: 4px; }
    .trust-badge .material-icons { font-size: 14px; }
    .ai-card { padding: 14px 14px 12px; border-radius: 18px; }
    .ai-card-header { font-size: 12px; margin-bottom: 10px; }
    .ai-input { font-size: 16px; padding: 10px 0; } /* >=16px stops iOS zoom */
    .ai-input-row { padding: 6px 6px 6px 14px; }
    .ai-send-btn { width: 40px; height: 40px; }
    .ai-send-arrow { font-size: 20px; }
    .ai-suggestions { margin-top: 10px; font-size: 12px; }
    .ai-pill { font-size: 12px; padding: 6px 11px; }
    .ai-note { font-size: 12px; margin-top: 14px; }
    .section-headline { font-size: 24px; letter-spacing: -.2px; }
    .section-subheadline { font-size: 15px; line-height: 1.6; }
    .grid { gap: 16px; margin-top: 24px; }
    .card { padding: 20px; border-radius: 12px; }
    .card h3 { font-size: 16px; }
    .card p { font-size: 14px; }
    .icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px; }
    .icon .material-icons { font-size: 22px; }
    .steps-container { gap: 56px; margin-top: 32px; }
    .step h3 { font-size: 20px; }
    .step p { font-size: 15px; }
    .step-number { width: 38px; height: 38px; font-size: 16px; margin-bottom: 10px; }
    .step-features li { padding: 6px 0 6px 24px; font-size: 14px; }
    .extension-card { padding: 24px 18px; gap: 22px; border-radius: 18px; }
    .extension-list li { font-size: 14px; padding: 6px 0 6px 24px; }
    .final-cta { padding: 44px 0 52px; }
    .steps-flow { gap: 14px; margin: 26px auto 18px; }
    .flow-step { padding: 18px; border-radius: 12px; }
    .flow-step h3 { font-size: 16px; }
    .flow-step p { font-size: 13px; }
    .primary-btn { padding: 12px 22px; font-size: 15px; }
    .container { padding: 0 18px; }
}

@media (max-width: 480px) {
    .hero-section { padding: 24px 0 32px; }
    .hero-headline { font-size: 26px; }
    .pre-headline { font-size: 10.5px; letter-spacing: 1.2px; }
    .nav-inner { padding: 10px 14px; gap: 10px; }
    .nav-brand { font-size: 16px; }
    .nav-brand img { width: 24px; height: 24px; }
    .nav-theme-toggle, .nav-burger { width: 34px; height: 34px; }
    .nav-theme-toggle .material-icons, .nav-burger .material-icons { font-size: 18px; }
    .footer { padding: 40px 0 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 28px; }
    /* Slim the prompt card down so it reads as a textarea, not a panel */
    .ai-card { padding: 8px; border-radius: 16px; box-shadow: 0 12px 36px rgba(10,14,39,.08); }
    .ai-card-header { display: none; } /* brand line + status are noise on phones; nav already shows the brand */
    .ai-input-row { padding: 4px 4px 4px 14px; box-shadow: none; border-radius: 999px; }
    .ai-input { font-size: 16px; padding: 10px 0; } /* keep >=16px so iOS doesn't zoom on focus */
    .ai-send-btn { width: 38px; height: 38px; }
    .ai-send-arrow { font-size: 18px; }
    .ai-suggestions { margin-top: 12px; }
    .ai-suggestions-label { font-size: 11.5px; opacity: .8; margin-bottom: 6px; }
    .ai-pill { white-space: normal; line-height: 1.35; font-size: 11.5px; padding: 5px 10px; }
    .ai-note { font-size: 11.5px; margin-top: 10px; }
    .trust-badge { max-width: 100%; }
    .extension-card { padding: 22px 16px; }
    .section { padding: 36px 0; }
    .container { padding: 0 16px; }
}
