/* ============================================================
   AI Money Tools — static site styles
   Mobile-first. All classes prefixed `aimt-` to avoid conflicts.
   ============================================================ */

:root {
  --bg-0: #07091C;
  --bg-1: #0F1233;
  --bg-2: #161A45;
  --violet: #7C3AED;
  --violet-bright: #A78BFA;
  --violet-soft: #C4B5FD;
  --cyan: #06B6D4;
  --cyan-bright: #67E8F9;
  --pink: #F472B6;
  --pink-bright: #F9A8D4;
  --mint: #10B981;
  --cream: #F8FAFC;
  --text-dim: #94A3B8;
  --text-faint: #64748B;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(167, 139, 250, 0.16);
  --glass-border-bright: rgba(167, 139, 250, 0.34);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }

body.aimt-site {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-0);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.aimt-site::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(124, 58, 237, 0.28), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(6, 182, 212, 0.22), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(244, 114, 182, 0.18), transparent 60%),
    linear-gradient(180deg, #07091C 0%, #0B0E2A 50%, #07091C 100%);
  z-index: -2;
  pointer-events: none;
}

.aimt-orb { position: fixed; border-radius: 50%; filter: blur(95px); opacity: 0.42; z-index: -1; pointer-events: none; animation: aimt-float 22s ease-in-out infinite; }
.aimt-orb-1 { width: 540px; height: 540px; background: var(--violet); top: -200px; left: -150px; }
.aimt-orb-2 { width: 420px; height: 420px; background: var(--cyan); top: 30%; right: -150px; animation-delay: -7s; }
.aimt-orb-3 { width: 380px; height: 380px; background: var(--pink); bottom: -100px; left: 30%; animation-delay: -14s; }
@keyframes aimt-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -50px) scale(1.05); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

.aimt-glass { background: var(--glass); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%); border: 1px solid var(--glass-border); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.06); }
.aimt-glass-strong { background: var(--glass-strong); backdrop-filter: blur(28px) saturate(200%); -webkit-backdrop-filter: blur(28px) saturate(200%); border: 1px solid var(--glass-border); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08); }

