
:root {
  --ink: #111426;
  --ink-2: #1a1d34;
  --cream: #fbf7ef;
  --paper: #ffffff;
  --muted: #6a6f80;
  --line: rgba(17, 20, 38, .12);
  --line-dark: rgba(255,255,255,.14);
  --violet: #7657e8;
  --violet-dark: #5b3fd0;
  --amber: #f5a524;
  --cyan: #42c7d9;
  --green: #3ecf8e;
  --red: #ef6b74;
  --shadow: 0 28px 80px rgba(17,20,38,.15);
  --shadow-soft: 0 14px 45px rgba(17,20,38,.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 17px;
  --max: 1240px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.dark {
  --cream: #111426;
  --paper: #181b30;
  --ink: #f8f6ef;
  --ink-2: #0d1020;
  --muted: #b7bbca;
  --line: rgba(255,255,255,.12);
  --shadow: 0 28px 80px rgba(0,0,0,.36);
  --shadow-soft: 0 14px 45px rgba(0,0,0,.24);
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 1000;
  background: var(--paper); padding: 12px 18px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; overflow: hidden; }
.section-sm { padding: 72px 0; }
.section-dark { background: var(--ink-2); color: #fbf8f1; }
.section-paper { background: var(--paper); }
.section-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800;
  color: var(--violet);
}
.section-dark .section-kicker { color: #b8a9ff; }
.section-kicker::before {
  content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 99px;
}
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.02; }
h1 { font-size: clamp(48px, 7.2vw, 88px); margin-bottom: 28px; }
h2 { font-size: clamp(38px, 5vw, 65px); margin-bottom: 22px; }
h3 { font-size: clamp(24px, 2.5vw, 34px); margin-bottom: 14px; }
h4 { font-size: 18px; margin-bottom: 8px; }
.serif-em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic; font-weight: 400;
}
.lead {
  font-size: clamp(18px, 2vw, 22px); line-height: 1.65; color: var(--muted);
  max-width: 720px;
}
.section-dark .lead { color: rgba(255,255,255,.72); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.header {
  height: var(--header-h);
  position: sticky; top: 0; z-index: 100;
  background: rgba(17,20,38,.94);
  color: white;
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; min-width: 0; height: 50px;
}
.brand img {
  max-height: 45px; width: auto; object-fit: contain;
}
.brand-fallback {
  display: none; font-weight: 850; font-size: 23px; letter-spacing: -.04em;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link, .nav-drop {
  appearance: none; border: 0; background: transparent; color: rgba(255,255,255,.72);
  padding: 12px 13px; border-radius: 999px; font-size: 14px; font-weight: 700;
  transition: .2s ease;
}
.nav-link:hover, .nav-link.active, .nav-drop:hover, .nav-drop[aria-expanded="true"] {
  color: white; background: rgba(255,255,255,.08);
}
.nav-wrap { position: relative; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%); width: 330px; padding: 12px;
  background: #fff; color: #111426; border-radius: 20px; box-shadow: var(--shadow);
  border: 1px solid rgba(17,20,38,.08);
}
.dropdown.open { display: block; }
.dropdown a {
  display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 12px;
  border-radius: 14px;
}
.dropdown a:hover { background: #f4f1ff; }
.mini-icon {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center; background: #eee9ff; color: var(--violet-dark); font-weight: 900;
}
.dropdown strong { display: block; font-size: 14px; }
.dropdown small { display: block; color: #6a6f80; line-height: 1.35; margin-top: 2px; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  background: transparent; color: #fff; display: grid; place-items: center;
}
.menu-btn { display: none; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent;
  font-size: 15px; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--violet); color: white; }
.btn-primary:hover { background: var(--violet-dark); }
.btn-light { background: white; color: #111426; }
.btn-outline { border-color: rgba(255,255,255,.24); color: white; }
.btn-outline-dark { border-color: var(--line); color: var(--ink); background: transparent; }

.mobile-panel {
  display: none; position: fixed; inset: var(--header-h) 0 auto 0; z-index: 90;
  background: #111426; color: white; border-top: 1px solid var(--line-dark);
  padding: 18px 20px 26px; max-height: calc(100vh - var(--header-h)); overflow: auto;
}
.mobile-panel.open { display: block; }
.mobile-panel a {
  display: block; padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,.09);
  font-weight: 700; color: rgba(255,255,255,.82);
}

.hero {
  min-height: calc(100vh - var(--header-h));
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(118,87,232,.38), transparent 35%),
    radial-gradient(circle at 70% 78%, rgba(66,199,217,.17), transparent 30%),
    #111426;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .26;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 30%, transparent 100%);
}
.hero-grid {
  position: relative; z-index: 2; min-height: inherit;
  display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 52px;
  padding: 72px 0;
}
.hero-copy { max-width: 690px; }
.hero .lead { color: rgba(255,255,255,.72); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px;
  color: #f6b94e; text-transform: uppercase; letter-spacing: .17em; font-size: 12px; font-weight: 850;
}
.eyebrow::before { content:""; width: 34px; height: 2px; background: currentColor; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 34px 0 42px; }
.trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.17);
}
.trust-item { padding: 22px 18px 0 0; }
.trust-item + .trust-item { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.13); }
.trust-item strong { display: block; font-size: 18px; color: #fff; }
.trust-item span { color: rgba(255,255,255,.52); font-size: 13px; }

.console {
  position: relative; min-height: 610px;
}
.console-main {
  position: absolute; inset: 20px 0 30px 40px;
  border-radius: 30px; padding: 18px;
  background: rgba(255,255,255,.96); color: #111426; box-shadow: 0 50px 110px rgba(0,0,0,.32);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
}
.console-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 7px 18px; border-bottom: 1px solid rgba(17,20,38,.08);
}
.dots { display: flex; gap: 7px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #d8d8df; }
.dot:nth-child(1){ background:#ef6b74;} .dot:nth-child(2){background:#f5a524;} .dot:nth-child(3){background:#3ecf8e;}
.console-body { display: grid; grid-template-columns: 150px 1fr; min-height: 510px; }
.console-side { padding: 18px 12px; border-right: 1px solid rgba(17,20,38,.08); }
.console-side div {
  padding: 11px 12px; border-radius: 11px; color: #7d8291; font-size: 12px; font-weight: 750; margin-bottom: 6px;
}
.console-side div.active { background: #eee9ff; color: var(--violet-dark); }
.console-content { padding: 20px; overflow: hidden; }
.console-title { display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.console-title strong { font-size: 18px; }
.status-pill {
  font-size: 11px; padding: 7px 10px; border-radius: 999px; background: #e9faf2; color: #168859; font-weight: 800;
}
.signal-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.signal-card {
  background:#f7f6fb; border:1px solid rgba(17,20,38,.07); border-radius:15px; padding:14px;
}
.signal-card span { display:block; color:#85899a; font-size:10px; text-transform:uppercase; letter-spacing:.08em; }
.signal-card strong { display:block; margin-top:7px; font-size:17px; }
.chart {
  height: 175px; margin: 13px 0; border-radius: 18px; position:relative; overflow:hidden;
  background:
    linear-gradient(rgba(17,20,38,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,20,38,.06) 1px, transparent 1px),
    #fbfbfd;
  background-size: 34px 34px;
}
.chart svg { position:absolute; inset:20px 10px 15px; width:calc(100% - 20px); height:calc(100% - 35px); }
.activity { display:grid; gap:8px; }
.activity-row {
  display:grid; grid-template-columns: 34px 1fr auto; align-items:center; gap:10px;
  padding:9px 10px; border:1px solid rgba(17,20,38,.07); border-radius:13px; background:#fff;
}
.activity-icon { width:34px;height:34px;border-radius:10px;display:grid;place-items:center;background:#eaf7fa;color:#188596;font-weight:900;}
.activity-row strong { display:block;font-size:12px;} .activity-row small{color:#8a8e9d;font-size:10px;}
.activity-row b{font-size:10px;color:#20a36b;}
.float-card {
  position:absolute; z-index:4; border-radius:18px; background:#fff; color:#111426;
  box-shadow:0 22px 60px rgba(0,0,0,.25); padding:14px 16px;
}
.float-card.one { right:-12px; top:65px; width:190px; }
.float-card.two { left:2px; bottom:26px; width:205px; }
.float-card strong { display:block;font-size:13px;} .float-card small{color:#7c8191;font-size:11px;}
.progress { height:7px;border-radius:99px;background:#ececf2;margin-top:10px;overflow:hidden;}
.progress i { display:block;height:100%;width:74%;background:linear-gradient(90deg,var(--violet),var(--cyan));border-radius:99px;}

.logo-strip {
  background: var(--paper); border-bottom: 1px solid var(--line);
}
.logo-strip-grid {
  display:grid; grid-template-columns: repeat(4,1fr); align-items:stretch;
}
.logo-value { padding:26px 30px; text-align:center; border-right:1px solid var(--line); }
.logo-value:last-child { border-right:0; }
.logo-value strong { display:block; font-size:15px; }
.logo-value span { display:block; color:var(--muted); font-size:12px; margin-top:4px; }

.cards { display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.cards.four { grid-template-columns: repeat(4,1fr); }
.card {
  position:relative; padding:30px; background:var(--paper); border:1px solid var(--line);
  border-radius:var(--radius-lg); box-shadow:var(--shadow-soft); overflow:hidden;
}
.card::after {
  content:""; position:absolute; width:100px;height:100px;border-radius:50%;
  background:var(--card-accent, rgba(118,87,232,.14)); right:-30px; top:-30px;
}
.card-icon {
  width:52px;height:52px;border-radius:16px;display:grid;place-items:center;
  background:#eee9ff;color:var(--violet-dark);font-weight:900;margin-bottom:25px;
}
.card p { color:var(--muted); margin-bottom:0; }
.card-link { display:inline-flex;gap:8px;align-items:center;margin-top:22px;color:var(--violet-dark);font-weight:800;font-size:14px; }
.card-dark { background:#1a1d34;color:white;border-color:rgba(255,255,255,.1); }
.card-dark p { color:rgba(255,255,255,.62); }

.split { display:grid; grid-template-columns: 1fr 1fr; gap:72px; align-items:center; }
.visual-panel {
  min-height:520px; border-radius:var(--radius-xl); position:relative; overflow:hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(118,87,232,.4), transparent 35%),
    linear-gradient(145deg,#171a31,#0d1020);
  box-shadow:var(--shadow);
}
.visual-panel.light {
  background:
    radial-gradient(circle at 90% 10%, rgba(118,87,232,.23), transparent 35%),
    linear-gradient(145deg,#fff,#f1eef9);
}
.visual-panel img { width:100%;height:100%;object-fit:cover; }
.feature-list { display:grid; gap:18px; margin-top:34px; }
.feature {
  display:grid;grid-template-columns:42px 1fr;gap:15px;align-items:start;
}
.feature-mark { width:42px;height:42px;border-radius:13px;background:#eee9ff;color:var(--violet-dark);display:grid;place-items:center;font-weight:900;}
.feature p { color:var(--muted); margin:4px 0 0; }

.steps { counter-reset: step; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.step {
  counter-increment:step; padding:25px; border-top:1px solid var(--line);
}
.step::before {
  content:"0" counter(step); display:block; color:var(--violet);font-size:13px;font-weight:900;letter-spacing:.12em;margin-bottom:30px;
}
.step p { color:var(--muted); }

.product-tour {
  background:#111426;color:white;border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow);
}
.tour-nav { display:flex;gap:8px;padding:20px;border-bottom:1px solid rgba(255,255,255,.12);overflow:auto; }
.tour-tab {
  white-space:nowrap;border:1px solid rgba(255,255,255,.15);color:rgba(255,255,255,.65);
  background:transparent;border-radius:999px;padding:10px 15px;font-size:13px;font-weight:800;
}
.tour-tab.active { background:white;color:#111426; }
.tour-pane { display:none; grid-template-columns:.8fr 1.2fr; min-height:470px; }
.tour-pane.active { display:grid; }
.tour-copy { padding:56px; }
.tour-copy p { color:rgba(255,255,255,.64); }
.tour-demo { padding:35px;background:linear-gradient(145deg,#262a49,#15182e);display:grid;place-items:center; }
.demo-window { width:100%;max-width:590px;background:#fff;color:#111426;border-radius:22px;padding:18px;box-shadow:0 28px 70px rgba(0,0,0,.3); }
.demo-head { display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid rgba(17,20,38,.08);padding-bottom:13px;margin-bottom:15px;}
.demo-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:12px; }
.demo-block { border:1px solid rgba(17,20,38,.08);border-radius:15px;padding:15px;background:#fafafd; }
.demo-block.wide { grid-column:1/-1; }
.demo-block small{color:#838797;} .demo-block strong{display:block;margin-top:5px;}
.barset { display:flex;align-items:end;gap:8px;height:90px;margin-top:13px; }
.barset i{flex:1;background:linear-gradient(var(--cyan),var(--violet));border-radius:6px 6px 2px 2px;}

.quote {
  font-family:Georgia,"Times New Roman",serif;font-size:clamp(27px,3.4vw,46px);line-height:1.28;
  max-width:950px;margin:0 auto;text-align:center;
}
.quote small { display:block;font-family:Inter,Arial,sans-serif;font-size:14px;color:var(--muted);margin-top:24px; }

.industry-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.industry-card {
  min-height:260px;padding:28px;border-radius:var(--radius-lg);color:white;position:relative;overflow:hidden;
  background:linear-gradient(145deg,#232744,#12152a);
}
.industry-card::before {
  content:"";position:absolute;inset:auto -30px -50px auto;width:190px;height:190px;border-radius:50%;
  background:var(--industry-accent,rgba(118,87,232,.45));filter:blur(2px);
}
.industry-card > * { position:relative;z-index:2; }
.industry-card p { color:rgba(255,255,255,.62); }

.cta {
  background:
    radial-gradient(circle at 15% 10%, rgba(66,199,217,.20), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(118,87,232,.38), transparent 35%),
    #111426;
  color:white;border-radius:var(--radius-xl);padding:70px;display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center;
}
.cta p { color:rgba(255,255,255,.65);max-width:650px; }

.page-hero {
  background:
    radial-gradient(circle at 85% 30%, rgba(118,87,232,.35), transparent 32%),
    #111426;
  color:white;padding:90px 0 82px;position:relative;overflow:hidden;
}
.page-hero::after {
  content:"";position:absolute;inset:0;opacity:.16;
  background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
  background-size:48px 48px;mask-image:linear-gradient(90deg,transparent,#000);
}
.page-hero .shell { position:relative;z-index:2;display:grid;grid-template-columns:1.1fr .9fr;align-items:center;gap:60px; }
.page-hero .lead { color:rgba(255,255,255,.68); }
.breadcrumb { font-size:13px;color:rgba(255,255,255,.56);margin-bottom:28px; }
.breadcrumb a { color:#fff; }
.page-art {
  min-height:360px;border-radius:28px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);
  padding:30px;display:grid;place-items:center;box-shadow:0 28px 80px rgba(0,0,0,.2);
}
.page-art img { max-height:320px; }

.metrics { display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);border:1px solid var(--line);border-radius:24px;overflow:hidden; }
.metric { background:var(--paper);padding:28px; }
.metric strong { display:block;font-size:24px; }
.metric span { color:var(--muted);font-size:13px; }

.table-wrap { overflow:auto;border:1px solid var(--line);border-radius:20px;background:var(--paper); }
table { border-collapse:collapse;width:100%;min-width:720px; }
th,td { padding:18px;text-align:left;border-bottom:1px solid var(--line);vertical-align:top; }
th { font-size:12px;text-transform:uppercase;letter-spacing:.1em;color:var(--muted); }
td { font-size:14px; }

.contact-grid { display:grid;grid-template-columns:.85fr 1.15fr;gap:30px; }
.contact-card { padding:35px;border-radius:var(--radius-lg);background:var(--paper);border:1px solid var(--line); }
.contact-item { display:grid;grid-template-columns:48px 1fr;gap:16px;padding:18px 0;border-bottom:1px solid var(--line); }
.contact-item:last-child { border-bottom:0; }
.contact-item .card-icon { width:48px;height:48px;margin:0; }
.form-grid { display:grid;grid-template-columns:1fr 1fr;gap:15px; }
.field { display:grid;gap:8px; }
.field.full { grid-column:1/-1; }
label { font-size:13px;font-weight:800; }
input,textarea,select {
  width:100%;border:1px solid var(--line);background:var(--cream);color:var(--ink);border-radius:14px;padding:14px 15px;outline:none;
}
input:focus,textarea:focus,select:focus { border-color:var(--violet);box-shadow:0 0 0 4px rgba(118,87,232,.12); }
textarea { min-height:150px;resize:vertical; }

.footer { background:#0d1020;color:white;padding:70px 0 25px; }
.footer-grid { display:grid;grid-template-columns:1.3fr repeat(3,.7fr);gap:50px;padding-bottom:50px; }
.footer .brand { margin-bottom:18px; }
.footer p,.footer a { color:rgba(255,255,255,.58); }
.footer a:hover { color:white; }
.footer h4 { font-size:13px;text-transform:uppercase;letter-spacing:.12em;color:#fff; }
.footer-links { display:grid;gap:10px;font-size:14px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12);padding-top:22px;display:flex;justify-content:space-between;gap:20px;color:rgba(255,255,255,.44);font-size:12px; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1;transform:none; }

.notice {
  border-left:4px solid var(--violet);background:#f1edff;padding:20px 22px;border-radius:0 16px 16px 0;
}
body.dark .notice { background:#242842; }

@media (max-width: 1100px) {
  .nav { display:none; }
  .header-inner { grid-template-columns:1fr auto; }
  .header-actions .btn { display:none; }
  .menu-btn { display:grid; }
  .hero-grid,.page-hero .shell,.split,.contact-grid { grid-template-columns:1fr; }
  .hero-copy { max-width:760px; }
  .console { min-height:580px;max-width:760px;width:100%;margin-inline:auto; }
  .cards.four { grid-template-columns:repeat(2,1fr); }
  .cards { grid-template-columns:repeat(2,1fr); }
  .steps { grid-template-columns:repeat(2,1fr); }
  .tour-pane { grid-template-columns:1fr; }
  .tour-demo { min-height:430px; }
  .industry-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --header-h:70px; }
  .shell { width:min(calc(100% - 28px),var(--max)); }
  .section { padding:78px 0; }
  .section-sm { padding:55px 0; }
  .header-inner { gap:12px; }
  .brand img { max-height:38px;max-width:190px; }
  h1 { font-size:clamp(43px,13vw,68px); }
  h2 { font-size:clamp(35px,10vw,52px); }
  .hero-grid { padding:58px 0;gap:20px; }
  .trust-row { grid-template-columns:1fr; }
  .trust-item,.trust-item + .trust-item { border-left:0;border-top:1px solid rgba(255,255,255,.11);padding:15px 0; }
  .trust-item:first-child { border-top:0; }
  .console { min-height:480px; }
  .console-main { inset:20px 0;transform:none; }
  .console-body { grid-template-columns:1fr; }
  .console-side { display:none; }
  .signal-grid { grid-template-columns:1fr 1fr; }
  .signal-card:last-child { grid-column:1/-1; }
  .float-card { display:none; }
  .logo-strip-grid,.metrics { grid-template-columns:1fr 1fr; }
  .logo-value:nth-child(2) { border-right:0; }
  .logo-value:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .cards,.cards.four,.industry-grid,.steps { grid-template-columns:1fr; }
  .split { gap:40px; }
  .visual-panel { min-height:380px; }
  .tour-copy { padding:34px 26px; }
  .tour-demo { padding:20px;min-height:380px; }
  .demo-grid { grid-template-columns:1fr; }
  .demo-block.wide { grid-column:auto; }
  .cta { padding:45px 28px;grid-template-columns:1fr; }
  .page-hero { padding:65px 0; }
  .page-art { min-height:300px; }
  .contact-grid,.form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
}
