:root {
  --orange:#ea580c;
  --orange-dark:#c2410c;
  --orange-soft:#fff7ed;
  --amber:#f59e0b;
  --stone-950:#0c0a09;
  --stone-900:#1c1917;
  --stone-800:#292524;
  --stone-700:#44403c;
  --stone-600:#57534e;
  --stone-400:#a8a29e;
  --slate-900:#0f172a;
  --slate-800:#1e293b;
  --slate-700:#334155;
  --slate-600:#475569;
  --slate-500:#64748b;
  --slate-100:#f1f5f9;
  --slate-50:#f8fafc;
  --white:#fff;
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  background:#fffaf5;
  color:var(--stone-900);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
}
img { max-width:100%; }
a { color:inherit; }

.site-header {
  position:fixed;
  inset:0 0 auto 0;
  z-index:100;
  min-height:64px;
  border-bottom:1px solid rgba(255,255,255,.72);
  background:rgba(255,255,255,.86);
  box-shadow:0 3px 14px rgba(15,23,42,.07);
  backdrop-filter:blur(18px) saturate(150%);
  -webkit-backdrop-filter:blur(18px) saturate(150%);
}
.site-header-inner {
  width:100%;
  max-width:1440px;
  min-height:64px;
  margin:0 auto;
  padding:8px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.header-mark {
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  text-decoration:none;
  transition:opacity .18s ease;
}
.header-mark:hover { opacity:.8; }
.header-mark img { display:block; width:auto; height:48px; object-fit:contain; }
.header-nav {
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  color:var(--slate-600);
  font-size:.86rem;
  font-weight:800;
}
.header-nav a { text-decoration:none; }
.header-section-link {
  padding:9px 13px;
  border-radius:999px;
}
.header-section-link:hover { color:var(--orange); background:rgba(241,245,249,.8); }
.header-pitch {
  margin-left:8px;
  color:var(--slate-500);
  font-size:.94rem;
  font-style:italic;
  font-weight:800;
  white-space:nowrap;
}
.header-trial {
  margin-left:4px;
  padding:10px 18px;
  border-radius:999px;
  background:#c2410c;
  color:white;
  box-shadow:0 8px 18px rgba(194,65,12,.2);
}
.header-trial:hover { background:var(--stone-900); color:white; }
.header-login {
  padding:9px 4px;
  color:var(--slate-600);
}
.header-login:hover { color:var(--stone-950); }

.page-shell { max-width:1280px; margin:0 auto; padding:88px 24px 80px; }
#platform,#guide-sections { scroll-margin-top:88px; }
.breadcrumbs { padding:5px 4px 18px; color:#78716c; font-size:.78rem; font-weight:600; }
.breadcrumbs ol { list-style:none; display:flex; flex-wrap:wrap; gap:8px; padding:0; margin:0; }
.breadcrumbs li+li::before { content:"/"; margin-right:8px; color:#d6d3d1; }
.breadcrumbs a { text-decoration:none; color:#57534e; }

.home-style-hero {
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
  gap:34px;
  padding:30px 34px;
  border-radius:48px;
  border:2px solid #fdba74;
  background:white;
  box-shadow:0 26px 70px rgba(124,45,18,.15);
}
.hero-glow { position:absolute; border-radius:999px; filter:blur(90px); pointer-events:none; }
.hero-glow-one { width:500px; height:500px; top:-260px; left:-180px; background:rgba(251,146,60,.16); }
.hero-glow-two { width:420px; height:420px; bottom:-230px; right:-130px; background:rgba(245,158,11,.13); }
.hero-left,.hero-right { position:relative; z-index:2; min-width:0; }

.hero-brand {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  font-size:clamp(2.2rem,5vw,4.1rem);
  font-weight:900;
  line-height:.95;
  letter-spacing:-.075em;
  background:linear-gradient(90deg,#ea580c,#c2410c,#9a3412);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-brand img { width:auto; height:.8em; object-fit:contain; filter:drop-shadow(0 3px 3px rgba(0,0,0,.12)); }

.dashboard-flaggies {
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:7px;
  margin-bottom:16px;
}
.dashboard-flaggie {
  display:flex;
  min-width:0;
  flex-direction:column;
  align-items:center;
  gap:3px;
  animation:floaty 3s ease-in-out infinite;
  animation-delay:var(--delay);
}
.dashboard-flaggie img { width:clamp(42px,6vw,76px); height:clamp(42px,6vw,76px); object-fit:contain; filter:drop-shadow(0 8px 8px rgba(0,0,0,.12)); }
.dashboard-flaggie span { color:var(--slate-600); font-size:.58rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

.hero-copy { margin-top:8px; }
.hero-pill,.section-badge {
  display:inline-flex;
  align-items:center;
  padding:8px 13px;
  border:1px solid #fed7aa;
  border-radius:999px;
  background:#fff7ed;
  color:#c2410c;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.hero-copy h1 {
  margin:16px 0 0;
  max-width:760px;
  color:var(--slate-900);
  font-size:clamp(2rem,4.1vw,3.6rem);
  line-height:1.04;
  letter-spacing:-.06em;
}
.hero-accent {
  margin:11px 0 0;
  color:var(--orange);
  font-size:clamp(1.1rem,2.3vw,1.7rem);
  line-height:1.18;
  font-weight:900;
  letter-spacing:-.025em;
}
.hero-platform-copy {
  max-width:760px;
  margin:13px 0 0;
  color:var(--slate-600);
  font-size:.98rem;
  line-height:1.65;
  font-weight:600;
}

.language-line { display:flex; flex-wrap:wrap; gap:7px; margin-top:17px; }
.language-line span {
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:5px 8px 5px 5px;
  border:1px solid #e2e8f0;
  border-radius:999px;
  background:white;
  box-shadow:0 3px 9px rgba(15,23,42,.05);
  color:var(--slate-700);
  font-size:.7rem;
}
.language-line img { width:22px; height:22px; object-fit:contain; transform:scale(1.22); }

.hero-right {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:8px;
}
.hero-tagline {
  align-self:stretch;
  margin:0;
  text-align:right;
  color:transparent;
  background:linear-gradient(90deg,#ea580c,#c2410c,#9a3412);
  -webkit-background-clip:text;
  background-clip:text;
  font-size:1.02rem;
  font-weight:900;
  letter-spacing:.12em;
  font-style:italic;
}
.hero-ctas { align-self:stretch; display:flex; justify-content:flex-end; gap:10px; }
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  font-size:.9rem;
}
.button-dark { background:var(--stone-950); color:white; box-shadow:0 12px 25px rgba(12,10,9,.19); }
.button-dark:hover { background:var(--stone-800); }
.button-outline { background:white; color:#c2410c; border:2px solid var(--orange); }
.button-outline:hover { background:#fff7ed; }
.all-flaggies { width:min(92%,500px); max-height:360px; object-fit:contain; margin-top:-3px; filter:drop-shadow(0 20px 18px rgba(0,0,0,.17)); }
.proof-pills { width:100%; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:7px; margin-top:-8px; }
.proof-pills span {
  display:flex;
  align-items:center;
  min-height:54px;
  padding:10px 11px;
  border:1px solid #e2e8f0;
  border-radius:16px;
  background:white;
  color:var(--slate-700);
  box-shadow:0 5px 14px rgba(15,23,42,.06);
  font-size:.74rem;
  line-height:1.28;
  font-weight:850;
}
.proof-pills span::first-letter { color:var(--orange); }

.guide-context {
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(360px,1.18fr);
  align-items:center;
  gap:34px;
  margin-top:36px;
  padding:34px;
  border-radius:34px;
  background:#fff;
  border:1px solid #e7e5e4;
  box-shadow:0 16px 42px rgba(28,25,23,.06);
}
.eyebrow {
  color:var(--orange);
  font-size:.7rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.13em;
}
.guide-context-copy p { color:var(--slate-600); font-size:1rem; line-height:1.72; }
.guide-context-copy strong { color:var(--slate-900); }
.guide-context-copy a { display:inline-flex; margin-top:6px; color:#c2410c; font-weight:900; text-decoration:none; }
.guide-context-shot {
  overflow:hidden;
  border-radius:24px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  box-shadow:0 18px 45px rgba(15,23,42,.12);
  transform:rotate(1deg);
}
.shot-bar { display:flex; align-items:center; gap:6px; height:36px; padding:0 12px; background:#f1f5f9; border-bottom:1px solid #e2e8f0; }
.shot-bar span { width:8px; height:8px; border-radius:50%; background:#cbd5e1; }
.shot-bar b { margin-left:auto; color:#94a3b8; font-size:.62rem; }
.guide-context-shot > img {
  display:block;
  width:100%;
  aspect-ratio:16/9;
  object-fit:contain;
  object-position:center top;
  background:#fff;
}

.platform-section {
  margin-top:48px;
  padding:54px;
  border-radius:48px;
  background:var(--stone-900);
  color:white;
  box-shadow:0 28px 70px rgba(28,25,23,.2);
}
.platform-heading { max-width:900px; margin:0 auto 34px; text-align:center; }
.platform-heading h2 {
  margin:16px 0 0;
  font-size:clamp(2.45rem,5vw,4.5rem);
  line-height:.98;
  letter-spacing:-.065em;
}
.platform-heading p { max-width:800px; margin:18px auto 0; color:#a8a29e; font-size:1.05rem; line-height:1.65; font-weight:600; }

.platform-bento {
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:16px;
}
.tile {
  position:relative;
  overflow:hidden;
  min-height:0;
  display:flex;
  flex-direction:column;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.11);
  box-shadow:0 18px 38px rgba(0,0,0,.18);
}
.tile-half { grid-column:span 6; }
.tile-small { grid-column:span 4; }
.tile-orange { background:linear-gradient(135deg,#7c2d12,#292524); }
.tile-stone { background:linear-gradient(135deg,#292524,#1c1917); }
.tile-blue { background:linear-gradient(135deg,#1d4ed8,#1e3a8a); }
.tile-teal { background:linear-gradient(135deg,#0f766e,#115e59); }
.tile-emerald { background:linear-gradient(135deg,#047857,#065f46); }
.tile-violet { background:linear-gradient(135deg,#6d28d9,#4c1d95); }
.tile-rose { background:linear-gradient(135deg,#be123c,#9f1239); }
.tile-copy { position:relative; z-index:2; flex:1; padding:30px; }
.tile-copy > span { display:block; color:#fed7aa; font-size:.65rem; font-weight:900; letter-spacing:.14em; text-transform:uppercase; }
.tile h3 { margin:10px 0 0; color:white; font-size:clamp(1.45rem,2.6vw,2.3rem); line-height:1.04; letter-spacing:-.045em; }
.tile p { margin:12px 0 0; max-width:540px; color:rgba(255,255,255,.78); line-height:1.58; font-weight:550; }
.tile-media {
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  background:rgba(255,255,255,.04);
}
.tile-media::after {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,transparent 72%,rgba(0,0,0,.12));
}
.tile-media img {
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center top;
  border-radius:18px;
  background:#fff;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}
.tile-half .tile-media,.tile-small .tile-media {
  height:auto;
  min-height:0;
}

.platform-language-callout {
  display:grid;
  grid-template-columns:minmax(0,1fr) 270px;
  align-items:center;
  gap:30px;
  margin-top:18px;
  padding:28px 32px;
  border-radius:30px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
}
.platform-language-copy h3 { margin:7px 0 0; font-size:1.8rem; letter-spacing:-.035em; }
.platform-language-copy p { margin:9px 0 0; max-width:760px; color:#d6d3d1; line-height:1.6; }
.platform-language-callout img { width:270px; max-height:150px; object-fit:contain; filter:drop-shadow(0 18px 14px rgba(0,0,0,.3)); }

.gallery-section {
  position:relative;
  overflow:hidden;
  margin-top:48px;
  padding:56px 42px;
  border-radius:48px;
  background:#0f172a;
  color:white;
  box-shadow:0 28px 70px rgba(15,23,42,.18);
}
.gallery-glow { position:absolute; border-radius:50%; filter:blur(95px); pointer-events:none; }
.gallery-glow-one { width:420px;height:420px;top:-180px;left:-140px;background:rgba(245,158,11,.16); }
.gallery-glow-two { width:380px;height:380px;right:-140px;bottom:-190px;background:rgba(234,88,12,.14); }
.gallery-heading { position:relative; z-index:2; max-width:880px; margin:0 auto 34px; text-align:center; }
.dark-eyebrow { color:#fbbf24; }
.gallery-heading h2 { margin:10px 0 0; font-size:clamp(2.3rem,4.7vw,4rem); line-height:1; letter-spacing:-.06em; }
.gallery-heading p { max-width:760px; margin:14px auto 0; color:#94a3b8; line-height:1.65; font-size:1.02rem; }
.gallery-grid { position:relative; z-index:2; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.gallery-grid figure { position:relative; overflow:hidden; margin:0; border-radius:28px; background:#1e293b; border:1px solid rgba(255,255,255,.08); box-shadow:0 20px 42px rgba(0,0,0,.22); }
.gallery-grid img {
  display:block;
  width:100%;
  aspect-ratio:16/9;
  object-fit:contain;
  object-position:center top;
  background:#fff;
  opacity:.96;
}
.gallery-grid figcaption { position:absolute; left:0; right:0; bottom:0; padding:28px 22px 18px; background:linear-gradient(transparent,rgba(15,23,42,.92)); font-size:1.15rem; font-weight:900; }

.guide-shell {
  margin-top:48px;
  padding:56px 42px;
  border-radius:48px;
  background:#f8fafc;
}
.guide-heading { max-width:780px; margin:0 auto 30px; text-align:center; }
.guide-heading h2 { margin:13px 0 0; color:#111827; font-size:clamp(2.35rem,4.5vw,3.7rem); letter-spacing:-.06em; }
.orange-rule { width:96px; height:8px; margin:16px auto 20px; border-radius:999px; background:linear-gradient(90deg,#f97316,#f59e0b); }
.guide-heading p { color:#64748b; line-height:1.65; }
.guide-list { max-width:930px; margin:0 auto; display:grid; gap:12px; }
.guide-item {
  scroll-margin-top:24px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  border-radius:18px;
  background:white;
  box-shadow:0 3px 10px rgba(15,23,42,.035);
}
.guide-item summary {
  list-style:none;
  display:grid;
  grid-template-columns:42px minmax(0,1fr) 28px;
  align-items:center;
  gap:13px;
  padding:20px 22px;
  cursor:pointer;
  color:#111827;
}
.guide-item summary::-webkit-details-marker { display:none; }
.guide-number { color:#f97316; font-size:.68rem; font-weight:900; letter-spacing:.12em; }
.guide-item summary strong { font-size:1.02rem; }
.chevron { display:grid; place-items:center; width:28px; height:28px; border-radius:50%; color:#94a3b8; font-size:1.1rem; transition:transform .18s ease; }
.guide-item[open] .chevron { transform:rotate(180deg); color:#f97316; }
.guide-content { padding:18px 24px 28px 77px; border-top:1px solid #f1f5f9; }
.guide-content p,.guide-content li { color:#475569; font-size:.98rem; line-height:1.72; }
.guide-content p { margin:.85em 0; }
.guide-content ul,.guide-content ol { padding-left:1.35em; }
.guide-content h3 { color:#0f172a; margin:1.4em 0 .55em; font-size:1.1rem; }
.guide-content strong { color:#0f172a; }
.guide-content a { color:#c2410c; font-weight:700; }
.guide-content blockquote { margin:1.2em 0; padding:15px 18px; border-left:4px solid #f97316; background:#fff7ed; border-radius:0 14px 14px 0; }
.table-scroll { overflow:auto; margin:1.2em 0; border:1px solid #e2e8f0; border-radius:16px; }
table { width:100%; min-width:580px; border-collapse:collapse; }
th,td { padding:12px 14px; border-bottom:1px solid #e5e7eb; text-align:left; vertical-align:top; font-size:.9rem; line-height:1.5; }
th { background:#1c1917; color:white; }
tr:last-child td { border-bottom:0; }

.closing-cta {
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  align-items:center;
  gap:30px;
  margin-top:48px;
  padding:40px 44px;
  border-radius:40px;
  background:#1c1917;
  color:white;
  box-shadow:0 26px 60px rgba(28,25,23,.2);
}
.closing-copy h2 { margin:8px 0 0; font-size:clamp(2rem,4vw,3.5rem); line-height:1.02; letter-spacing:-.055em; }
.closing-copy p { max-width:720px; color:#d6d3d1; line-height:1.6; }
.closing-copy a { display:inline-flex; align-items:center; gap:9px; margin-top:8px; padding:13px 18px; border-radius:999px; background:#ea580c; color:white; text-decoration:none; font-weight:900; }
.closing-copy a:hover { background:#c2410c; }
.closing-cta > img { width:360px; max-height:210px; object-fit:contain; filter:drop-shadow(0 18px 16px rgba(0,0,0,.28)); }

.landing-footer {
  max-width:1280px;
  margin:0 auto;
  padding:38px 24px 46px;
  border-top:1px solid rgba(203,213,225,.65);
  color:var(--slate-500);
}
.landing-footer-grid {
  width:100%;
  max-width:900px;
  margin:0 auto 34px;
  padding:0 6px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:34px;
  text-align:left;
}
.landing-footer h4 {
  margin:0 0 14px;
  color:var(--slate-800);
  font-size:.95rem;
  font-weight:900;
}
.landing-footer ul {
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:9px;
}
.landing-footer a,
.landing-footer button {
  padding:0;
  border:0;
  background:none;
  color:var(--slate-500);
  font:inherit;
  font-size:.86rem;
  text-decoration:none;
  cursor:pointer;
}
.landing-footer a:hover,
.landing-footer button:hover { color:var(--orange); }
.landing-footer-legal {
  max-width:760px;
  margin:0 auto;
  padding:0 12px;
  text-align:center;
  font-size:.78rem;
  line-height:1.55;
}
.landing-footer-legal p { margin:0; }
.landing-footer-legal strong { color:var(--slate-700); }
.footer-disclaimer {
  margin-top:8px !important;
  color:var(--slate-500);
  font-size:.72rem;
}

@media (max-width:1050px) {
  .home-style-hero { grid-template-columns:1fr; }
  .hero-tagline { text-align:left; }
  .hero-ctas { justify-content:flex-start; }
  .all-flaggies { max-height:300px; }
  .guide-context { grid-template-columns:1fr; }
  .tile-half { grid-column:span 12; }
  .tile-small { grid-column:span 6; }
}
@media (max-width:760px) {
  .site-header-inner { min-height:62px; padding:7px 14px; }
  .header-mark img { height:46px; }
  .header-section-link,.header-pitch { display:none; }
  .header-nav { gap:10px; }
  .header-trial { margin-left:0; padding:9px 14px; font-size:.8rem; }
  .header-login { font-size:.8rem; }
  .page-shell { padding:78px 12px 54px; }
  .breadcrumbs { padding-left:2px; }
  .home-style-hero { padding:24px 18px 26px; border-radius:30px; gap:24px; }
  .hero-brand { font-size:2.55rem; }
  .dashboard-flaggies { gap:2px; margin-bottom:12px; }
  .dashboard-flaggie img { width:42px; height:42px; }
  .dashboard-flaggie span { display:none; }
  .hero-copy h1 { font-size:2.05rem; line-height:1.03; }
  .hero-accent { font-size:1.02rem; line-height:1.28; }
  .hero-platform-copy { font-size:.9rem; line-height:1.55; }
  .language-line span b { display:none; }
  .language-line span { padding:3px; }
  .language-line img { width:25px;height:25px; }
  .hero-ctas { flex-direction:column; }
  .button { width:100%; }
  .proof-pills { grid-template-columns:1fr; margin-top:0; }
  .all-flaggies { width:82%; max-height:220px; margin-top:2px; }
  .guide-context { margin-top:24px; padding:22px 18px; border-radius:26px; gap:20px; }
  .guide-context-shot { transform:none; border-radius:18px; }
  .guide-context-shot > img { aspect-ratio:16/9; object-fit:contain; }
  .platform-section,.gallery-section,.guide-shell { margin-top:26px; padding:28px 14px; border-radius:28px; }
  .platform-heading { margin-bottom:24px; }
  .platform-heading h2,.gallery-heading h2 { font-size:2.08rem; line-height:1.02; }
  .platform-heading p,.gallery-heading p { margin-top:12px; font-size:.94rem; line-height:1.55; }
  .platform-bento { grid-template-columns:1fr; }
  .tile,.tile-half,.tile-small { grid-column:auto; min-height:0; display:block; }
  .tile { border-radius:24px; }
  .tile-copy { padding:19px 18px 16px; }
  .tile-copy > span { font-size:.6rem; }
  .tile h3 { font-size:1.38rem; line-height:1.08; }
  .tile p { margin-top:8px; font-size:.9rem; line-height:1.5; }
  .tile-media,.tile-half .tile-media,.tile-small .tile-media {
    width:100%;
    height:auto;
    min-height:0;
    aspect-ratio:16/9;
    padding:10px;
  }
  .tile-media img {
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center top;
    border-radius:14px;
  }
  .platform-language-callout { grid-template-columns:1fr; padding:22px; }
  .platform-language-callout img { justify-self:center; max-width:230px; }
  .gallery-grid { grid-template-columns:1fr; gap:12px; }
  .gallery-grid figure { border-radius:20px; }
  .gallery-grid img { aspect-ratio:16/9; object-fit:contain; object-position:center top; background:#fff; }
  .gallery-grid figcaption { padding:22px 16px 14px; font-size:1rem; }
  .guide-content { padding:16px 18px 22px; }
  .guide-item summary { grid-template-columns:34px minmax(0,1fr) 26px; padding:17px 14px; }
  .closing-cta { grid-template-columns:1fr; margin-top:28px; padding:30px 22px; border-radius:30px; }
  .closing-cta > img { width:260px; justify-self:center; }
  .landing-footer { padding:30px 16px 34px; }
  .landing-footer-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px 20px; margin-bottom:28px; }
  .landing-footer-legal { padding:0; }
}
@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  .dashboard-flaggie { animation:none; }
}


/* Connected SEO navigation */
.hero-brand { text-decoration:none; }
.dashboard-flaggie { text-decoration:none; border-radius:16px; padding:4px; transition:transform .18s ease, background .18s ease; }
.dashboard-flaggie:hover { background:var(--orange-soft); transform:translateY(-3px); }
.language-line a {
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:5px 8px 5px 5px;
  border:1px solid #e2e8f0;
  border-radius:999px;
  background:white;
  box-shadow:0 3px 9px rgba(15,23,42,.05);
  color:var(--slate-700);
  font-size:.7rem;
  text-decoration:none;
  transition:transform .18s ease,border-color .18s ease;
}
.language-line a:hover { transform:translateY(-2px); border-color:#fdba74; }
.language-line a img { width:22px; height:22px; object-fit:contain; transform:scale(1.22); }
.image-link { display:block; text-decoration:none; }
.all-flaggies-link { width:min(92%,500px); }
.all-flaggies-link .all-flaggies { width:100%; }
.guide-context-shot { text-decoration:none; transition:transform .2s ease,box-shadow .2s ease; }
.guide-context-shot:hover { transform:rotate(0deg) translateY(-3px); box-shadow:0 22px 50px rgba(15,23,42,.16); }
.tile { color:inherit; text-decoration:none; transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.tile:hover { transform:translateY(-4px); border-color:rgba(255,255,255,.28); box-shadow:0 24px 46px rgba(0,0,0,.24); }
.tile-link-copy { display:inline-flex !important; margin-top:18px; color:white !important; font-size:.75rem !important; letter-spacing:0 !important; text-transform:none !important; }
.language-callout-image { width:270px; justify-self:end; }
.language-callout-image img { width:100%; max-height:150px; object-fit:contain; filter:drop-shadow(0 18px 14px rgba(0,0,0,.3)); }
.gallery-card { color:inherit; text-decoration:none; border-radius:28px; }
.gallery-card figure { height:100%; transition:transform .2s ease,border-color .2s ease; }
.gallery-card:hover figure { transform:translateY(-4px); border-color:rgba(251,191,36,.45); }
.gallery-card figcaption span { color:#fbbf24; }
.related-guides {
  margin-top:48px;
  padding:48px 42px;
  border:1px solid #e7e5e4;
  border-radius:42px;
  background:white;
  box-shadow:0 18px 48px rgba(28,25,23,.07);
}
.related-heading { max-width:820px; margin:0 auto 28px; text-align:center; }
.related-heading h2 { margin:13px 0 0; color:var(--slate-900); font-size:clamp(2.15rem,4vw,3.5rem); letter-spacing:-.055em; }
.related-heading p { margin:12px auto 0; max-width:680px; color:var(--slate-500); line-height:1.65; }
.related-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.related-card {
  min-height:220px;
  padding:24px;
  border:1px solid #e2e8f0;
  border-radius:24px;
  background:linear-gradient(180deg,#fff,#fffaf5);
  color:inherit;
  text-decoration:none;
  box-shadow:0 8px 22px rgba(15,23,42,.05);
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.related-card:hover { transform:translateY(-4px); border-color:#fdba74; box-shadow:0 16px 32px rgba(124,45,18,.11); }
.related-card > span { color:var(--orange); font-size:.66rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.related-card h3 { margin:10px 0 0; color:var(--slate-900); font-size:1.12rem; line-height:1.25; letter-spacing:-.02em; }
.related-card p { margin:11px 0 18px; color:var(--slate-600); font-size:.88rem; line-height:1.55; }
.related-card b { color:#c2410c; font-size:.82rem; }
.closing-image-link { width:360px; justify-self:end; }
.closing-image-link img { width:100%; max-height:210px; object-fit:contain; filter:drop-shadow(0 18px 16px rgba(0,0,0,.28)); }
@media (max-width:900px) {
  .related-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .language-callout-image,.closing-image-link { width:220px; }
}
@media (max-width:640px) {
  .related-guides { padding:34px 20px; border-radius:30px; }
  .related-grid { grid-template-columns:1fr; }
  .related-card { min-height:0; }
}


/* Interactive affordance sweep */
.hero-pill,.section-badge { text-decoration:none; }
.interactive-pill { gap:7px; cursor:pointer; transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease,background .16s ease; }
.interactive-pill:hover { transform:translateY(-2px); border-color:#fb923c; background:#ffedd5; box-shadow:0 8px 18px rgba(234,88,12,.10); }
.proof-pills a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  min-height:54px;
  padding:10px 11px;
  border:1px solid #e2e8f0;
  border-radius:16px;
  background:white;
  color:var(--slate-700);
  box-shadow:0 5px 14px rgba(15,23,42,.06);
  font-size:.74rem;
  line-height:1.28;
  font-weight:850;
  text-decoration:none;
  transition:transform .16s ease,border-color .16s ease,box-shadow .16s ease;
}
.proof-pills a:hover { transform:translateY(-2px); border-color:#fdba74; box-shadow:0 10px 20px rgba(124,45,18,.10); }
.proof-pills a > span { color:var(--orange); font-weight:900; }
.platform-language-callout { color:inherit; text-decoration:none; cursor:pointer; transition:transform .18s ease,border-color .18s ease,background .18s ease; }
.platform-language-callout:hover { transform:translateY(-3px); border-color:rgba(251,191,36,.32); background:rgba(255,255,255,.075); }
.callout-link-copy { display:inline-flex; margin-top:12px; color:#fbbf24; font-size:.82rem; }
