:root {
  color-scheme: dark;
  --kage-bg: #08020f;
  --kage-panel: rgba(18, 8, 31, 0.84);
  --kage-panel-strong: rgba(21, 8, 36, 0.96);
  --kage-line: rgba(210, 84, 255, 0.28);
  --kage-line-bright: rgba(255, 55, 190, 0.62);
  --kage-text: #fff7ff;
  --kage-muted: #c8afce;
  --kage-pink: #ff35bc;
  --kage-violet: #7b3cff;
  --kage-cyan: #32cef4;
  --kage-radius: 28px;
  --kage-shadow: 0 30px 90px rgba(139, 30, 255, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 8%, rgba(122, 39, 255, 0.28), transparent 35rem),
    radial-gradient(circle at 18% 18%, rgba(255, 41, 188, 0.18), transparent 30rem),
    #07020d;
  color: var(--kage-text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    url("assets/kage-neon-bg.png");
  background-size: 80px 80px, 80px 80px, cover;
  background-position: center top;
  opacity: 0.52;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(8, 2, 15, 0.04), rgba(8, 2, 15, 0.92) 76%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #16041f;
  font-weight: 900;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 20;
  background: rgba(9, 2, 15, 0.78);
  border-bottom: 1px solid rgba(255, 75, 205, 0.16);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1370px, calc(100% - 68px));
  min-width: 0;
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 222px;
  min-width: 0;
}

.brand img {
  width: 222px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(255, 49, 206, 0.34));
}

.agency-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 8px 16px 8px 10px;
  border: 1px solid rgba(247, 181, 86, 0.48);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(32, 11, 42, 0.92), rgba(82, 23, 52, 0.58));
  box-shadow: 0 0 34px rgba(255, 45, 191, 0.16);
}

.agency-chip img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.agency-chip b,
.agency-chip small {
  display: block;
  line-height: 1;
}

.agency-chip b {
  font-size: 15px;
  letter-spacing: 0.04em;
}

.agency-chip small {
  margin-top: 4px;
  color: #ffd879;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mobile-chip {
  display: none;
}

.mobile-visual {
  display: none;
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
  font-weight: 850;
  font-size: 15px;
}

.nav-links a {
  color: rgba(255, 248, 255, 0.9);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--kage-pink);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: var(--kage-text);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.language-switch span {
  color: var(--kage-pink);
}

.language-switch i {
  display: block;
  width: 2px;
  height: 18px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-language-switch {
  display: none;
}

.menu-toggle {
  display: none;
}

main {
  width: min(1370px, calc(100% - 68px));
  min-width: 0;
  margin: 0 auto;
}

.hero {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(520px, 1.02fr);
  gap: 56px;
  align-items: center;
  min-height: 640px;
  padding: 62px 0 38px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 48, 192, 0.55);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(112, 25, 96, 0.68), rgba(68, 14, 91, 0.42));
  color: #ffe8f8;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-inline-end: 10px;
  border-radius: 50%;
  background: #f8c8f0;
  box-shadow: 0 0 14px rgba(255, 57, 197, 0.9);
}

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

.hero h1 {
  max-width: 640px;
  margin-block: 26px 20px;
  font-size: clamp(54px, 5.4vw, 88px);
  line-height: 0.98;
  font-weight: 1000;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1::first-line {
  color: var(--kage-text);
}

.hero h1 {
  background: linear-gradient(180deg, #ffffff 0%, #fff 43%, #ff33bd 44%, #ff38c7 73%, #ffffff 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 640px;
  margin-block-end: 34px;
  color: #dcc4e5;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.55;
}

.hero-actions,
.bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  min-width: 0;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 216px;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 12px;
  font-weight: 1000;
  font-size: 16px;
  line-height: 1.1;
  text-align: center;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 46%);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
}

.btn.primary {
  border: 1px solid rgba(255, 109, 219, 0.8);
  background: linear-gradient(135deg, #ff2fb9, #8f43ff);
  color: #fff;
  box-shadow: 0 18px 45px rgba(198, 49, 237, 0.32);
}

.btn.secondary {
  border: 1px solid rgba(51, 196, 246, 0.56);
  background: rgba(8, 17, 37, 0.76);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hero-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-block-start: 24px;
}

.hero-mini article {
  min-width: 0;
  min-height: 86px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.hero-mini strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 1000;
}

.hero-mini p {
  margin: 0;
  color: #bba3c9;
  font-size: 14px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.creator-card {
  position: absolute;
  inset-block-start: 8px;
  inset-inline-start: 74px;
  width: min(420px, 72%);
  height: 540px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 61, 255, 0.25);
  border-radius: 34px;
  background: #12091f;
  box-shadow: var(--kage-shadow);
}

.creator-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 48%, rgba(8, 2, 15, 0.82)),
    radial-gradient(circle at 86% 12%, rgba(255, 45, 206, 0.36), transparent 9rem);
}

.creator-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}

