:root {
  --ink: #202124;
  --muted: #62656d;
  --soft: #f6f7fb;
  --line: #e7e9ef;
  --black: #050505;
  --white: #ffffff;
  --violet: #a100ff;
  --blue: #1438ff;
  --cyan: #15d1ff;
  --navy: #07122f;
  --radius: 26px;
  --shadow: 0 30px 90px rgba(12, 20, 50, .14);
  --font: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 82% 24%, rgba(20, 56, 255, .1), transparent 34vw),
    radial-gradient(circle at 18% 64%, rgba(161, 0, 255, .08), transparent 38vw),
    linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
iframe {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  transition: transform .4s ease, box-shadow .4s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
}

.utility-nav {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: #555862;
}

.utility-inner {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.utility-inner div {
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-nav {
  background: rgba(255, 255, 255, .94);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0;
}

.brand-name {
  font-weight: 800;
  font-size: 30px;
  color: #111;
}

.brand-line {
  margin-top: 7px;
  font-size: 11px;
  font-weight: 600;
  color: #4a4d56;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
}

.site-menu > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
  color: #262932;
}

.site-menu > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--blue));
  transition: width .25s ease;
}

.site-menu > a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.nav-cta,
.btn-primary {
  color: white;
  background: linear-gradient(100deg, var(--violet), var(--blue));
  box-shadow: 0 16px 40px rgba(78, 25, 255, .26);
}

.btn-light {
  background: white;
  color: #141414;
}

.btn-ghost {
  color: #151922;
  background: #f0f2f7;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(78, 25, 255, .28);
}

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 20px;
  color: white;
  background: #050505;
  font-size: 14px;
  text-align: center;
}

.announcement span {
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 158px);
  padding: clamp(92px, 12vw, 180px) 0 150px;
  overflow: hidden;
}

.home-hero {
  padding-top: clamp(74px, 9vw, 130px);
}

.hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 80px;
}

.hero-copy {
  max-width: 600px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 90px);
  line-height: .96;
  letter-spacing: 0;
  font-weight: 800;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--violet), var(--blue), var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-text {
  max-width: 560px;
  color: #494d58;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.depth-stage {
  position: relative;
  perspective: 1100px;
  min-height: 540px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .75;
}

.orb-a {
  width: 180px;
  height: 180px;
  right: 6%;
  top: 2%;
  background: radial-gradient(circle, rgba(20, 209, 255, .32), transparent 68%);
}

.orb-b {
  width: 260px;
  height: 260px;
  left: 7%;
  bottom: -4%;
  background: radial-gradient(circle, rgba(161, 0, 255, .22), transparent 70%);
}

.product-shell {
  position: relative;
  isolation: isolate;
  transform: rotateX(5deg) rotateY(-11deg) translate3d(0, 0, 0);
  transform-style: preserve-3d;
  width: min(780px, 100%);
  margin-left: auto;
  border-radius: 28px;
  overflow: hidden;
  color: #172033;
  background: linear-gradient(145deg, #fcfdff, #f3f6ff 52%, #fff);
  box-shadow: 0 48px 120px rgba(15, 23, 42, .22);
  border: 1px solid rgba(255, 255, 255, .8);
  animation: floatPanel 7s ease-in-out infinite;
}

.product-shell::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 420px;
  height: 420px;
  z-index: -1;
  background: radial-gradient(circle, rgba(20, 56, 255, .18), transparent 60%);
}

.product-topbar {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 22px;
  border-bottom: 1px solid #e7ebf6;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px);
}

.product-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7dbea;
}

.product-topbar span:first-child {
  background: #ff6978;
}

.product-topbar span:nth-child(2) {
  background: #ffcb42;
}

.product-topbar span:nth-child(3) {
  background: #49d174;
}

.product-topbar strong {
  margin-left: 12px;
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 440px;
}

.product-grid aside {
  padding: 26px 20px;
  border-right: 1px solid #e7ebf6;
  background: #fbfcff;
}

.product-grid aside b {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
}

.product-grid aside span {
  display: block;
  margin-bottom: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  color: #555c6e;
  font-size: 13px;
}

.product-grid aside .active {
  color: #fff;
  background: linear-gradient(100deg, var(--violet), var(--blue));
}

