*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --brand:#1B2A4A;
  --accent:#3B82F6;
  --accent-hover:#2563EB;
  --text:#1E293B;
  --text-muted:#64748B;
  --bg:#FFFFFF;
  --bg-alt:#F8FAFC;
  --border:#E2E8F0;
  --green:#27AE60;
  --amber:#F39C12;
  --red:#E74C3C;
  --radius:12px;
  --max:1120px;
}
html{scroll-behavior:smooth}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;color:var(--text);background:var(--bg);line-height:1.6;-webkit-font-smoothing:antialiased}

/* Nav */
.site-nav{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(255,255,255,0.92);backdrop-filter:blur(12px);border-bottom:1px solid var(--border);padding:0 24px;height:64px;display:flex;align-items:center;justify-content:space-between}
.site-nav .logo{font-size:20px;font-weight:800;color:var(--brand);letter-spacing:-0.5px}
.site-nav .logo span{color:var(--accent)}
.site-nav .nav-links{display:flex;gap:32px;align-items:center}
.site-nav .nav-links a{text-decoration:none;color:var(--text-muted);font-size:14px;font-weight:500;transition:color 0.2s}
.site-nav .nav-links a:hover{color:var(--text)}
.btn-nav{background:var(--accent);color:#fff !important;padding:8px 20px;border-radius:8px;font-weight:600;transition:background 0.2s}
.btn-nav:hover{background:var(--accent-hover)}

/* Hero */
.hero{padding:140px 24px 80px;text-align:center;background:linear-gradient(180deg,#F0F4FF 0%,var(--bg) 100%)}
.hero h1{font-size:clamp(36px,5vw,56px);font-weight:800;letter-spacing:-1px;line-height:1.15;color:var(--brand);max-width:800px;margin:0 auto 20px}
.hero h1 span{color:var(--accent)}
.hero p{font-size:clamp(16px,2vw,20px);color:var(--text-muted);max-width:600px;margin:0 auto 36px}
.hero-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.btn-primary{background:var(--accent);color:#fff;padding:14px 32px;border-radius:10px;font-size:16px;font-weight:600;text-decoration:none;border:none;cursor:pointer;transition:background 0.2s,transform 0.1s}
.btn-primary:hover{background:var(--accent-hover);transform:translateY(-1px)}
.btn-secondary{background:transparent;color:var(--text);padding:14px 32px;border-radius:10px;font-size:16px;font-weight:600;text-decoration:none;border:2px solid var(--border);transition:border-color 0.2s}
.btn-secondary:hover{border-color:var(--accent);color:var(--accent)}

/* Trust bar */
.trust-bar{text-align:center;padding:40px 24px;color:var(--text-muted);font-size:14px;font-weight:500}

/* Sections */
section{padding:80px 24px}
section:nth-child(even){background:var(--bg-alt)}
.section-inner{max-width:var(--max);margin:0 auto}
.section-label{text-transform:uppercase;letter-spacing:2px;font-size:12px;font-weight:700;color:var(--accent);margin-bottom:12px}
.section-title{font-size:clamp(28px,3.5vw,40px);font-weight:800;letter-spacing:-0.5px;margin-bottom:16px;color:var(--brand)}
.section-subtitle{font-size:17px;color:var(--text-muted);max-width:640px;margin-bottom:48px}

/* Feature grid */
.feature-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:28px}
.feature-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:32px;transition:box-shadow 0.2s,transform 0.2s}
.feature-card:hover{box-shadow:0 8px 24px rgba(0,0,0,0.06);transform:translateY(-2px)}
.feature-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:16px}
.feature-card h3{font-size:18px;font-weight:700;margin-bottom:8px}
.feature-card p{font-size:14px;color:var(--text-muted);line-height:1.6}

/* How it works */
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:32px;counter-reset:step}
.step{text-align:center;position:relative}
.step::before{counter-increment:step;content:counter(step);display:flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:50%;background:var(--accent);color:#fff;font-size:20px;font-weight:800;margin:0 auto 16px}
.step h3{font-size:18px;font-weight:700;margin-bottom:8px}
.step p{font-size:14px;color:var(--text-muted)}

/* Security */
.security-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px}
.security-item{display:flex;gap:16px;align-items:flex-start}
.security-item .icon{flex-shrink:0;width:40px;height:40px;border-radius:10px;background:var(--bg-alt);display:flex;align-items:center;justify-content:center;font-size:20px}
.security-item h4{font-size:15px;font-weight:700;margin-bottom:4px}
.security-item p{font-size:13px;color:var(--text-muted)}

