:root {
  --ink: #102434;
  --ink-2: #17354a;
  --paper: #f7f3ee;
  --white: #ffffff;
  --accent: #d76e1f;
  --accent-2: #efab59;
  --line: rgba(16,36,52,.12);
  --text: #162734;
  --muted: #5c6a76;
  --shadow: 0 24px 70px rgba(10,20,28,.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --wrap: min(1180px, calc(100% - 48px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #fbf8f4 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
iframe { border: 0; width: 100%; height: 100%; display: block; }
video { width: 100%; height: 100%; display: block; object-fit: cover; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding: 88px 0; }
.soft { background: linear-gradient(180deg, rgba(215,110,31,.06), rgba(16,36,52,.03)); }
.section-kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  font: 700 12px/1 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
h1, h2, h3, h4, strong, small, .header-cta, .btn, .text-link, .lang-btn, .chip-btn, .submit-btn, .small-btn, .ghost-btn { font-family: 'Montserrat', sans-serif; }
h1 { margin: 0 0 18px; font-size: clamp(44px, 7vw, 88px); line-height: .98; letter-spacing: -.045em; }
h2 { margin: 0 0 18px; font-size: clamp(30px, 4vw, 54px); line-height: 1.05; letter-spacing: -.03em; }
h3 { margin: 0 0 12px; font-size: 23px; line-height: 1.14; }
p { margin: 0 0 16px; font-size: 17px; line-height: 1.72; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 24, 36, .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: .25s ease;
}
.site-header.scrolled { background: rgba(10,24,36,.94); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 92px;
  padding: 12px 0;
}
.brand img { width: clamp(180px, 18vw, 300px); }
.desktop-nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}
.desktop-nav a, .mobile-nav a {
  position: relative;
  font: 700 11px/1 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.82);
}
.desktop-nav a::after, .mobile-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: .24s ease;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after, .mobile-nav a:hover::after, .mobile-nav a.active::after { transform: scaleX(1); }
.desktop-nav a:hover, .desktop-nav a.active, .mobile-nav a:hover, .mobile-nav a.active { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.82);
  padding: 9px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}
.lang-btn.active { background: #fff; color: var(--ink); }
.header-cta, .btn, .submit-btn, .ghost-btn, .small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  padding: 15px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.header-cta, .btn.primary, .submit-btn, .small-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 34px rgba(215,110,31,.28);
}
.ghost-btn, .btn.ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.small-btn { padding: 12px 16px; font-size: 11px; }
.small-btn.danger { background: #c84747; box-shadow: none; }
.header-cta:hover, .btn:hover, .submit-btn:hover, .small-btn:hover, .ghost-btn:hover { transform: translateY(-2px); }
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-btn span { display: block; height: 2px; background: #fff; border-radius: 999px; transition: .24s ease; }
.menu-btn.open span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:last-child { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  background: rgba(10,24,36,.97);
  padding: 0 24px 20px;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav.open { display: flex; }

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at top left, rgba(239,171,89,.18), transparent 34%), linear-gradient(135deg, var(--ink) 0%, #163146 45%, #0f2434 100%);
}
.hero { min-height: 100vh; display: grid; align-items: center; }
.page-hero { padding: 120px 0 84px; }
.grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.65), transparent 92%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  animation: float 10s ease-in-out infinite;
}
.orb-a { width: 320px; height: 320px; top: -100px; right: -80px; background: radial-gradient(circle, rgba(239,171,89,.5), transparent 70%); }
.orb-b { width: 280px; height: 280px; left: -80px; bottom: -90px; background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%); animation-delay: 1.2s; }
@keyframes float { 0%,100% { transform: translate3d(0,0,0);} 50% { transform: translate3d(10px,22px,0);} }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  gap: 56px;
  align-items: center;
  padding: 120px 0 88px;
}
.hero-copy p, .page-hero p { color: rgba(255,255,255,.74); font-size: 18px; max-width: 720px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-showcase { display: grid; gap: 18px; }
.hero-video-box, .hero-mini-card, .hero-side-card, .hero-side-icon {
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.hero-video-box { position: relative; aspect-ratio: 16/10; overflow: hidden; padding: 0; }
.hero-video-box video { width: 100%; height: 100%; object-fit: cover; }
.hero-video-overlay { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 18px; background: rgba(10,24,36,.56); backdrop-filter: blur(8px); }
.hero-video-overlay strong { font-size: 16px; }
.hero-video-overlay span { font: 700 11px/1 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-2); }
.hero-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.hero-mini-card { padding: 22px; min-height: 220px; }
.hero-mini-card strong { display: block; font-size: 20px; margin: 8px 0 12px; }
.hero-mini-card p { margin: 0; color: rgba(255,255,255,.7); font-size: 15px; }
.floating { animation: bob 6.8s ease-in-out infinite; }
.pulse { animation: bob2 5.5s ease-in-out infinite; }
.delay-2 { animation-delay: 1s; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }
@keyframes bob2 { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-6px);} }
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .45fr);
  gap: 34px;
  align-items: end;
}
.hero-side { display: grid; gap: 16px; }
.hero-side-icon, .hero-side-card { padding: 24px; }
.hero-side-icon { display: grid; place-items: center; min-height: 148px; }
.hero-side-icon svg { width: 80px; height: 80px; fill: none; stroke: var(--accent-2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-side-card strong { display: block; font-size: 18px; margin-bottom: 10px; }
.hero-side-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 15px; }

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.cards-grid, .projects-grid, .video-grid, .team-grid {
  display: grid;
  gap: 24px;
}
.cards-grid.three, .projects-grid, .video-grid, .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card, .value-card, .project-card, .video-card, .team-card, .tool-card, .form-card, .contact-card, .empty-job-card, .admin-login-card, .admin-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(16,36,52,.08);
  box-shadow: var(--shadow);
}
.info-card::before, .value-card::before, .project-card::before, .video-card::before, .team-card::before, .tool-card::before, .form-card::before, .admin-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215,110,31,.08), transparent 42%, rgba(16,36,52,.04));
  opacity: 0;
  transition: opacity .24s ease;
}
.info-card:hover::before, .value-card:hover::before, .project-card:hover::before, .video-card:hover::before, .team-card:hover::before, .tool-card:hover::before, .form-card:hover::before, .admin-card:hover::before { opacity: 1; }
.info-card, .value-card, .project-card, .tool-card, .form-card, .contact-card, .empty-job-card, .admin-login-card, .admin-card { padding: 30px; }
.info-card:hover, .value-card:hover, .project-card:hover, .video-card:hover, .team-card:hover, .tool-card:hover, .form-card:hover, .contact-card:hover, .admin-card:hover { transform: translateY(-4px); transition: .24s ease; }
.info-card a, .text-link, .video-copy a, .project-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.info-card a span, .text-link span, .video-copy a span, .project-card a span { color: var(--accent); font-size: 18px; }
.info-icon, .mini-icon, .big-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(215,110,31,.09);
  color: var(--accent);
}
.info-icon, .mini-icon { width: 68px; height: 68px; margin-bottom: 22px; }
.big-icon { width: 190px; height: 190px; }
.info-icon svg, .mini-icon svg, .big-icon svg, .contact-card svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.big-icon svg { width: 76px; height: 76px; }
.project-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(16,36,52,.06);
  color: var(--ink);
  font: 700 11px/1 'Montserrat', sans-serif;
  letter-spacing: .1em;
}
.video-card { display: grid; grid-template-rows: auto 1fr; }
.video-frame { position: relative; aspect-ratio: 16/9; background: #000; overflow: hidden; }
.video-frame video { transition: transform .5s ease; }
.video-card:hover .video-frame video { transform: scale(1.04); }
.video-overlay { position: absolute; left: 16px; bottom: 16px; }
.video-overlay span, .video-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: rgba(10,24,36,.68); color: #fff; border: 1px solid rgba(255,255,255,.14); font: 700 10px/1 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .12em; }
.video-copy { padding: 22px 24px 24px; }
.video-copy p { min-height: 80px; font-size: 15px; }
.video-badge { margin-top: 4px; background: rgba(215,110,31,.1); color: var(--accent); border-color: rgba(215,110,31,.18); }
.tool-card.dark {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
}
.tool-card.dark p, .tool-card.dark small { color: rgba(255,255,255,.72); }
.inline-video { margin-top: 18px; aspect-ratio: 16/9; overflow: hidden; border-radius: 20px; }
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.tag-cloud span, .chip-btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16,36,52,.12);
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}
.team-photo { aspect-ratio: 4/4.5; overflow: hidden; background: linear-gradient(145deg, #e3eaef, #f1f4f6); }
.team-photo.cutout { background: radial-gradient(circle at top, rgba(215,110,31,.12), transparent 38%), linear-gradient(145deg, #e3eaef, #f5f7f9); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; filter: saturate(1.04) contrast(1.02); }
.team-photo.cutout img { object-fit: contain; object-position: center bottom; padding: 16px 18px 0; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-copy { padding: 22px 24px 26px; }
.team-role {
  color: var(--accent);
  font: 700 12px/1.5 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.list-layout {
  display: grid;
  grid-template-columns: .34fr .66fr;
  gap: 36px;
  align-items: start;
}
.bullet-list {
  border-top: 1px solid var(--line);
  display: grid;
}
.bullet-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.bullet-item span { color: var(--accent); font-size: 24px; line-height: 1; }
.bullet-item p { margin: 0; }
.booking-grid, .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .56fr) minmax(0, .44fr);
  gap: 24px;
}
.booking-form, .admin-login-form {
  display: grid;
  gap: 14px;
}
.booking-form label, .admin-login-form label, .admin-card label {
  display: grid;
  gap: 8px;
  font: 700 12px/1.4 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
}
.booking-form input, .booking-form select, .booking-form textarea, .admin-login-form input, .admin-card textarea, .admin-card select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(16,36,52,.14);
  padding: 15px 16px;
  background: #fff;
  color: var(--text);
  outline: none;
}
.booking-form textarea, .admin-card textarea { resize: vertical; }
.success-text { color: #22804f; font-weight: 600; margin-top: 8px; }
.small-video-stack { display: grid; gap: 12px; margin-top: 18px; }
.stack-item { padding: 16px; border-radius: 16px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.08); }
.stack-video { aspect-ratio: 16/9; overflow: hidden; border-radius: 14px; margin-bottom: 12px; }
.stack-item strong { display: block; margin-bottom: 6px; }
.empty-job-card { text-align: center; max-width: 760px; margin-inline: auto; }
.empty-job-card .mini-icon { margin: 0 auto 18px; }
.contact-card { display: grid; gap: 18px; }
.contact-card div { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.contact-card div:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font: 700 12px/1 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.contact-card a, .contact-card p { margin: 0; font: 600 18px/1.6 'Montserrat', sans-serif; color: var(--ink); }
.map-card { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); min-height: 520px; }
.map-card iframe { min-height: 520px; }
.cta-band {
  padding: 70px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.round-link {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.36);
  font-size: 36px;
  flex-shrink: 0;
  transition: .24s ease;
}
.round-link:hover { transform: rotate(45deg); background: #fff; color: var(--accent); }
.footer { background: #081723; color: #fff; padding-top: 58px; }
.footer-main { display: grid; grid-template-columns: 1.3fr .85fr .8fr; gap: 42px; padding-bottom: 34px; }
.footer-main h4 { margin: 0 0 14px; color: var(--accent-2); font: 700 12px/1 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .14em; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-main a, .footer-main p, .footer-brand p, .footer-bottom { color: rgba(255,255,255,.72); }
.footer .brand img { width: clamp(170px, 16vw, 240px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding: 18px 0 28px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; }
.footer-bottom b { color: var(--accent-2); }

.ai-shell { position: fixed; right: 22px; bottom: 22px; z-index: 80; }
.ai-launcher {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: linear-gradient(135deg, #c65e15, #ea9f49);
  box-shadow: 0 16px 30px rgba(215,110,31,.3);
  font-weight: 700;
  font-size: 16px;
}
.ai-launcher.hidden { display: none; }
.ai-panel {
  width: min(390px, calc(100vw - 22px));
  display: none;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(16,36,52,.08);
  box-shadow: 0 26px 60px rgba(0,0,0,.16);
}
.ai-panel.open { display: block; }
.ai-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, #6b3814, var(--accent));
}
.ai-header strong { display: block; font-size: 22px; }
.ai-header small { display: block; margin-top: 6px; color: rgba(255,255,255,.78); }
.ai-header button { border: 0; background: transparent; color: #fff; font-size: 28px; line-height: 1; }
.ai-body { max-height: 330px; overflow: auto; padding: 16px; background: linear-gradient(180deg, #fff, #fbf7f2); }
.ai-msg { display: flex; margin-bottom: 12px; }
.ai-msg > div { max-width: 88%; padding: 15px 17px; border-radius: 18px; font-size: 15px; line-height: 1.6; }
.ai-msg.assistant { justify-content: flex-start; }
.ai-msg.assistant > div { background: #f6efe8; border: 1px solid #eadccf; }
.ai-msg.user { justify-content: flex-end; }
.ai-msg.user > div { background: rgba(215,110,31,.12); border: 1px solid rgba(215,110,31,.18); }
.ai-chip-row { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 12px; }
.chip-btn { color: var(--ink); cursor: pointer; }
.ai-form { display: grid; grid-template-columns: 1fr 50px; gap: 10px; padding: 0 16px 16px; }
.ai-form input { border-radius: 999px; border: 1px solid rgba(215,110,31,.34); padding: 14px 16px; outline: none; }
.ai-form button { border: 0; border-radius: 50%; background: var(--ink); color: #fff; font-size: 19px; }
.admin-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 22px; }
.admin-list { display: grid; gap: 18px; }
.admin-card-head { display: flex; gap: 16px; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.admin-card p { margin-bottom: 8px; }
.admin-actions { display: flex; gap: 10px; margin-top: 12px; }
.hint-text { color: var(--muted); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@media (max-width: 1120px) {
  .hero-inner, .page-hero-inner, .split-grid, .list-layout, .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .cards-grid.three, .projects-grid, .video-grid, .team-grid, .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-grid.two { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { align-items: flex-start; }
}
@media (max-width: 900px) {
  :root { --wrap: calc(100% - 32px); }
  .desktop-nav, .header-cta { display: none; }
  .menu-btn { display: inline-flex; }
  .header-inner { min-height: 82px; }
  .brand img { width: 190px; }
  .hero-inner { padding: 92px 0 76px; }
  .hero-mini-grid, .cards-grid.three, .cards-grid.two, .projects-grid, .video-grid, .team-grid, .footer-main { grid-template-columns: 1fr; }
  .tool-card, .form-card, .contact-card, .info-card, .value-card, .project-card { padding: 26px; }
  .big-icon { width: 150px; height: 150px; }
  .map-card, .map-card iframe { min-height: 380px; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 560px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .hero-copy p, .page-hero p { font-size: 16px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .btn, .submit-btn, .header-cta { width: 100%; }
  .ai-shell { right: 14px; bottom: 14px; }
  .ai-launcher { font-size: 14px; padding: 14px 18px; }
  .ai-panel { width: min(100vw - 10px, 390px); }
  .cta-band { padding: 54px 0; }
  .round-link { width: 72px; height: 72px; font-size: 30px; }
}