.chat-card,
.phone-card,
.support-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 7, 29, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.chat-card {
  inset-block-start: 26px;
  inset-inline-end: 0;
  width: 290px;
  padding: 22px 20px 12px;
  border-radius: 20px;
}

.chat-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.chat-card div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-card div:last-child {
  border-bottom: 0;
}

.chat-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff42c9, #4dd2fb);
  font-weight: 950;
}

.chat-card p {
  margin: 0;
  min-width: 0;
}

.chat-card b,
.chat-card small {
  display: block;
}

.chat-card small {
  color: #b9a7c7;
  font-weight: 700;
}

.phone-card {
  inset-inline-end: 30px;
  inset-block-end: 2px;
  width: 235px;
  height: 342px;
  overflow: hidden;
  border-radius: 35px;
  padding: 14px;
  background: rgba(8, 4, 17, 0.96);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #0d0616;
}

.phone-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 40%;
  opacity: 0.7;
}

.phone-screen::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 4, 17, 0.02), rgba(8, 4, 17, 0.92) 65%);
}

.message-stack {
  position: absolute;
  inset-inline: 14px;
  inset-block-end: 70px;
  z-index: 2;
  display: grid;
  gap: 9px;
}

.message-stack p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.44);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.phone-actions {
  position: absolute;
  inset-inline: 20px;
  inset-block-end: 18px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
}

.phone-actions span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22e2f3, #ff34bf 68%);
  box-shadow: 0 0 24px rgba(255, 56, 203, 0.28);
}

.support-card {
  inset-inline-start: 24px;
  inset-block-end: 35px;
  width: 250px;
  min-height: 144px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 17px;
  border-color: rgba(247, 181, 86, 0.42);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(28, 8, 34, 0.96), rgba(67, 14, 45, 0.9));
}

.support-card img {
  width: 48px;
  height: 48px;
  grid-row: span 2;
}

.support-card b,
.support-card small {
  display: block;
}

.support-card b {
  font-size: 19px;
  font-weight: 1000;
}

.support-card small {
  color: #ffd876;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.support-card p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: #d8c5df;
  font-size: 13px;
  line-height: 1.45;
}

.path-grid,
.info-grid,
.faq {
  display: grid;
  gap: 18px;
  margin-block: 20px;
}

.path-grid,
.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.path-card,
.community,
.info-grid article,
.faq-intro,
.faq-list details,
.bottom-cta {
  min-width: 0;
  border: 1px solid var(--kage-line);
  border-radius: 20px;
  background: rgba(13, 5, 24, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.path-card,
.info-grid article,
.faq-intro {
  padding: 28px;
}

.path-card h2,
.community h2,
.info-grid h2,
.faq h2,
.bottom-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.06;
  font-weight: 1000;
}

.path-card p,
.community .section-head p,
.info-grid p,
.faq p,
.bottom-cta p {
  color: #cdb8d7;
  font-weight: 650;
  line-height: 1.55;
}

.path-card ul,
.info-grid ul {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.path-card li,
.info-grid li {
  position: relative;
  min-width: 0;
  padding-inline-start: 34px;
  color: #d8c8df;
  font-weight: 750;
  line-height: 1.42;
}

.path-card li::before,
.info-grid li::before {
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.12em;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, #eafcff 0 22%, transparent 24%),
    linear-gradient(135deg, #32d4f3, #843dff);
}

.community {
  padding: 28px;
  margin-block: 20px;
}

.community .section-head {
  max-width: 620px;
  margin-bottom: 24px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.community-grid article {
  min-width: 0;
  min-height: 194px;
  padding: 22px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 55, 190, 0.34), transparent 7rem),
    rgba(14, 7, 29, 0.9);
}

.community-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--kage-pink);
  font-size: 11px;
  font-weight: 1000;
}

.community-grid h3 {
  margin: 30px 0 4px;
  font-size: 22px;
  line-height: 1.08;
}

.community-grid p {
  min-height: 40px;
  margin: 0 0 18px;
  color: #bfaacb;
  font-weight: 720;
}

.audio-bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 52px;
}

.audio-bars i {
  width: 8px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(180deg, #4bdff7, #ff32c1);
}

.audio-bars i:nth-child(1) { height: 24px; }
.audio-bars i:nth-child(2) { height: 44px; }
.audio-bars i:nth-child(3) { height: 34px; }
.audio-bars i:nth-child(4) { height: 50px; }
.audio-bars i:nth-child(5) { height: 26px; }

.info-grid {
  margin-block-start: 20px;
}

.info-grid article {
  min-height: 250px;
}

.faq {
  grid-template-columns: 0.7fr 1fr;
  margin-block-start: 20px;
}

.faq-intro {
  min-height: 260px;
}

.faq-list {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.faq-list details {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
}

.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-weight: 950;
}

.faq-list p {
  margin: 10px 0 0;
}

.bottom-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  margin: 20px 0 44px;
  padding: 34px 28px;
  background: linear-gradient(120deg, rgba(255, 50, 184, 0.72), rgba(83, 45, 216, 0.78));
}