/* Mobile section */
.mobile-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px}
.mobile-item{display:flex;gap:16px;align-items:flex-start}
.mobile-item .icon{flex-shrink:0;width:40px;height:40px;border-radius:10px;background:var(--bg-alt);display:flex;align-items:center;justify-content:center;font-size:20px}
.mobile-item h4{font-size:15px;font-weight:700;margin-bottom:4px}
.mobile-item p{font-size:13px;color:var(--text-muted)}

/* Integrations section */
.integrations-grid{display:flex;flex-direction:column;gap:24px;margin-bottom:40px}
.integration-card{display:flex;gap:20px;align-items:flex-start;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:28px;transition:box-shadow 0.2s}
.integration-card:hover{box-shadow:0 8px 24px rgba(0,0,0,0.06)}
.integration-icon{flex-shrink:0;width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center}
.integration-icon svg{width:24px;height:24px;stroke-width:1.75}
.integration-body{flex:1}
.integration-body h3{font-size:17px;font-weight:700;margin-bottom:8px}
.integration-body p{font-size:14px;color:var(--text-muted);line-height:1.65;margin-bottom:8px}
.integration-body p:last-child{margin-bottom:0}
.integration-works-with{font-size:13px;color:var(--text-muted)}
.integration-footer{display:flex;flex-direction:column;gap:20px}
.integration-auth-note{display:flex;gap:16px;align-items:flex-start;background:var(--bg-alt);border:1px solid var(--border);border-radius:var(--radius);padding:20px}
.integration-auth-note svg{flex-shrink:0;width:20px;height:20px;margin-top:2px;color:var(--text-muted)}
.integration-auth-note div{font-size:14px;color:var(--text-muted);line-height:1.6}
.integration-auth-note strong{color:var(--text);display:block;margin-bottom:4px}
.integration-cta{display:flex;gap:12px;flex-wrap:wrap}

/* Adapts section */
.adapt-section{text-align:center}
.adapt-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;margin-bottom:24px}
.adapt-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:24px 20px;text-align:center}
.adapt-card h4{font-size:16px;font-weight:700;margin-bottom:6px}
.adapt-card p{font-size:14px;color:var(--text-muted)}
.adapt-note{font-size:14px;color:var(--text-muted);font-style:italic}

/* App preview phones */
.app-preview-section{padding:0 24px 60px;background:var(--bg)}
.phone-row{display:flex;justify-content:center;align-items:flex-end;gap:32px;max-width:800px;margin:0 auto}
.phone-wrapper{display:flex;flex-direction:column;align-items:center;gap:12px}
.phone-wrapper img{width:200px;filter:drop-shadow(0 8px 24px rgba(0,0,0,0.08));border-radius:36px;transition:transform 0.3s}
.phone-wrapper:hover img{transform:translateY(-4px)}
.phone-wrapper.phone-hero img{width:240px}
.phone-label{font-size:13px;font-weight:600;color:var(--text-muted)}