body.aimt-site h1.aimt-hero-title,
body.aimt-site h2.aimt-section-title,
body.aimt-site .aimt-cta-card h2,
body.aimt-site .aimt-step-title,
body.aimt-site .aimt-feature-title,
body.aimt-site .aimt-tool-name,
body.aimt-site .aimt-faq-item summary,
body.aimt-site .aimt-page-title {
  background: linear-gradient(135deg, #ffffff 0%, #C4B5FD 45%, #67E8F9 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}

.aimt-gradient-accent { background: linear-gradient(135deg, #A78BFA 0%, #F472B6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.aimt-gradient-cyan { background: linear-gradient(135deg, #67E8F9 0%, #06B6D4 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.aimt-gradient-text { background: linear-gradient(135deg, #ffffff 0%, #A78BFA 45%, #67E8F9 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.aimt-display { font-family: 'Space Grotesk', 'Inter', sans-serif; letter-spacing: -0.02em; }
.aimt-container { max-width: 1240px; margin: 0 auto; padding: 0 16px; }

/* ===== Header / Nav ===== */
.aimt-header { position: sticky; top: 12px; z-index: 100; padding: 0 12px; }
.aimt-nav { max-width: 1240px; margin: 0 auto; padding: 12px 14px 12px 18px; border-radius: 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.aimt-logo { display: flex; align-items: center; gap: 9px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: -0.01em; text-decoration: none; color: var(--cream); }
.aimt-logo-mark { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%); display: grid; place-items: center; box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4); flex-shrink: 0; }
.aimt-logo-mark svg { width: 17px; height: 17px; color: #ffffff; }
.aimt-nav-links { display: flex; gap: 18px; list-style: none; overflow-x: auto; flex: 1; min-width: 0; padding: 4px 0; -ms-overflow-style: none; scrollbar-width: none; }
.aimt-nav-links::-webkit-scrollbar { display: none; }
.aimt-nav-links a { color: var(--text-dim); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; white-space: nowrap; }
.aimt-nav-links a:hover, .aimt-nav-links a:focus { color: var(--cyan-bright); }
.aimt-nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.aimt-region-toggle { display: flex; background: rgba(0, 0, 0, 0.35); border: 1px solid var(--glass-border); border-radius: 999px; padding: 3px; position: relative; }
.aimt-region-toggle button { background: none; border: none; color: var(--text-dim); font-size: 12px; font-weight: 600; padding: 6px 11px; border-radius: 999px; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: color 0.3s; font-family: inherit; position: relative; z-index: 1; }
.aimt-region-toggle button.active { color: #ffffff; }
.aimt-region-slider { position: absolute; top: 3px; bottom: 3px; width: calc(50% - 3px); background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%); border-radius: 999px; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4); }
.aimt-region-toggle[data-region="us"] .aimt-region-slider { transform: translateX(100%); }

/* ===== Buttons ===== */
.aimt-btn-primary { background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%); color: #ffffff; border: none; padding: 12px 22px; border-radius: 999px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 8px; transition: transform 0.25s, box-shadow 0.25s; box-shadow: 0 6px 28px rgba(124, 58, 237, 0.4); text-decoration: none; -webkit-tap-highlight-color: transparent; }
.aimt-btn-primary:hover, .aimt-btn-primary:focus { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124, 58, 237, 0.55); color: #ffffff; }
.aimt-btn-primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.aimt-btn-ghost { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); color: var(--cream); border: 1px solid var(--glass-border); padding: 11px 19px; border-radius: 999px; font-size: 13.5px; font-weight: 600; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, border-color 0.2s; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.aimt-btn-ghost:hover, .aimt-btn-ghost:focus { background: var(--glass-strong); border-color: var(--glass-border-bright); color: var(--cream); }

/* ===== Hero ===== */
.aimt-hero { padding: 70px 0 60px; text-align: center; position: relative; }
.aimt-eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px; background: var(--glass); border: 1px solid var(--glass-border); font-size: 12.5px; color: var(--text-dim); margin-bottom: 24px; font-weight: 500; }
.aimt-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 14px var(--mint); animation: aimt-pulse 2s ease-in-out infinite; }
@keyframes aimt-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
body.aimt-site h1.aimt-hero-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(36px, 6vw, 76px); line-height: 1.05; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 22px; max-width: 900px; margin-left: auto; margin-right: auto; }
.aimt-hero-sub { font-size: 16px; color: var(--text-dim); max-width: 660px; margin: 0 auto 32px; line-height: 1.55; padding: 0 8px; }
.aimt-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.aimt-stat-strip { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 0 auto; border-radius: 20px; overflow: hidden; }
.aimt-stat { padding: 22px 12px; text-align: center; border-right: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.aimt-stat:nth-child(2), .aimt-stat:nth-child(4) { border-right: none; }
.aimt-stat:nth-child(3), .aimt-stat:nth-child(4) { border-bottom: none; }
.aimt-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.aimt-stat-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.09em; font-weight: 500; }

/* ===== Sections ===== */
body.aimt-site section.aimt-section { padding: 64px 0; }
.aimt-section-header { text-align: center; margin-bottom: 44px; }
.aimt-section-eyebrow { color: var(--cyan-bright); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 12px; }
body.aimt-site h2.aimt-section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 4vw, 50px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 16px; }
.aimt-section-sub { color: var(--text-dim); font-size: 15.5px; max-width: 620px; margin: 0 auto; line-height: 1.55; padding: 0 8px; }