.product-grid section {
  padding: 26px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric-row div,
.signal-list span {
  border: 1px solid #e8ecf6;
  background: rgba(255, 255, 255, .72);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(18, 33, 68, .06);
}

.metric-row div {
  padding: 18px;
}

.metric-row small {
  display: block;
  color: #70778a;
  font-size: 12px;
}

.metric-row strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.chart-bars {
  height: 160px;
  margin: 28px 0;
  display: flex;
  align-items: end;
  gap: 13px;
  padding: 24px;
  border: 1px solid #e8ecf6;
  border-radius: 22px;
  background:
    linear-gradient(#eef2fb 1px, transparent 1px) 0 0 / 100% 38px,
    linear-gradient(180deg, #fff, #f7f9ff);
}

.chart-bars i {
  flex: 1;
  min-width: 16px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue), var(--violet));
  animation: barRise 3s ease-in-out infinite alternate;
}

.chart-bars i:nth-child(1) { height: 46%; }
.chart-bars i:nth-child(2) { height: 78%; animation-delay: .12s; }
.chart-bars i:nth-child(3) { height: 55%; animation-delay: .2s; }
.chart-bars i:nth-child(4) { height: 92%; animation-delay: .32s; }
.chart-bars i:nth-child(5) { height: 66%; animation-delay: .42s; }
.chart-bars i:nth-child(6) { height: 86%; animation-delay: .55s; }
.chart-bars i:nth-child(7) { height: 72%; animation-delay: .68s; }

.signal-list {
  display: grid;
  gap: 12px;
}

.signal-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #4f5667;
  font-size: 13px;
}

.signal-list b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #24c87a;
  box-shadow: 0 0 0 6px rgba(36, 200, 122, .12);
}

.play-chip {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(100deg, var(--violet), var(--blue));
  box-shadow: 0 20px 60px rgba(20, 56, 255, .35);
  font-size: 30px;
  transform: translateZ(80px);
}

@keyframes floatPanel {
  0%, 100% { transform: rotateX(5deg) rotateY(-11deg) translateY(0); }
  50% { transform: rotateX(6deg) rotateY(-8deg) translateY(-18px); }
}

@keyframes barRise {
  from { transform: scaleY(.82); opacity: .82; }
  to { transform: scaleY(1); opacity: 1; }
}

.section {
  padding: clamp(90px, 11vw, 170px) 0;
  position: relative;
}

.section.compact {
  padding: 44px 0 92px;
}

.soft {
  background: #f5f7fc;
}

.black-section {
  color: white;
  background: #050505;
  overflow: hidden;
}

.black-section .eyebrow {
  color: #9bb2ff;
}

.black-section p {
  color: rgba(255, 255, 255, .75);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.6vw, 70px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.16;
}

p {
  color: var(--muted);
  font-size: 17px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.case-logo {
  min-height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
  color: var(--brand);
  font-weight: 800;
  box-shadow: 0 16px 45px rgba(20, 30, 70, .06);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .75fr);
  gap: 70px;
  align-items: start;
}

.story-stack {
  display: grid;
  gap: 18px;
}

.story-card,
.panel,
.contact-card,
.lead-form,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}

.story-card {
  padding: 30px;
}

.story-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 800;
}

.service-grid,
.case-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card,
.case-card,
.solution-card {
  position: relative;
  min-height: 420px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-card:hover,
.case-card:hover,
.solution-card:hover,
.blog-row:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(12, 20, 50, .14);
  border-color: rgba(20, 56, 255, .28);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 26px;
}

.service-card span,
.case-card span,
.solution-card span,
.blog-row span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.service-card p,
.case-card p,
.solution-card p {
  margin-bottom: 0;
}

.video-feature {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.youtube-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 44px 110px rgba(20, 56, 255, .18);
  background:
    radial-gradient(circle at 24% 26%, rgba(21, 209, 255, .28), transparent 28%),
    radial-gradient(circle at 82% 68%, rgba(161, 0, 255, .28), transparent 32%),
    linear-gradient(135deg, #081127, #081433 48%, #110825);
}

.youtube-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.youtube-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 34px;
  text-align: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, .18), rgba(5, 5, 5, .54)),
    linear-gradient(#233164 1px, transparent 1px) 0 0 / 100% 42px;
  transition: opacity .25s ease, transform .25s ease;
}

.youtube-overlay:hover {
  transform: scale(1.01);
}

.youtube-overlay span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(100deg, var(--violet), var(--blue));
  box-shadow: 0 20px 60px rgba(20, 56, 255, .42);
  font-size: 32px;
}

.youtube-overlay strong {
  display: block;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.05;
  max-width: 560px;
}

.youtube-overlay small {
  display: block;
  max-width: 520px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
}

.section-action {
  margin-top: 42px;
  text-align: center;
}

.cta-section {
  padding-top: 80px;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: clamp(34px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(248, 250, 255, .9)),
    radial-gradient(circle at 84% 30%, rgba(161, 0, 255, .18), transparent 26%);
}

.cta-panel > div {
  max-width: 720px;
}