/* Pricing */
.pricing-single{max-width:480px;margin:0 auto 24px}
.pricing-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;max-width:860px;margin:0 auto 24px}
.pricing-card{background:var(--bg);border:2px solid var(--accent);border-radius:var(--radius);padding:36px 32px;display:flex;flex-direction:column}
.pricing-card.pricing-featured{border-color:var(--brand);box-shadow:0 8px 32px rgba(27,42,74,0.12)}
.pricing-card-header{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:8px}
.pricing-recommended{background:var(--brand);color:#fff;font-size:11px;font-weight:700;letter-spacing:0.5px;text-transform:uppercase;padding:4px 10px;border-radius:20px;white-space:nowrap;flex-shrink:0;margin-top:3px}
.pricing-card .btn-primary{margin-top:auto;text-align:center}
@media(max-width:720px){.pricing-grid{grid-template-columns:1fr}}
.pricing-card h3{font-size:22px;font-weight:800;color:var(--brand);margin-bottom:8px}
.pricing-price{font-size:42px;font-weight:800;color:var(--brand);margin-bottom:8px}
.pricing-price span{font-size:16px;font-weight:500;color:var(--text-muted)}
.pricing-desc{font-size:15px;color:var(--text-muted);margin-bottom:24px}
.pricing-list{list-style:none;margin:0 0 28px;padding:0}
.pricing-list li{font-size:14px;color:var(--text);padding:6px 0 6px 24px;position:relative}
.pricing-list li::before{content:"\2713";position:absolute;left:0;color:var(--accent);font-weight:700}
.pricing-addons{max-width:860px;margin:0 auto 24px;padding:24px 32px;background:var(--bg-alt);border-radius:var(--radius)}
.pricing-addons h4{font-size:16px;font-weight:700;color:var(--brand);margin-bottom:12px;text-align:center}
.pricing-addons-table{width:100%;border-collapse:collapse;font-size:14px;margin:0 0 12px}
.pricing-addons-table th{text-align:right;font-weight:600;color:var(--text-muted);font-size:11px;text-transform:uppercase;letter-spacing:0.5px;padding:6px 8px}
.pricing-addons-table th:first-child{text-align:left}
.pricing-addons-table td{text-align:right;padding:8px;border-top:1px solid var(--border);color:var(--text)}
.pricing-addons-table td:first-child{text-align:left;color:var(--text-muted)}
.pricing-addons-table tr.pricing-addons-total td{font-weight:800;color:var(--brand);border-top:2px solid var(--accent)}
.pricing-addons p{font-size:13px;color:var(--text-muted);text-align:center;margin:0}
.pricing-addons p a{color:var(--accent);font-weight:600;text-decoration:none}
.pricing-addons p a:hover{text-decoration:underline}
.pricing-custom{text-align:center;margin-top:24px;padding:24px;background:var(--bg-alt);border-radius:var(--radius)}
.pricing-custom h4{font-size:16px;font-weight:700;color:var(--brand);margin-bottom:8px}
.pricing-custom p{font-size:14px;color:var(--text-muted);margin:0}
.pricing-custom a{color:var(--accent);font-weight:600;text-decoration:none}
.pricing-custom a:hover{text-decoration:underline}
.pricing-note{text-align:center;font-size:13px;color:var(--text-muted);font-style:italic;max-width:600px;margin:0 auto}

/* CTA */
.cta-section{background:var(--brand);color:#fff;padding:80px 24px;text-align:center}
.cta-section h2{font-size:clamp(28px,3.5vw,40px);font-weight:800;margin-bottom:16px}
.cta-section p{font-size:17px;opacity:0.8;max-width:520px;margin:0 auto 36px}
.cta-section .btn-primary{background:#fff;color:var(--brand)}
.cta-section .btn-primary:hover{background:#F0F4FF}

/* Contact form */
.contact-section{padding:80px 24px;background:var(--bg)}
.contact-inner{max-width:960px;margin:0 auto}
.contact-inner h2{font-size:32px;font-weight:800;text-align:center;margin-bottom:8px;color:var(--brand)}
.contact-inner .subtitle{text-align:center;color:var(--text-muted);margin-bottom:36px;font-size:16px}
.contact-layout{display:grid;grid-template-columns:1fr 2fr;gap:48px;align-items:start}
.contact-details{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:32px}
.contact-details h3{font-size:18px;font-weight:700;color:var(--brand);margin-bottom:20px}
.contact-link{display:flex;align-items:center;gap:10px;color:var(--brand);font-size:15px;font-weight:500;text-decoration:none;margin-bottom:14px;padding:10px 12px;background:var(--bg);border:1px solid var(--border);border-radius:10px;transition:border-color 0.2s}
.contact-link:hover{border-color:var(--accent);color:var(--accent)}
.contact-icon{font-size:20px;flex-shrink:0}
.contact-note{margin-top:20px;font-size:13px;color:var(--text-muted);line-height:1.5}
.contact-form-wrap{}
.form-group{margin-bottom:20px}
.form-group label{display:block;font-size:14px;font-weight:600;margin-bottom:6px}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:12px 16px;border:1px solid var(--border);border-radius:8px;font-size:15px;font-family:inherit;background:var(--bg);transition:border-color 0.2s}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(59,130,246,0.1)}
.form-group textarea{resize:vertical;min-height:120px}
.form-submit{width:100%;padding:14px;background:var(--accent);color:#fff;border:none;border-radius:10px;font-size:16px;font-weight:600;cursor:pointer;transition:background 0.2s}
.form-submit:hover{background:var(--accent-hover)}
.form-success{text-align:center;padding:32px;color:var(--green);font-weight:600;font-size:16px}

/* Privacy page */
.privacy-page{padding:120px 24px 60px;max-width:740px;margin:0 auto}
.privacy-inner h1{font-size:32px;font-weight:800;color:var(--brand);margin-bottom:8px}
.privacy-inner .last-updated{font-size:14px;color:var(--text-muted);margin-bottom:32px}
.privacy-inner h2{font-size:20px;font-weight:700;color:var(--brand);margin-top:36px;margin-bottom:12px}
.privacy-inner h3{font-size:16px;font-weight:700;margin-top:20px;margin-bottom:8px}
.privacy-inner p{font-size:15px;line-height:1.7;margin-bottom:12px;color:var(--text)}
.privacy-inner ul{margin:0 0 16px 24px;font-size:15px;line-height:1.7;color:var(--text)}
.privacy-inner ul li{margin-bottom:6px}
.privacy-inner a{color:var(--accent);text-decoration:none}
.privacy-inner a:hover{text-decoration:underline}

/* Footer */
.site-footer{padding:40px 24px;border-top:1px solid var(--border);text-align:center;color:var(--text-muted);font-size:13px}
.site-footer a{color:var(--text-muted);text-decoration:underline}
.footer-inner{display:flex;flex-direction:column;gap:6px;align-items:center}
.footer-contact{display:flex;gap:12px;align-items:center}

/* Mobile */
@media(max-width:768px){
  .site-nav .nav-links{gap:16px}
  .site-nav .nav-links a:not(.btn-nav){display:none}
  .hero{padding:110px 20px 60px}
  section{padding:60px 20px}
  .feature-grid,.steps,.security-grid,.mobile-grid,.adapt-grid,.contact-layout{grid-template-columns:1fr}
  .phone-row{gap:16px}
  .phone-wrapper img{width:140px}
  .phone-wrapper.phone-hero img{width:160px}
}

/* ── User Guide ─────────────────────────────────────────────────────────── */
.guide-hero{padding:120px 24px 40px;background:linear-gradient(180deg,#F0F4FF 0%,var(--bg) 100%)}
.guide-hero .section-label{margin-bottom:8px}
.guide-hero h1{font-size:clamp(28px,4vw,44px);font-weight:800;color:var(--brand);letter-spacing:-0.5px;margin-bottom:12px}
.guide-hero p{font-size:17px;color:var(--text-muted);max-width:560px}

.guide-layout{display:grid;grid-template-columns:220px 1fr;gap:48px;max-width:var(--max);margin:0 auto;padding:48px 24px 80px;align-items:start}

.guide-sidebar{position:sticky;top:80px;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.guide-sidebar-title{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--text-muted);padding:16px 18px 10px}
.guide-sidebar a{display:block;padding:7px 18px;font-size:13.5px;text-decoration:none;color:var(--text-muted);border-left:3px solid transparent;transition:all 0.15s;line-height:1.4}
.guide-sidebar a:hover,.guide-sidebar a.active{color:var(--accent);border-left-color:var(--accent);background:#f0f7ff}
.guide-sidebar a.sub{padding-left:34px}
.guide-sidebar-sep{height:1px;background:var(--border);margin:8px 0}

.guide-section{scroll-margin-top:88px;padding-bottom:52px;border-bottom:1px solid var(--border);margin-bottom:52px}
.guide-section:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
.guide-section-header{display:flex;align-items:center;gap:16px;margin-bottom:20px}
.guide-section-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:24px;flex-shrink:0}
.guide-section h2{font-size:clamp(20px,2.5vw,26px);font-weight:800;color:var(--brand);letter-spacing:-0.3px}
.guide-section p{font-size:15px;color:var(--text);line-height:1.75;margin-bottom:14px}
.guide-section p:last-child{margin-bottom:0}
.guide-section h3{font-size:16px;font-weight:700;color:var(--brand);margin:24px 0 10px}

.guide-steps{list-style:none;counter-reset:gs;display:flex;flex-direction:column;gap:14px;margin:14px 0}
.guide-steps li{counter-increment:gs;position:relative;padding-left:40px;font-size:15px;color:var(--text);line-height:1.65}
.guide-steps li::before{content:counter(gs);position:absolute;left:0;top:1px;display:flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:50%;background:var(--accent);color:#fff;font-size:12px;font-weight:700}

.guide-bullets{list-style:none;display:flex;flex-direction:column;gap:8px;margin:10px 0 14px}
.guide-bullets li{font-size:15px;color:var(--text);line-height:1.65;padding-left:18px;position:relative}
.guide-bullets li::before{content:"";position:absolute;left:0;top:9px;width:6px;height:6px;border-radius:50%;background:var(--accent)}

.guide-tip{background:#EBF5FF;border-left:4px solid var(--accent);border-radius:0 8px 8px 0;padding:13px 18px;margin:18px 0;font-size:14px;color:var(--text);line-height:1.6}
.guide-tip strong{color:var(--accent);font-weight:700;display:block;margin-bottom:3px}
.guide-note{background:#F0FDF4;border-left:4px solid var(--green);border-radius:0 8px 8px 0;padding:13px 18px;margin:18px 0;font-size:14px;color:var(--text);line-height:1.6}
.guide-note strong{color:var(--green);font-weight:700;display:block;margin-bottom:3px}

.guide-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:16px 0}
.guide-mini-card{background:var(--bg-alt);border:1px solid var(--border);border-radius:10px;padding:16px 18px}
.guide-mini-card h4{font-size:14px;font-weight:700;color:var(--brand);margin-bottom:6px}
.guide-mini-card p{font-size:13px;color:var(--text-muted);margin:0;line-height:1.5}
.guide-screenshot{margin:1.5rem 0;text-align:center}
.guide-screenshot img{max-width:280px;width:100%;border-radius:28px;box-shadow:0 12px 40px rgba(0,0,0,0.13);display:block;margin:0 auto}
.guide-screenshot-row{display:flex;gap:20px;justify-content:center;flex-wrap:wrap}
.guide-screenshot-row img{max-width:200px;width:100%;border-radius:28px;box-shadow:0 12px 40px rgba(0,0,0,0.13)}
.guide-screenshot figcaption{font-size:12px;color:var(--text-muted);margin-top:8px;font-style:italic}
@media(max-width:600px){.guide-screenshot img{max-width:100%}.guide-screenshot-row img{max-width:160px}}
.status-pip{display:inline-block;width:10px;height:10px;border-radius:50%;margin-right:5px;vertical-align:middle;flex-shrink:0}
.pip-green{background:#22C55E}.pip-amber{background:#F59E0B}.pip-red{background:#EF4444}.pip-grey{background:#94A3B8}

/* Lucide icon sizing */
.feature-icon svg{width:26px;height:26px;stroke-width:1.75}
.guide-section-icon svg{width:24px;height:24px;stroke-width:1.75}
.security-item .icon svg,.mobile-item .icon svg{width:22px;height:22px;stroke-width:1.75}
.contact-icon svg{width:18px;height:18px;stroke-width:2;vertical-align:middle}

/* FAQ */
.faq-list{max-width:720px;margin:0 auto;display:flex;flex-direction:column;gap:4px}
.faq-item{border:1px solid var(--border);border-radius:10px;overflow:hidden;background:var(--bg);transition:box-shadow 0.2s}
.faq-item[open]{box-shadow:0 2px 12px rgba(0,0,0,0.06)}
.faq-q{padding:18px 20px;font-size:15px;font-weight:600;color:var(--brand);cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:12px;user-select:none}
.faq-q::-webkit-details-marker{display:none}
.faq-q::after{content:"+";font-size:22px;font-weight:300;color:var(--accent);flex-shrink:0;line-height:1}
.faq-item[open] .faq-q::after{content:"−"}
.faq-a{padding:4px 20px 18px;font-size:14.5px;color:var(--text-muted);line-height:1.7;border-top:1px solid var(--border)}
.faq-a p{margin:8px 0 0}
.faq-a a{color:var(--accent);font-weight:600;text-decoration:none}
.faq-a a:hover{text-decoration:underline}

/* Integrations docs — code blocks and field tables */
.integ-pre{background:#1E2433;color:#E2E8F0;border-radius:10px;padding:20px 24px;overflow-x:auto;font-size:13px;line-height:1.65;margin:16px 0 20px;font-family:'SF Mono','Fira Mono','Consolas',monospace}
.integ-pre code{color:inherit;background:none;padding:0;font-size:inherit}
.integ-method{display:inline-block;background:#CC2936;color:#fff;font-size:11px;font-weight:700;letter-spacing:.5px;border-radius:4px;padding:3px 8px;margin-right:8px;vertical-align:middle;font-family:'SF Mono','Fira Mono','Consolas',monospace}
.integ-endpoint{font-family:'SF Mono','Fira Mono','Consolas',monospace;font-size:14px;font-weight:600;color:var(--brand);vertical-align:middle}
.integ-endpoint-row{background:var(--bg-alt);border:1px solid var(--border);border-radius:8px;padding:12px 16px;margin:12px 0 20px;display:flex;align-items:center;gap:4px;flex-wrap:wrap}
.integ-scope-badge{display:inline-block;background:#EBF5FF;color:#3B82F6;font-size:11px;font-weight:700;letter-spacing:.3px;border-radius:4px;padding:2px 8px;margin-left:6px;vertical-align:middle}
.integ-table{width:100%;border-collapse:collapse;font-size:13px;margin:12px 0 20px}
.integ-table th{text-align:left;font-size:11px;font-weight:700;letter-spacing:.8px;text-transform:uppercase;color:var(--text-muted);border-bottom:2px solid var(--border);padding:6px 10px 8px}
.integ-table td{padding:9px 10px;border-bottom:1px solid var(--border);vertical-align:top;line-height:1.5;color:var(--text)}
.integ-table td:first-child{font-family:'SF Mono','Fira Mono','Consolas',monospace;font-size:12px;color:var(--brand);white-space:nowrap}
.integ-table td code{background:var(--bg-alt);border:1px solid var(--border);border-radius:4px;padding:1px 5px;font-size:12px;font-family:'SF Mono','Fira Mono','Consolas',monospace}
.integ-note{background:#FFF7E6;border-left:4px solid #F39C12;border-radius:0 8px 8px 0;padding:13px 18px;margin:18px 0;font-size:14px;color:var(--text);line-height:1.6}
.integ-note strong{color:#B7770A;display:block;margin-bottom:3px}
.integ-scope-table{width:100%;border-collapse:collapse;font-size:14px;margin:12px 0 20px}
.integ-scope-table th{text-align:left;font-size:11px;font-weight:700;letter-spacing:.8px;text-transform:uppercase;color:var(--text-muted);border-bottom:2px solid var(--border);padding:6px 10px 8px}
.integ-scope-table td{padding:11px 10px;border-bottom:1px solid var(--border);vertical-align:top;line-height:1.5;color:var(--text)}
.integ-scope-table td:first-child{font-weight:700;white-space:nowrap}

@media(max-width:800px){
  .guide-layout{grid-template-columns:1fr;gap:0;padding:0 0 60px}
  .guide-sidebar{position:relative;top:0;border:none;border-bottom:1px solid var(--border);border-radius:0;overflow-x:auto;white-space:nowrap;display:flex;align-items:center;scrollbar-width:none;background:var(--bg-alt)}
  .guide-sidebar::-webkit-scrollbar{display:none}
  .guide-sidebar-title,.guide-sidebar-sep{display:none}
  .guide-sidebar a{display:inline-block;padding:12px 14px;border-left:none;border-bottom:3px solid transparent;white-space:nowrap;font-size:13px}
  .guide-sidebar a:hover,.guide-sidebar a.active{border-bottom-color:var(--accent);border-left-color:transparent;background:transparent}
  .guide-sidebar a.sub{padding-left:14px}
  .guide-main{padding:32px 20px 0}
  .guide-grid-2{grid-template-columns:1fr}
  .guide-hero{padding:110px 20px 32px}
}