/* ===== Steps ===== */
.aimt-steps-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.aimt-step-card { padding: 28px 22px; border-radius: 20px; position: relative; }
.aimt-step-num { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; color: var(--violet-bright); -webkit-text-fill-color: var(--violet-bright); letter-spacing: 0.14em; margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.aimt-step-num::before { content: ''; width: 24px; height: 1px; background: linear-gradient(90deg, var(--violet) 0%, transparent 100%); }
.aimt-step-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(6, 182, 212, 0.22)); border: 1px solid rgba(124, 58, 237, 0.4); display: grid; place-items: center; margin-bottom: 18px; }
.aimt-step-icon svg { width: 22px; height: 22px; color: var(--cyan-bright); stroke-width: 2; }
.aimt-step-title { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.aimt-step-desc { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* ===== Filter ===== */
.aimt-filter-bar { display: flex; gap: 4px; padding: 5px; background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 999px; flex-wrap: nowrap; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
.aimt-filter-bar::-webkit-scrollbar { display: none; }
.aimt-filter-btn { background: none; border: none; color: var(--text-dim); padding: 8px 15px; border-radius: 999px; font-size: 12.5px; font-weight: 600; cursor: pointer; font-family: inherit; transition: color 0.2s, background 0.2s; display: flex; align-items: center; gap: 7px; white-space: nowrap; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.aimt-filter-btn:hover { color: var(--cream); }
.aimt-filter-btn.active { background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%); color: #ffffff; box-shadow: 0 4px 18px rgba(124, 58, 237, 0.4); }
.aimt-filter-count { background: rgba(0, 0, 0, 0.2); padding: 1px 7px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.aimt-filter-btn.active .aimt-filter-count { background: rgba(255, 255, 255, 0.2); }
.aimt-nav-filter { margin: 0; flex: 1; min-width: 0; }

/* ===== Tools grid ===== */
.aimt-tools-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.aimt-tool-card { padding: 24px 22px; border-radius: 18px; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s; text-decoration: none; color: inherit; display: flex; flex-direction: column; min-height: 220px; }
.aimt-tool-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(124, 58, 237, 0.20), transparent 50%); opacity: 0; transition: opacity 0.35s; pointer-events: none; }
.aimt-tool-card:hover, .aimt-tool-card:focus { transform: translateY(-4px); border-color: var(--glass-border-bright); outline: none; }
.aimt-tool-card:hover::before { opacity: 1; }
.aimt-tool-card.hidden { display: none; }
.aimt-tool-icon-wrap { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; flex-shrink: 0; }
.aimt-tool-icon-wrap.finance { background: linear-gradient(135deg, rgba(124, 58, 237, 0.32), rgba(124, 58, 237, 0.12)); border: 1px solid rgba(124, 58, 237, 0.4); }
.aimt-tool-icon-wrap.legal { background: linear-gradient(135deg, rgba(6, 182, 212, 0.32), rgba(6, 182, 212, 0.12)); border: 1px solid rgba(6, 182, 212, 0.4); }
.aimt-tool-icon-wrap.lifestyle { background: linear-gradient(135deg, rgba(244, 114, 182, 0.32), rgba(244, 114, 182, 0.12)); border: 1px solid rgba(244, 114, 182, 0.4); }
.aimt-tool-icon-wrap svg { width: 22px; height: 22px; stroke-width: 2; }
.aimt-tool-icon-wrap.finance svg { color: var(--violet-bright); }
.aimt-tool-icon-wrap.legal svg { color: var(--cyan-bright); }
.aimt-tool-icon-wrap.lifestyle svg { color: var(--pink-bright); }
.aimt-tool-name { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; line-height: 1.25; position: relative; z-index: 1; }
.aimt-tool-desc { font-size: 14px; color: var(--text-dim); line-height: 1.55; flex: 1; position: relative; z-index: 1; }
.aimt-tool-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--glass-border); position: relative; z-index: 1; }
.aimt-region-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.aimt-tool-arrow { width: 28px; height: 28px; border-radius: 50%; background: rgba(255, 255, 255, 0.06); display: grid; place-items: center; transition: transform 0.25s, background 0.25s; }
.aimt-tool-arrow svg { width: 13px; height: 13px; color: var(--text-dim); transition: color 0.25s; }
.aimt-tool-card:hover .aimt-tool-arrow { background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%); transform: rotate(-45deg); }
.aimt-tool-card:hover .aimt-tool-arrow svg { color: #ffffff; }
.aimt-category-tag { position: absolute; top: 22px; right: 22px; font-size: 10px; font-weight: 600; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.12em; }

/* ===== Comparison ===== */
.aimt-compare-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.aimt-compare-card { padding: 24px 20px; border-radius: 20px; }
.aimt-compare-topic { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--cyan-bright); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.aimt-compare-topic::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--cyan) 0%, transparent 100%); }
.aimt-compare-rows { display: grid; gap: 16px; }
.aimt-compare-row { display: grid; grid-template-columns: 52px 1fr; gap: 12px; align-items: start; }
.aimt-compare-flag { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; background: rgba(0, 0, 0, 0.25); border: 1px solid var(--glass-border); flex-shrink: 0; }
.aimt-compare-label { font-size: 11.5px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.aimt-compare-value { font-size: 14px; line-height: 1.55; color: var(--cream); }
.aimt-compare-value strong { color: var(--pink-bright); font-weight: 600; }

/* ===== Features ===== */
.aimt-features-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.aimt-feature-card { padding: 26px 22px; border-radius: 18px; }
.aimt-feature-icon { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(135deg, rgba(124, 58, 237, 0.32), rgba(6, 182, 212, 0.22)); border: 1px solid rgba(124, 58, 237, 0.4); display: grid; place-items: center; margin-bottom: 16px; }
.aimt-feature-icon svg { width: 19px; height: 19px; color: var(--cyan-bright); }
.aimt-feature-title { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.aimt-feature-desc { font-size: 13.5px; color: var(--text-dim); line-height: 1.6; }

/* ===== FAQ ===== */
.aimt-faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.aimt-faq-item { border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.aimt-faq-item[open] { border-color: var(--glass-border-bright); }
.aimt-faq-item summary { padding: 18px 20px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 15px; letter-spacing: -0.01em; gap: 14px; -webkit-tap-highlight-color: transparent; }
.aimt-faq-item summary::-webkit-details-marker { display: none; }
.aimt-faq-item summary::after { content: '+'; font-size: 22px; color: var(--violet-bright); -webkit-text-fill-color: var(--violet-bright); font-weight: 300; transition: transform 0.3s; line-height: 1; flex-shrink: 0; background: none; }
.aimt-faq-item[open] summary::after { transform: rotate(45deg); }
.aimt-faq-answer { padding: 0 20px 18px; color: var(--text-dim); font-size: 14px; line-height: 1.65; }

/* ===== CTA / Newsletter ===== */
.aimt-cta-card { padding: 44px 22px; border-radius: 24px; text-align: center; position: relative; overflow: hidden; }
.aimt-cta-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.25), transparent 50%), radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.22), transparent 50%); pointer-events: none; }
.aimt-cta-card > * { position: relative; z-index: 1; }
body.aimt-site .aimt-cta-card h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(26px, 4vw, 44px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 14px; line-height: 1.12; }
.aimt-cta-card p { color: var(--text-dim); font-size: 15.5px; max-width: 560px; margin: 0 auto 26px; line-height: 1.55; }
.aimt-newsletter-form { display: flex; flex-direction: column; gap: 10px; max-width: 460px; margin: 0 auto; }
.aimt-newsletter-form input[type="email"] { width: 100%; background: rgba(0, 0, 0, 0.35); border: 1px solid var(--glass-border); color: var(--cream); padding: 13px 18px; border-radius: 999px; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; }
.aimt-newsletter-form input::placeholder { color: var(--text-faint); }
.aimt-newsletter-form input:focus { border-color: var(--violet); }
.aimt-newsletter-form button { width: 100%; justify-content: center; }
.aimt-form-note { margin-top: 14px; font-size: 12px; color: var(--text-faint); }
.aimt-form-success { color: var(--mint) !important; }
.aimt-form-error { color: var(--pink-bright) !important; }