.page-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  padding: 96px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(20, 56, 255, .12), transparent 34vw),
    radial-gradient(circle at 38% 14%, rgba(161, 0, 255, .1), transparent 26vw),
    #fff;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -120px;
  width: min(760px, 70vw);
  height: 360px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(20, 56, 255, .14), rgba(161, 0, 255, .08)),
    linear-gradient(#eef2fb 1px, transparent 1px) 0 0 / 100% 42px;
  transform: rotate(-5deg);
}

.page-hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: 1.02;
}

.page-hero p:not(.eyebrow) {
  max-width: 750px;
  font-size: 21px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.detail-image,
.article-main > img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 30px;
  margin-bottom: 54px;
  box-shadow: var(--shadow);
}

.detail-main h2,
.article-main h2 {
  margin-top: 46px;
  font-size: clamp(28px, 3vw, 46px);
}

.detail-main p,
.article-main p {
  font-size: 19px;
}

.detail-aside {
  position: sticky;
  top: 172px;
  display: grid;
  gap: 18px;
}

.panel {
  padding: 28px;
}

.panel ul,
.large-list,
.solution-card ul {
  padding-left: 20px;
  margin: 18px 0 0;
  color: var(--muted);
}

.panel li,
.large-list li,
.solution-card li {
  margin-bottom: 12px;
}

.solution-card {
  min-height: 360px;
}

.case-card {
  min-height: 430px;
  color: white;
  background:
    linear-gradient(155deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .46)),
    linear-gradient(135deg, var(--brand), #111);
}

.case-card p,
.case-card span {
  color: rgba(255, 255, 255, .78);
}

.case-card strong {
  position: absolute;
  left: 28px;
  bottom: 28px;
}

.brand-wordmark,
.case-brand-banner {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.case-brand-banner {
  display: grid;
  place-items: center;
  min-height: 240px;
  margin-bottom: 48px;
  border-radius: 32px;
  color: white;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, .3), transparent 22%),
    linear-gradient(135deg, var(--brand), #111);
  box-shadow: var(--shadow);
}

.blog-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 46px;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 172px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.blog-sidebar h2 {
  font-size: 24px;
}

.blog-sidebar a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.blog-list {
  display: grid;
  gap: 22px;
}

.blog-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.blog-row img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 18px;
}

.blog-row h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.4vw, 38px);
}

.blog-row strong {
  color: var(--blue);
}

.article-shell {
  width: min(920px, calc(100% - 48px));
}

.article-main {
  margin: 0 auto;
}

.article-main p {
  color: #444954;
}

.article-cta {
  margin-top: 60px;
  padding: 40px;
  border-radius: 28px;
  background: #f5f7fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.contact-card {
  padding: 38px;
  overflow: hidden;
}

.contact-card video {
  width: 100%;
  margin-top: 30px;
  border-radius: 22px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 34px;
}

.lead-form label {
  display: grid;
  gap: 9px;
  color: #292d38;
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #dce1ec;
  border-radius: 14px;
  color: #151922;
  background: #fff;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form textarea {
  min-height: 142px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 56, 255, .12);
}

.lead-form .full {
  grid-column: 1 / -1;
}

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.site-footer {
  color: white;
  background: #050505;
  padding: 76px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 54px;
}

.footer-brand img {
  width: 300px;
  max-width: 100%;
  margin-bottom: 22px;
}

.site-footer h3 {
  font-size: 18px;
  margin-bottom: 18px;
}

.site-footer a {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, .76);
}

.site-footer p {
  color: rgba(255, 255, 255, .68);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .7);
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .utility-nav {
    display: none;
  }

  .hero-grid,
  .video-feature,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    max-width: 760px;
  }

  .service-grid,
  .case-grid,
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-grid,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .detail-aside,
  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 880px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% - 38px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    padding: 13px 10px !important;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .announcement {
    display: block;
    font-size: 12px;
    line-height: 1.4;
  }

  .announcement span {
    display: inline;
  }

  .hero {
    padding: 74px 0 92px;
  }

  .home-hero {
    padding-top: 92px;
  }

  .hero-grid {
    gap: 48px;
  }

  .product-shell {
    transform: none;
    animation: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-grid aside {
    display: none;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .logo-row,
  .service-grid,
  .case-grid,
  .solution-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 460px;
    padding: 76px 0 70px;
  }

  .cta-panel {
    display: grid;
  }

  .blog-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .footer-bottom,
  .footer-bottom div {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 25px;
  }

  .brand-line {
    font-size: 9px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions {
    display: grid;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .play-chip {
    width: 64px;
    height: 64px;
  }
}