.bottom-cta h2 {
  margin: 0 0 8px;
}

.bottom-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.bottom-actions {
  justify-content: flex-end;
}

.bottom-actions .btn {
  min-width: 216px;
}

.site-footer {
  width: min(1370px, calc(100% - 68px));
  margin: 0 auto;
  padding: 26px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #bfaec8;
  font-weight: 750;
}

.site-footer strong {
  color: #fff;
}

@media (max-width: 1180px) {
  .nav-shell,
  main,
  .site-footer {
    width: min(100% - 38px, 980px);
  }

  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .nav-links {
    position: absolute;
    inset-block-start: calc(100% + 8px);
    inset-inline: 19px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(13, 5, 24, 0.96);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.42);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .language-switch {
    justify-content: center;
    width: 100%;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    place-items: center;
    gap: 4px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
  }

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

  .hero-visual {
    order: -1;
    min-height: 520px;
  }

  .creator-card {
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: min(430px, 72vw);
  }

  .chat-card {
    inset-inline-end: 0;
  }

  .support-card {
    inset-inline-start: 7%;
  }

  .phone-card {
    inset-inline-end: 7%;
  }

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

@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(134, 45, 255, 0.26), transparent 23rem),
      #090210;
  }

  .site-header {
    position: relative;
  }

  .nav-shell,
  main,
  .site-footer {
    width: calc(100% - 32px);
  }

  .nav-shell {
    min-height: 76px;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .brand {
    width: 150px;
  }

  .brand img {
    width: 150px;
  }

  .nav-chip {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 16px;
  }

  .hero-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(13, 4, 26, 0.9);
    box-shadow: var(--kage-shadow);
  }

  .mobile-chip {
    order: 0;
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 7px 12px 7px 8px;
  }

  .mobile-chip img {
    width: 36px;
    height: 36px;
  }

  .hero-language-switch {
    order: 1;
    display: inline-flex;
    align-self: flex-start;
    min-height: 38px;
    margin-bottom: 18px;
    padding: 0 16px;
    border-color: rgba(255, 58, 196, 0.54);
    background: rgba(104, 19, 91, 0.55);
    font-size: 12px;
  }

  .eyebrow {
    display: none;
  }

  .hero > .hero-visual {
    display: none;
  }

  .mobile-visual {
    position: relative;
    order: 2;
    display: block;
    width: 100%;
    min-height: 232px;
    margin-bottom: 18px;
  }

  .mobile-visual > img {
    width: min(232px, 70%);
    height: 232px;
    object-fit: cover;
    object-position: 50% 34%;
    border: 1px solid rgba(184, 61, 255, 0.25);
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(139, 30, 255, 0.18);
  }

  .mobile-visual::after {
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    width: min(232px, 70%);
    content: "";
    border-radius: 22px;
    background: linear-gradient(180deg, transparent 48%, rgba(8, 2, 15, 0.78));
    pointer-events: none;
  }

  .mobile-chat {
    position: absolute;
    inset-block-start: 12px;
    inset-inline-end: 0;
    width: min(166px, 47%);
    padding: 14px 12px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(14, 7, 29, 0.95);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  }

  .mobile-chat strong {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .mobile-chat div {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-chat div:last-child {
    border-bottom: 0;
  }

  .mobile-chat span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff42c9, #4dd2fb);
    font-weight: 950;
  }

  .mobile-chat b {
    font-size: 12px;
  }

  .phone-card,
  .support-card {
    display: none;
  }

  .hero h1 {
    order: 3;
    margin: 0 0 12px;
    max-width: 100%;
    font-size: clamp(38px, 11.8vw, 46px);
    line-height: 0.98;
  }

  .hero-lede {
    order: 4;
    margin: 0 0 18px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-actions {
    order: 5;
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 53px;
    padding-inline: 16px;
    border-radius: 12px;
    font-size: 15px;
  }

  .hero-mini {
    display: none;
  }

  .path-grid,
  .info-grid,
  .faq,
  .community-grid,
  .bottom-cta {
    grid-template-columns: 1fr;
  }

  .path-grid,
  .info-grid,
  .community,
  .faq {
    margin-block: 16px;
  }

  .path-card,
  .info-grid article,
  .faq-intro,
  .community,
  .bottom-cta {
    border-radius: 20px;
    padding: 20px 18px;
  }

  .path-card h2,
  .community h2,
  .info-grid h2,
  .faq h2,
  .bottom-cta h2 {
    font-size: 27px;
  }

  .community-grid article {
    min-height: 164px;
  }

  .bottom-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .bottom-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 34px;
  }
}

@media (max-width: 400px) {
  .nav-shell,
  main,
  .site-footer {
    width: calc(100% - 30px);
  }

  .brand,
  .brand img {
    width: 142px;
  }

  .hero-copy {
    padding: 17px;
  }

  .hero-visual {
    min-height: 228px;
  }

  .creator-card {
    width: 228px;
    height: 228px;
  }

  .chat-card {
    width: 160px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lede {
    font-size: 15.5px;
  }
}