/* ===== Footer ===== */
.aimt-footer { padding: 36px 0 28px; border-top: 1px solid var(--glass-border); margin-top: 32px; }
.aimt-footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
.aimt-footer-brand p { color: var(--text-dim); font-size: 14px; margin-top: 14px; max-width: 340px; line-height: 1.6; }
.aimt-footer-col h4 { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cyan-bright); margin-bottom: 14px; }
.aimt-footer-col ul { list-style: none; }
.aimt-footer-col li { margin-bottom: 9px; }
.aimt-footer-col a { color: var(--text-dim); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.aimt-footer-col a:hover, .aimt-footer-col a:focus { color: var(--cream); }
.aimt-footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--text-faint); }
.aimt-disclaimer { text-align: center; color: var(--text-faint); font-size: 11.5px; margin-top: 14px; max-width: 780px; margin-left: auto; margin-right: auto; line-height: 1.6; padding: 0 8px; }

/* ===== Inner pages ===== */
.aimt-page-hero { padding: 70px 0 50px; text-align: center; }
body.aimt-site .aimt-page-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px, 5vw, 60px); line-height: 1.1; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 16px; padding: 0 12px; }
.aimt-page-sub { font-size: 15.5px; color: var(--text-dim); max-width: 640px; margin: 0 auto; line-height: 1.6; padding: 0 16px; }
.aimt-page-body { max-width: 760px; margin: 0 auto; padding: 0 16px 80px; color: var(--cream); }
.aimt-page-body p { margin-bottom: 16px; color: var(--text-dim); font-size: 15px; line-height: 1.7; }
.aimt-page-body h2 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 600; margin: 28px 0 14px; color: var(--cream); letter-spacing: -0.01em; }
.aimt-page-body h3 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 600; margin: 22px 0 10px; color: var(--cream); }
.aimt-page-body a { color: var(--cyan-bright); text-decoration: none; border-bottom: 1px solid rgba(103, 232, 249, 0.3); transition: border-color 0.2s; }
.aimt-page-body a:hover, .aimt-page-body a:focus { border-bottom-color: var(--cyan-bright); }
.aimt-page-body ul, .aimt-page-body ol { margin: 0 0 16px 22px; color: var(--text-dim); }
.aimt-page-body li { margin-bottom: 7px; line-height: 1.65; }
.aimt-page-body strong { color: var(--cream); }

