:root {
  --ink: #06295f;
  --blue: #0952c6;
  --soft-blue: #81bff3;
  --muted: #686868;
  --line: #c9e0fa;
  --page-gutter: clamp(22px, 3.4vw, 58px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

button {
  font: inherit;
}

.site-header {
  width: min(100%, 1440px);
  height: 64px;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
}

.wordmark {
  display: flex;
  align-items: center;
}

.wordmark img {
  display: block;
  width: 118px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.4vw, 60px);
  font-size: 15px;
  white-space: nowrap;
}

.desktop-nav a {
  transition: opacity 160ms ease;
}

.desktop-nav a:hover {
  opacity: 0.62;
}

.header-actions {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.app-link,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}

.app-link {
  min-height: 48px;
  padding: 0 21px 0 25px;
  gap: 17px;
  font-size: 15px;
}

.app-link span {
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.hero {
  width: min(100%, 1440px);
  min-height: 0;
  margin: 0 auto;
  padding: 0 var(--page-gutter) 36px;
  display: grid;
  grid-template-columns: minmax(410px, 0.82fr) minmax(570px, 1.18fr);
  gap: clamp(36px, 4vw, 70px);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  padding: 39px 0 66px;
}

.gamma-mark {
  display: block;
  width: 54px;
  height: auto;
  margin: 0 0 22px -2px;
}

.hero h1 {
  max-width: 570px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(54px, 4.6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.hero-copy p {
  max-width: 590px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.primary-button,
.video-button {
  min-height: 53px;
  padding: 0 28px;
  font-size: 17px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-button:hover,
.video-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  box-shadow: 0 10px 24px rgb(9 82 198 / 22%);
}

.video-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.play {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--ink);
}

.hero-visual {
  align-self: stretch;
  min-width: 0;
  height: 580px;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.solutions {
  position: relative;
  min-height: 1040px;
  padding: 90px var(--page-gutter) 220px;
  overflow: hidden;
  background: linear-gradient(180deg, #7dbcf1 0%, #9bcdf6 54%, #eef3ff 100%);
}

.solutions-columns {
  position: relative;
  z-index: 2;
  width: min(100%, 1324px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}

.solution-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.solution-card {
  padding: clamp(16px, 2.1vw, 30px);
  display: grid;
  grid-template-columns: minmax(145px, 39%) minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 1.8vw, 26px);
  overflow: hidden;
  border-radius: 17px;
  background: #fff;
}

.solution-preview {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.solution-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-copy {
  min-width: 0;
}

.solution-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.25vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.solution-copy p {
  margin: clamp(8px, 1vw, 14px) 0 0;
  color: var(--muted);
  font-size: clamp(12px, 1.22vw, 18px);
  line-height: 1.42;
}

.clouds {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: max(100%, 1450px);
  height: 300px;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
}

.landing-eyebrow {
  display: block;
  margin: 0 0 16px;
  color: #2e65d4;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.landing-trust {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #697789;
  font-size: 12px;
}

.landing-trust span::before {
  content: "✓";
  margin-right: 5px;
  color: #2362d4;
  font-weight: 800;
}

.primary-button,
.video-button,
.feature-button,
.cosmic-button,
.footer-start {
  white-space: nowrap;
}

.hero-niche {
  align-self: center;
  height: auto;
  aspect-ratio: 1.55 / 1;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(145deg, #dff1ff, #eef5ff);
}

.hero-niche img {
  object-fit: contain;
}

.feature-lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: #666;
  font-size: 18px;
  line-height: 1.5;
}

.benefits-community {
  padding-bottom: 120px;
}

.landing-benefits {
  width: min(100%, 1260px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.landing-benefits article {
  min-height: 220px;
  padding: 28px;
  border-radius: 15px;
  background: #eef3ff;
}

.landing-benefits article > span {
  color: #4b78da;
  font-size: 13px;
  font-weight: 900;
}

.landing-benefits h3 {
  margin: 28px 0 0;
  font-size: 24px;
  letter-spacing: -.04em;
}

.landing-benefits p {
  margin: 11px 0 0;
  color: #626d7d;
  font-size: 14px;
  line-height: 1.55;
}

.quality-block {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 105px var(--page-gutter) 118px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 105px);
}

.quality-image {
  position: relative;
  height: 590px;
  overflow: hidden;
  border-radius: 20px;
  background: #eaf4ff;
  box-shadow: 0 18px 55px rgb(21 68 125 / 12%);
}

.quality-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.quality-image > span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 15px 18px;
  display: flex;
  flex-direction: column;
  border-radius: 13px;
  color: #667488;
  background: #fff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 14%);
  font-size: 11px;
}

.quality-image strong {
  color: #2863d3;
  font-size: 32px;
}

.quality-copy h2 {
  margin: 15px 0 25px;
  font-size: clamp(39px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1.03;
}

.quality-list {
  display: grid;
  gap: 8px;
}

.quality-list > div {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 11px;
  color: #4f5c6e;
  background: #f1f6ff;
  font-size: 14px;
}

.quality-list b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  border-radius: 50%;
  color: #fff;
  background: #3772dc;
  font-size: 11px;
}

.site-footer.compact-footer {
  min-height: 0;
  padding-top: 28px;
  padding-bottom: 42px;
}

.site-footer.compact-footer .footer-wordmark {
  margin-bottom: 34px;
  font-size: clamp(118px, 18vw, 245px);
  line-height: .7;
}

.footer-grid.landing-footer-grid {
  grid-template-columns: 1fr 1.35fr 1fr;
}

.compact-footer .footer-start {
  width: fit-content;
  min-width: 180px;
  padding: 12px 16px;
  background: #fff;
  color: #204b92;
  font-weight: 800;
}

.site-footer.compact-footer .copyright {
  margin-top: 26px;
}

.all-presentations {
  width: min(100%, 1320px);
  margin: 28px auto 0;
  border-top: 1px solid rgb(255 255 255 / 20%);
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.all-presentations > h3 {
  margin: 0;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 800;
}

.all-presentations nav {
  padding: 5px 0 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px 24px;
}

.all-presentations a {
  color: rgb(255 255 255 / 78%);
  font-size: 12px;
  line-height: 1.35;
}

.other-ai {
  width: min(100%, 1320px);
  margin: 34px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgb(255 255 255 / 20%);
}

.other-ai-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.other-ai-heading h3,
.other-ai-heading p { margin: 0; }

.other-ai-heading h3 {
  font-size: clamp(22px, 2.1vw, 30px);
  letter-spacing: -0.025em;
}

.other-ai-heading p {
  color: rgb(255 255 255 / 62%);
  font-size: 13px;
}

.other-ai-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.other-ai-grid a {
  position: relative;
  min-height: 88px;
  padding: 18px 42px 17px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 14px;
  color: #fff;
  background: rgb(10 29 76 / 18%);
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.other-ai-grid a:hover,
.other-ai-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgb(255 255 255 / 55%);
  background: rgb(255 255 255 / 10%);
}

.other-ai-name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.other-ai-category {
  margin-top: 6px;
  color: rgb(255 255 255 / 65%);
  font-size: 12px;
  line-height: 1.25;
}

.other-ai-arrow {
  position: absolute;
  top: 14px;
  right: 16px;
  color: #bcd8ff;
  font-size: 21px;
  line-height: 1;
}

.trust {
  margin-top: -1px;
  padding: 44px var(--page-gutter) 86px;
  text-align: center;
  background: linear-gradient(180deg, #dceaff 0%, #bce7fb 38%, #eaf8ff 74%, #fff 100%);
}

.trust-kicker {
  margin: 0;
  color: rgb(6 41 95 / 38%);
  font-size: 13px;
  font-weight: 700;
}

.brand-row {
  width: min(100%, 1120px);
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 25px 72px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 700;
}

.brand-row .brand-stanford {
  flex-basis: 100%;
}

.speed-title {
  max-width: 1120px;
  margin: 132px auto 0;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.speed-title span {
  color: #fff;
}

.features {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 32px var(--page-gutter) 106px;
}

.feature-row {
  min-height: 453px;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

.feature-row:last-child {
  margin-bottom: 0;
}

.reverse-row .feature-media {
  order: 2;
}

.feature-media {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 7px 24px rgb(4 42 95 / 11%);
  background: #eef5ff;
}

.feature-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.31 / 1;
  object-fit: cover;
}

.landing-niche .feature-media img,
.landing-niche .quality-image img {
  object-fit: contain;
  padding: 10px;
}

.feature-copy {
  color: var(--ink);
}

.feature-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: #375ae6;
  font-size: 12px;
  font-weight: 800;
}

.orange-feature .feature-tag { color: #f06c17; }
.pink-feature .feature-tag { color: #e83c93; }

.feature-copy h2 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(37px, 3.8vw, 57px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.feature-copy ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
  color: #555;
  font-size: 16px;
  line-height: 1.45;
}

.feature-copy li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
}

.feature-copy li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #3c66e8;
}

.orange-feature li::before { color: #f06c17; }
.pink-feature li::before { color: #e83c93; }

.feature-button,
.cosmic-button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #345de5;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.orange-feature .feature-button { background: #ff671c; }
.pink-feature .feature-button { background: #ee4797; }

.gamma-ribbon {
  padding: 37px 0 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #effcff, #aee7fc);
  color: rgb(255 255 255 / 52%);
  font-size: clamp(72px, 10vw, 148px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: .8;
  white-space: nowrap;
}

.community {
  padding: 72px var(--page-gutter) 45px;
  overflow: hidden;
  background: #fff;
}

.community h2 {
  margin: 0 auto 40px;
  text-align: center;
  font-size: clamp(41px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.testimonials {
  width: min(118%, 1620px);
  margin-left: 50%;
  display: grid;
  grid-template-columns: .8fr 1.5fr .8fr;
  gap: 24px;
  transform: translateX(-50%);
}

.testimonial {
  min-height: 216px;
  padding: 32px;
  border-radius: 13px;
  background: #eef3ff;
  color: #536071;
  font-size: 17px;
  line-height: 1.5;
}

.featured-card {
  color: var(--ink);
  box-shadow: 0 11px 28px rgb(44 83 147 / 9%);
}

.person {
  margin-top: 43px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.person small,
.person strong {
  display: block;
}

.person small {
  margin-top: 4px;
  color: #7b8391;
  font-size: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(145deg, #f0a071, #6e2b3b);
  object-fit: cover;
}

.avatar-two { background: linear-gradient(145deg, #d68d63, #39302f); }
.faded-card { opacity: .62; }

.slider-buttons {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.slider-buttons span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #d8e2f2;
  border-radius: 50%;
}

.faq {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 70px var(--page-gutter) 55px;
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.6fr);
  gap: clamp(50px, 8vw, 135px);
}

.faq-intro h2 {
  margin: 0;
  font-size: clamp(43px, 4.7vw, 67px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: .92;
  overflow-wrap: anywhere;
}

.faq-intro { min-width: 0; }

.faq-intro p {
  max-width: 330px;
  margin-top: 30px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.faq-intro a { text-decoration: underline; }

.faq-list details {
  border-bottom: 1px solid #d8e3f2;
}

.faq-list {
  min-width: 0;
  width: 100%;
}

.faq-list summary {
  position: relative;
  padding: 19px 46px 19px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 8px;
  color: #3470e9;
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  margin: -4px 44px 22px 0;
  color: #60656d;
  line-height: 1.55;
}

.cosmic {
  overflow: hidden;
  padding: 76px 0 0;
  text-align: center;
  color: #fff;
  background: radial-gradient(circle at 18% 18%, rgb(55 113 191 / 72%), transparent 1px), linear-gradient(180deg, #062d66, #073d81);
  background-size: 46px 46px, auto;
}

.cosmic h2 {
  margin: 0 auto 28px;
  padding: 0 var(--page-gutter);
  font-size: clamp(41px, 4.8vw, 66px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.cosmic-button {
  position: relative;
  z-index: 1;
  min-height: 47px;
  padding: 0 28px;
  background: #fff;
  color: var(--ink);
}

.cosmic img {
  display: block;
  width: 100%;
  margin-top: 28px;
}

.site-footer {
  position: relative;
  min-height: 873px;
  overflow: hidden;
  padding: 40px var(--page-gutter) 125px;
  color: #fff;
  background: linear-gradient(180deg, #243778, #639fda);
}

.footer-wordmark {
  margin: 0 -2vw 58px;
  color: rgb(255 255 255 / 16%);
  font-size: clamp(142px, 23vw, 330px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: .75;
  white-space: nowrap;
}

.footer-grid {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr repeat(4, 1fr);
  gap: 38px;
}

.footer-grid h3 {
  margin: 0 0 23px;
  font-size: 15px;
}

.footer-column a,
.store-badge {
  margin: 0 0 11px;
  display: block;
  color: rgb(255 255 255 / 78%);
  font-size: 12px;
  line-height: 1.3;
}

.store-badge {
  width: 126px;
  padding: 8px 10px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 6px;
  background: #0b1020;
  color: #fff;
}

.copyright {
  width: min(100%, 1320px);
  margin: 54px auto 0;
  text-align: right;
  color: rgb(255 255 255 / 75%);
  font-size: 12px;
}

.cookie-banner {
  position: absolute;
  left: var(--page-gutter);
  bottom: 24px;
  width: min(540px, calc(100% - 44px));
  padding: 17px;
  border-radius: 9px;
  color: #142c53;
  background: #fff;
  box-shadow: 0 8px 28px rgb(0 0 0 / 18%);
  font-size: 12px;
}

.cookie-banner p { margin: 6px 0 12px; }

.cookie-banner div {
  display: flex;
  gap: 8px;
}

.cookie-banner button {
  padding: 8px 12px;
  border: 1px solid #1d5bdb;
  border-radius: 999px;
  color: #1d5bdb;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}

.cookie-banner button:last-child {
  color: #fff;
  background: #1d5bdb;
}

@media (max-width: 1120px) {
  .site-header,
  .hero {
    grid-template-columns: auto 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    grid-template-columns: minmax(350px, 0.9fr) minmax(460px, 1.1fr);
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(48px, 5.6vw, 64px);
  }
}

@media (max-width: 820px) {
  .all-presentations nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .other-ai-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .site-header {
    height: 70px;
  }

  .app-link {
    display: none;
  }

  .header-actions::after {
    content: "Меню";
    font-size: 14px;
    font-weight: 700;
  }

  .hero {
    min-height: auto;
    padding-bottom: 28px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-copy {
    padding: 56px 0 0;
  }

  .gamma-mark {
    width: 46px;
  }

  .hero h1 {
    font-size: clamp(45px, 11vw, 66px);
  }

  .hero-copy p {
    max-width: 640px;
    margin-top: 28px;
    font-size: 17px;
  }

  .hero-visual {
    order: 2;
    height: min(87vw, 660px);
    border-radius: 16px;
  }

  .solutions {
    min-height: 0;
    padding-top: 64px;
    padding-bottom: 190px;
  }

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

  .solution-card {
    grid-template-columns: minmax(145px, 38%) minmax(0, 1fr);
  }

  .clouds {
    height: 230px;
  }

  .speed-title { margin-top: 92px; }

  .feature-row {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 92px;
  }

  .reverse-row .feature-media { order: initial; }

  .testimonials {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .faded-card { display: none; }

  .community h2 br { display: none; }

  .faq {
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
  }

  .faq-intro h2 br { display: none; }

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

  .landing-benefits { grid-template-columns: 1fr 1fr; }

  .quality-block {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .quality-image { height: 430px; }

  .landing-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .all-presentations nav { grid-template-columns: 1fr; }

  .other-ai-heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .other-ai-grid { grid-template-columns: 1fr; }

  .wordmark img {
    width: 105px;
  }

  .hero-copy {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero h1 br {
    display: none;
  }

  .hero-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .video-button {
    width: 100%;
  }

  .solution-card {
    padding: 16px;
    min-height: 190px;
    aspect-ratio: auto !important;
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
    gap: 12px;
  }

  .solution-copy h2 {
    font-size: clamp(20px, 6vw, 26px);
  }

  .solution-copy p {
    font-size: clamp(10px, 3.1vw, 13px);
    line-height: 1.35;
  }

  .trust { padding-bottom: 76px; }

  .brand-row { gap: 19px 30px; }

  .speed-title {
    margin-top: 76px;
    font-size: 43px;
  }

  .features { padding-top: 12px; }

  .feature-copy h2 { font-size: 36px; }

  .feature-copy ul { font-size: 14px; }

  .community { padding-top: 78px; }

  .community h2 { font-size: 39px; }

  .testimonial { padding: 24px; }

  .faq { padding-top: 76px; }

  .faq-list summary { font-size: 15px; }

  .site-footer { min-height: 1240px; }

  .compact-footer {
    min-height: 0;
    padding-bottom: 40px;
  }

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

  .landing-benefits { grid-template-columns: 1fr; }

  .quality-image { height: 350px; }

  .quality-image img { object-fit: contain; }

  .quality-copy h2 { font-size: 37px; }

  .feature-lead { font-size: 15px; }

  .footer-wordmark { font-size: 32vw; }

  .footer-wordmark {
    margin-left: 0;
    margin-right: 0;
    font-size: 30vw;
    letter-spacing: -0.09em;
  }

  .copyright { text-align: left; }

  .cookie-banner div { flex-wrap: wrap; }

}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