/* ===== Calculator UI ===== */
.aimt-calc-wrap { max-width: 920px; margin: 0 auto; padding: 0 16px 80px; }
.aimt-calc-card { padding: 28px 22px; border-radius: 22px; }
.aimt-calc-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.aimt-calc-section-title { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 18px; color: var(--cream); }
.aimt-calc-label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-dim); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.06em; }
.aimt-calc-input, .aimt-calc-select { width: 100%; background: rgba(0, 0, 0, 0.35); border: 1px solid var(--glass-border); color: var(--cream); padding: 12px 14px; border-radius: 11px; font-size: 16px; font-family: inherit; outline: none; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; }
.aimt-calc-input:focus, .aimt-calc-select:focus { border-color: var(--violet); }
.aimt-calc-field { margin-bottom: 18px; }
.aimt-calc-help { font-size: 11.5px; color: var(--text-faint); margin-top: 6px; }
.aimt-calc-checkbox { display: flex; align-items: center; gap: 9px; margin-bottom: 5px; cursor: pointer; }
.aimt-calc-checkbox input { width: 18px; height: 18px; accent-color: var(--violet); cursor: pointer; }
.aimt-calc-checkbox-label { font-size: 13.5px; color: var(--cream); }
.aimt-calc-result-block { background: rgba(124, 58, 237, 0.08); border: 1px solid rgba(124, 58, 237, 0.3); border-radius: 14px; padding: 22px 18px; margin-top: 10px; }
.aimt-calc-result-big { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 6px; word-break: break-word; }
.aimt-calc-result-label { font-size: 12.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.aimt-calc-breakdown { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--glass-border); }
.aimt-calc-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.04); font-size: 13.5px; }
.aimt-calc-row:last-child { border-bottom: none; }
.aimt-calc-row .label { color: var(--text-dim); }
.aimt-calc-row .value { color: var(--cream); font-weight: 600; white-space: nowrap; }
.aimt-calc-row.total { border-top: 1px solid var(--glass-border-bright); margin-top: 6px; padding-top: 14px; font-size: 14px; }
.aimt-calc-row.total .value { color: var(--cyan-bright); font-size: 16px; }
.aimt-calc-placeholder { padding: 36px 18px; text-align: center; border: 1px dashed var(--glass-border); border-radius: 14px; color: var(--text-faint); font-size: 13.5px; }
.aimt-coming-soon-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: 999px; background: linear-gradient(135deg, rgba(244, 114, 182, 0.18), rgba(124, 58, 237, 0.18)); border: 1px solid rgba(244, 114, 182, 0.3); font-size: 11.5px; font-weight: 600; color: var(--pink-bright); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.aimt-feature-list { display: grid; gap: 12px; margin: 22px 0; }
.aimt-feature-list-item { display: flex; gap: 11px; align-items: start; padding: 13px 16px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 11px; }
.aimt-feature-list-item svg { width: 18px; height: 18px; color: var(--cyan-bright); flex-shrink: 0; margin-top: 2px; }
.aimt-feature-list-item span { font-size: 13.5px; color: var(--text-dim); line-height: 1.5; }

/* ===== Animations ===== */
.aimt-fade-in { opacity: 0; transform: translateY(20px); animation: aimt-fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes aimt-fadeUp { to { opacity: 1; transform: translateY(0); } }
.aimt-delay-1 { animation-delay: 0.1s; }
.aimt-delay-2 { animation-delay: 0.2s; }
.aimt-delay-3 { animation-delay: 0.3s; }
.aimt-delay-4 { animation-delay: 0.4s; }

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 2px solid var(--cyan-bright); outline-offset: 3px; border-radius: 8px; }

/* ===== Responsive breakpoints ===== */
@media (min-width: 540px) {
  .aimt-container { padding: 0 24px; }
  .aimt-stat-strip { grid-template-columns: repeat(4, 1fr); }
  .aimt-stat { border-right: 1px solid var(--glass-border); border-bottom: none; }
  .aimt-stat:last-child { border-right: none; }
  .aimt-newsletter-form { flex-direction: row; }
  .aimt-newsletter-form button { width: auto; }
  .aimt-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .aimt-features-grid { grid-template-columns: repeat(2, 1fr); }
  .aimt-stat-num { font-size: 32px; }
}
@media (min-width: 768px) {
  .aimt-header { top: 16px; padding: 0 16px; }
  .aimt-nav { padding: 14px 18px 14px 22px; border-radius: 999px; gap: 18px; }
  .aimt-logo { font-size: 17px; }
  .aimt-nav-links { gap: 24px; flex: 0 0 auto; overflow: visible; }
  .aimt-hero { padding: 100px 0 80px; }
  .aimt-eyebrow { font-size: 13px; }
  .aimt-hero-sub { font-size: 18px; }
  body.aimt-site section.aimt-section { padding: 90px 0; }
  .aimt-section-sub { font-size: 17px; }
  .aimt-steps-grid { grid-template-columns: repeat(3, 1fr); }
  .aimt-compare-grid { grid-template-columns: repeat(2, 1fr); }
  .aimt-features-grid { grid-template-columns: repeat(4, 1fr); }
  .aimt-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .aimt-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .aimt-cta-card { padding: 60px 44px; }
  .aimt-calc-card { padding: 40px; }
  .aimt-calc-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .aimt-page-body { padding: 0 24px 100px; }
  .aimt-calc-wrap { padding: 0 24px 100px; }
  .aimt-calc-result-big { font-size: 42px; }
}
@media (min-width: 1024px) {
  .aimt-tools-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
