:root {
  --orange: #fc600f;
  --gray: #727172;
  --black: #000000;
  --white: #ffffff;
  --bg: #e8e8e8;
  --line: rgba(0, 0, 0, 0.12);
  --shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  --header-offset: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #fc6612 #e8e8e8;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #e8e8e8;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #fc6612;
}

::-webkit-scrollbar-thumb:hover {
  background: #fc600f;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 0 34%, rgba(252, 96, 15, 0.08), transparent 22rem),
    radial-gradient(circle at 100% 63%, rgba(252, 96, 15, 0.08), transparent 20rem),
    var(--bg);
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  margin: 0;
  padding: 0.7rem 1.5rem;
  background: rgba(232, 232, 232, 0.46);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(232, 232, 232, 0.34);
}

.brand img {
  width: 170px;
}

.menu-toggle {
  display: none;
}

.nav {
  display: flex;
  justify-self: end;
  justify-content: flex-end;
  width: max-content;
  max-width: 100%;
  gap: clamp(1rem, 1.55vw, 2rem);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links {
  display: contents;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav a,
.nav-submenu-toggle {
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav-submenu-toggle:hover,
.nav-submenu-toggle:focus-visible {
  color: #fc6612;
}

.nav-submenu-toggle {
  display: none;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  font: inherit;
  cursor: pointer;
  line-height: 1;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  display: grid;
  min-width: 190px;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  backdrop-filter: blur(16px) saturate(1.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.35rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.55rem;
  height: 0.55rem;
}

.nav-submenu-link {
  padding: 0.48rem 0.6rem;
  border-radius: 5px;
  white-space: nowrap;
}

.nav-submenu-link:hover,
.nav-submenu-link:focus-visible {
  background: rgba(252, 102, 18, 0.08);
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu,
.nav-item.submenu-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-login,
.mobile-menu-enroll {
  display: none;
}

.header-actions,
.hero-buttons,
.rating-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.login {
  font-size: 0.86rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.login:hover,
.login:focus-visible {
  color: #fc6612;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 2.5rem;
  aspect-ratio: 1;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--black);
  font-size: 1.9rem;
  cursor: pointer;
}

.user-icon-button {
  font-size: 0;
}

.user-icon-button img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 46px;
  padding: 0 1.45rem;
  border: 1px solid var(--orange);
  border-radius: 4px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(252, 96, 15, 0.18);
}

.button-small {
  min-height: 40px;
  padding: 0 1.1rem;
}

.button-ghost {
  background: var(--white);
  color: var(--black);
  box-shadow: none;
}

.play-dot {
  display: grid;
  place-items: center;
  width: 1.2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.55rem;
}

.hero {
  position: relative;
  display: block;
  min-height: 500px;
  width: 100%;
  margin: calc(var(--header-offset) * -1) 0 0;
  padding: var(--header-offset) 1.5rem 0;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 2.05fr);
  align-items: center;
  width: 100%;
  min-height: inherit;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 900ms ease-in-out, visibility 900ms ease-in-out;
  will-change: opacity;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay-light::before {
  background: rgba(255, 255, 255, 0.34);
}

.hero-overlay-dark::before {
  background: rgba(0, 0, 0, 0.28);
}

.hero-overlay-gradient::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(255, 255, 255, 0.08) 58%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 430px;
  padding-top: 0;
}

.hero-eyebrow-black .hero-copy .eyebrow {
  color: var(--black);
}

.hero-eyebrow-orange .hero-copy .eyebrow {
  color: #fc6612;
}

.hero-eyebrow-white .hero-copy .eyebrow {
  color: var(--white);
}

.hero-eyebrow-gray .hero-copy .eyebrow {
  color: var(--gray);
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  color: #fc6612;
  font-size: clamp(3.6rem, 5.4vw, 5.35rem);
}

.hero-title-orange h1 {
  color: #fc6612;
}

.hero-title-black h1 {
  color: var(--black);
}

.hero-title-white h1 {
  color: var(--white);
}

.hero-title-size-small h1 {
  font-size: clamp(2.9rem, 4.4vw, 4.25rem);
}

.hero-title-size-medium h1 {
  font-size: clamp(3.25rem, 4.9vw, 4.85rem);
}

.hero-title-size-large h1 {
  font-size: clamp(3.6rem, 5.4vw, 5.35rem);
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 360px;
  margin: 1.25rem 0;
  color: #2e2e2e;
  font-weight: 600;
}

.hero-description-dark .hero-copy > p:not(.eyebrow) {
  color: #2e2e2e;
}

.hero-description-black .hero-copy > p:not(.eyebrow) {
  color: var(--black);
}

.hero-description-white .hero-copy > p:not(.eyebrow) {
  color: var(--white);
}

.hero-description-gray .hero-copy > p:not(.eyebrow) {
  color: var(--gray);
}

.hero-description-size-large .hero-copy > p:not(.eyebrow) {
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-align-center .hero-copy {
  text-align: center;
}

.hero-align-center .hero-buttons {
  justify-content: center;
}

.hero-align-center .flourish {
  margin-right: auto;
  margin-left: auto;
}

.hero-text-center {
  grid-template-columns: minmax(0, 1fr);
}

.hero-text-center .hero-copy {
  justify-self: center;
}

.hero-text-center .hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  margin-left: 0;
  justify-items: center;
  opacity: 0.42;
}

.hero-text-right {
  grid-template-columns: minmax(0, 2.05fr) minmax(430px, 0.95fr);
}

.hero-text-right .hero-copy {
  grid-column: 2;
  justify-self: end;
}

.hero-text-right .hero-image {
  grid-column: 1;
  margin-right: -6rem;
  margin-left: 0;
  justify-items: start;
}

.flourish {
  width: 190px;
  height: 12px;
  margin-top: 1.2rem;
  background:
    radial-gradient(circle, var(--orange) 0 3px, transparent 4px) right center / 12px 12px no-repeat,
    linear-gradient(var(--orange), var(--orange)) left center / 170px 2px no-repeat;
}

.hero-image {
  overflow: hidden;
  align-self: center;
  height: min(570px, 52vw);
  margin-left: -6rem;
  display: grid;
  align-items: center;
  justify-items: end;
  background: transparent;
}

.hero-image img {
  width: auto;
  height: min(760px, 62vw);
  max-width: none;
  object-fit: contain;
  object-position: 58% 43%;
  mix-blend-mode: multiply;
  filter: contrast(1.03) saturate(1.08);
  transform: translateX(0) scale(1);
  transform-origin: center right;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 78%, transparent 100%);
  mask-composite: intersect;
}

.hero-image-left .hero-image img {
  object-position: 35% 43%;
}

.hero-image-center .hero-image img {
  object-position: 58% 43%;
}

.hero-image-right .hero-image img {
  object-position: 72% 43%;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transform: translateX(-50%);
}

.hero-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid rgba(252, 102, 18, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #fc6612;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: #fc6612;
  color: var(--white);
  transform: translateY(-1px);
}

.hero-dots {
  display: flex;
  gap: 0.45rem;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #fc6612;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  width: 24px;
  background: #fc6612;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip article {
  padding: 1.4rem 1.8rem;
  border-right: 1px solid var(--line);
}

.feature-strip article:last-child {
  border-right: 0;
}

.learning-scroller {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.scroller-bg-white {
  background: var(--white);
}

.scroller-bg-gray {
  background: var(--bg);
}

.scroller-bg-black {
  background: var(--black);
}

.scroller-bg-orange {
  background: #fc6612;
}

.scroller-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 1rem 0;
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: learning-scroll 32s linear infinite;
}

.scroller-text-black .scroller-track {
  color: var(--black);
}

.scroller-text-orange .scroller-track {
  color: #fc6612;
}

.scroller-text-gray .scroller-track {
  color: var(--gray);
}

.scroller-text-white .scroller-track {
  color: var(--white);
}

.scroller-speed-slow .scroller-track {
  animation-duration: 44s;
}

.scroller-speed-normal .scroller-track {
  animation-duration: 32s;
}

.scroller-speed-fast .scroller-track {
  animation-duration: 22s;
}

.scroller-track span {
  position: relative;
  white-space: nowrap;
}

.scroller-track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.45rem;
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.scroller-marker-orange .scroller-track span::after {
  background: #fc6612;
}

.scroller-marker-black .scroller-track span::after {
  background: var(--black);
}

.scroller-marker-gray .scroller-track span::after {
  background: var(--gray);
}

.scroller-marker-white .scroller-track span::after {
  background: var(--white);
}

.learning-scroller:hover .scroller-track {
  animation-play-state: paused;
}

@keyframes learning-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroller-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    padding-inline: 1.5rem;
  }
}

.feature-icon,
.benefit-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  margin-bottom: 0.6rem;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

p {
  color: #343434;
}

.feature-strip p,
.path-copy p,
.benefit-grid p,
.guru-card p,
.footer p,
.footer a,
.faq p {
  margin: 0.25rem 0 0;
  color: var(--gray);
  font-size: 0.84rem;
  font-weight: 600;
}

.section {
  width: 100%;
  margin: 0;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.4rem;
}

.courses .section-heading {
  margin-bottom: calc(1.4rem + 39px);
}

.courses {
  background: var(--white);
}

.section-heading p:last-child,
.center-heading > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0.55rem auto 0;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link {
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.courses .text-link {
  color: #fc6612;
}

.courses .eyebrow {
  color: var(--black);
}

.courses h2 {
  color: #fc6612;
}

.courses-eyebrow-black .eyebrow {
  color: var(--black);
}

.courses-eyebrow-orange .eyebrow {
  color: #fc6612;
}

.courses-eyebrow-gray .eyebrow {
  color: var(--gray);
}

.courses-eyebrow-white .eyebrow {
  color: var(--white);
}

.courses-title-orange h2 {
  color: #fc6612;
}

.courses-title-black h2 {
  color: var(--black);
}

.courses-title-gray h2 {
  color: var(--gray);
}

.courses-title-white h2 {
  color: var(--white);
}

.courses-description-gray p:last-child {
  color: var(--gray);
}

.courses-description-black p:last-child {
  color: var(--black);
}

.courses-description-orange p:last-child {
  color: #fc6612;
}

.courses-description-white p:last-child {
  color: var(--white);
}

.courses-link-orange .text-link {
  color: #fc6612;
}

.courses-link-black .text-link {
  color: var(--black);
}

.courses-link-gray .text-link {
  color: var(--gray);
}

.courses-link-white .text-link {
  color: var(--white);
}

.courses-description-font-bodoni p:last-child,
.courses-link-font-bodoni .text-link {
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
  font-style: italic;
}

.courses-title-font-sans h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 900;
}

.courses-description-font-sans p:last-child,
.courses-link-font-sans .text-link {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
}

.text-link span,
.button span {
  color: inherit;
}

.course-api-slot {
  min-height: 450px;
}

.review-card,
.guru-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.path-section {
  display: grid;
  grid-template-columns: minmax(760px, 1.35fr) minmax(360px, 0.65fr);
  gap: 2rem;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 2.2rem 2.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.device-scene {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
}

.laptop {
  display: grid;
  grid-template-columns: 108px 1fr;
  width: min(100%, 520px);
  min-height: 252px;
  margin-left: 92px;
  border: 4px solid #1b1b1b;
  border-bottom-width: 7px;
  border-radius: 11px 11px 3px 3px;
  background: linear-gradient(135deg, #fffdf9, #f7f6f3);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.laptop aside {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  padding: 0.78rem 0.68rem;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.54rem;
  font-weight: 800;
}

.laptop aside img {
  width: 68px;
  margin-bottom: 0.25rem;
}

.laptop aside span {
  padding: 0.28rem 0.4rem;
  border-radius: 4px;
}

.laptop aside .active {
  background: rgba(252, 96, 15, 0.09);
  color: var(--black);
}

.screen {
  padding: 0.82rem 0.9rem 0.85rem;
  min-width: 0;
}

.screen-header,
.progress-panel div,
.lesson-content,
.recent-lesson,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.screen-header {
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.screen-header strong {
  font-size: 0.74rem;
  line-height: 1.16;
}

.screen-tools {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  color: var(--gray);
  font-size: 0.56rem;
}

.screen-tools span {
  min-width: 78px;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 999px;
  background: var(--white);
}

.screen-tools i {
  color: var(--black);
  font-style: normal;
  font-weight: 900;
}

.progress-panel,
.lesson-card,
.recent-lesson {
  min-width: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.progress-panel {
  padding: 0.72rem 0.82rem;
}

.progress-panel strong,
.progress-panel span,
.lesson-card h4 {
  font-size: 0.58rem;
}

.progress {
  overflow: hidden;
  height: 5px;
  margin: 0.55rem 0 0.95rem;
  border-radius: 999px;
  background: #ececec;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--orange);
}

.screen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.lesson-card {
  padding: 0.62rem;
}

.lesson-card h4 {
  margin: 0 0 0.5rem;
}

.lesson-content p {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 0.56rem;
}

.lesson-content button {
  min-width: 56px;
  min-height: 24px;
  border: 0;
  border-radius: 4px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.54rem;
  font-weight: 900;
}

.lesson-content .muted-button {
  background: #f3f3f3;
  color: var(--black);
}

.mini-thumb,
.avatar {
  width: 43px;
  aspect-ratio: 1.2;
  border-radius: 4px;
  background: url("assets/hero.png") center / cover;
}

.avatar {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.recent-lesson {
  margin-top: 0.65rem;
  padding: 0.58rem 0.78rem;
}

.recent-lesson p {
  flex: 1;
  margin: 0;
  font-size: 0.56rem;
}

.recent-lesson strong,
.recent-lesson span {
  color: #238a45;
}

.mini-dot {
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--orange) 0 28%, transparent 30%),
    radial-gradient(circle at center, rgba(252, 96, 15, 0.2) 0 58%, transparent 60%);
}

.phone {
  position: absolute;
  bottom: 7px;
  left: 18px;
  z-index: 3;
  width: 118px;
  min-height: 210px;
  padding: 0.82rem 0.55rem 0.6rem;
  border: 5px solid #151515;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.phone-top {
  width: 38px;
  height: 5px;
  margin: -0.35rem auto 0.58rem;
  border-radius: 999px;
  background: var(--black);
}

.phone h4 {
  margin: 0 0 0.55rem;
  font-size: 0.62rem;
}

.phone p {
  font-size: 0.53rem;
}

.phone-course-thumb {
  min-height: 62px;
  border-radius: 5px;
  background:
    radial-gradient(circle at center, rgba(252, 96, 15, 0.45), transparent 28%),
    radial-gradient(circle at center, #0d0d0d 0 48%, transparent 49%),
    url("assets/hero.png") center / cover;
}

.phone-stat {
  height: 4px;
  margin: 0.38rem 0 0.62rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) 0 77%, #ececec 77%);
}

.phone-stat span {
  float: right;
  margin-top: -0.35rem;
  font-size: 0.48rem;
  font-weight: 900;
}

.phone-lesson {
  margin-top: 0.42rem;
  padding: 0.38rem;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 0.45rem;
}

.phone-lesson span,
.phone-lesson strong {
  display: block;
}

.laptop-base {
  position: absolute;
  left: 92px;
  bottom: 0;
  width: 550px;
  height: 17px;
  border-radius: 0 0 42px 42px;
  background:
    radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.28) 0 17%, transparent 18%),
    linear-gradient(180deg, #6c6c6c 0%, #2c2c2c 45%, #111 52%, #575757 100%);
  box-shadow: 0 11px 22px rgba(0, 0, 0, 0.23);
}

.laptop-base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 110px;
  height: 7px;
  border-radius: 0 0 9px 9px;
  background: linear-gradient(180deg, #242424, #585858);
  transform: translateX(-50%);
}

.path-copy h2 {
  color: #fc6612;
  margin-bottom: 1.4rem;
}

.path-copy .eyebrow {
  color: var(--black);
}

.path-eyebrow-black .eyebrow {
  color: var(--black);
}

.path-eyebrow-orange .eyebrow {
  color: #fc6612;
}

.path-eyebrow-gray .eyebrow {
  color: var(--gray);
}

.path-eyebrow-white .eyebrow {
  color: var(--white);
}

.path-title-orange h2 {
  color: #fc6612;
}

.path-title-black h2 {
  color: var(--black);
}

.path-title-gray h2 {
  color: var(--gray);
}

.path-title-white h2 {
  color: var(--white);
}

.path-pointer-title-black .icon-list strong {
  color: var(--black);
}

.path-pointer-title-orange .icon-list strong {
  color: #fc6612;
}

.path-pointer-title-gray .icon-list strong {
  color: var(--gray);
}

.path-pointer-title-white .icon-list strong {
  color: var(--white);
}

.path-pointer-description-gray .icon-list p {
  color: var(--gray);
}

.path-pointer-description-black .icon-list p {
  color: var(--black);
}

.path-pointer-description-orange .icon-list p {
  color: #fc6612;
}

.path-pointer-description-white .icon-list p {
  color: var(--white);
}

.icon-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.icon-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.8rem;
}

.icon-list span {
  display: grid;
  place-items: center;
  width: 32px;
  aspect-ratio: 1;
  border: 2px solid var(--orange);
  border-radius: 5px;
  color: var(--orange);
}

.path-icon-orange .icon-list span {
  border-color: #fc6612;
  color: #fc6612;
}

.path-icon-black .icon-list span {
  border-color: var(--black);
  color: var(--black);
}

.path-icon-gray .icon-list span {
  border-color: var(--gray);
  color: var(--gray);
}

.path-icon-white .icon-list span {
  border-color: var(--white);
  color: var(--white);
}

.center-heading {
  margin-bottom: 1.6rem;
  text-align: center;
}

.benefits {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.benefits .eyebrow {
  color: var(--black);
}

.benefits h2 {
  color: #fc6612;
}

.benefits-eyebrow-black .eyebrow {
  color: var(--black);
}

.benefits-eyebrow-orange .eyebrow {
  color: #fc6612;
}

.benefits-eyebrow-gray .eyebrow {
  color: var(--gray);
}

.benefits-eyebrow-white .eyebrow {
  color: var(--white);
}

.benefits-title-orange h2 {
  color: #fc6612;
}

.benefits-title-black h2 {
  color: var(--black);
}

.benefits-title-gray h2 {
  color: var(--gray);
}

.benefits-title-white h2 {
  color: var(--white);
}

.benefits-title-font-sans h2,
.benefits-card-title-font-sans h3,
.benefits-card-description-font-sans p {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
}

.benefits-title-font-bodoni h2,
.benefits-card-title-font-bodoni h3,
.benefits-card-description-font-bodoni p {
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
  font-style: italic;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-grid article {
  min-height: 175px;
  padding: 2.6rem 2rem;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.benefit-grid span {
  margin-inline: auto;
}

.benefits-icon-orange span {
  border-color: #fc6612;
  color: #fc6612;
}

.benefits-icon-black span {
  border-color: var(--black);
  color: var(--black);
}

.benefits-icon-gray span {
  border-color: var(--gray);
  color: var(--gray);
}

.benefits-icon-white span {
  border-color: var(--white);
  color: var(--white);
}

.benefits-card-title-black h3 {
  color: var(--black);
}

.benefits-card-title-orange h3 {
  color: #fc6612;
}

.benefits-card-title-gray h3 {
  color: var(--gray);
}

.benefits-card-title-white h3 {
  color: var(--white);
}

.benefits-card-description-gray p {
  color: var(--gray);
}

.benefits-card-description-black p {
  color: var(--black);
}

.benefits-card-description-orange p {
  color: #fc6612;
}

.benefits-card-description-white p {
  color: var(--white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.reviews .eyebrow {
  color: var(--black);
}

.reviews {
  background: var(--white);
}

.reviews h2 {
  color: #fc6612;
}

.review-card {
  padding: 1.25rem;
}

.review-head {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.portrait {
  display: block;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(140deg, rgba(252, 96, 15, 0.8), rgba(0, 0, 0, 0.5)),
    url("assets/hero.png") center / cover;
}

.portrait-b { background-position: 65% 50%; }
.portrait-c { background-position: 78% 50%; }

.review-head b,
.google-mark {
  display: grid;
  place-items: center;
  width: 28px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.12);
}

.stars {
  margin-top: 0.9rem;
  color: var(--orange);
  letter-spacing: 0;
}

.review-card small {
  color: var(--gray);
  font-weight: 800;
}

.rating-row {
  justify-content: center;
  margin-top: 1.5rem;
}

.gurus {
  border-bottom: 0;
}

.gurus .eyebrow {
  color: var(--black);
}

.gurus h2 {
  color: #fc6612;
}

.gurus-eyebrow-black .eyebrow {
  color: var(--black);
}

.gurus-eyebrow-orange .eyebrow {
  color: #fc6612;
}

.gurus-eyebrow-gray .eyebrow {
  color: var(--gray);
}

.gurus-eyebrow-white .eyebrow {
  color: var(--white);
}

.gurus-title-orange h2 {
  color: #fc6612;
}

.gurus-title-black h2 {
  color: var(--black);
}

.gurus-title-gray h2 {
  color: var(--gray);
}

.gurus-title-white h2 {
  color: var(--white);
}

.gurus-title-font-bodoni h2 {
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
}

.gurus-title-font-sans h2 {
  font-family: inherit;
}

.guru-carousel {
  position: relative;
  padding: 0 3.25rem;
}

.guru-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 450px;
  grid-template-columns: none;
  gap: 1.5rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 0.2rem;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.guru-grid::-webkit-scrollbar {
  display: none;
}

.guru-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
  box-shadow: var(--shadow);
  cursor: pointer;
  transform: translateY(-50%);
}

.guru-arrow-left {
  left: 0;
}

.guru-arrow-right {
  right: 0;
}

.guru-arrow:disabled {
  opacity: 0.32;
  cursor: default;
}

.guru-card {
  width: 450px;
  min-height: 660px;
  text-align: center;
  scroll-snap-align: start;
  cursor: pointer;
}

.guru-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.guru-photo {
  width: 450px;
  aspect-ratio: 4 / 5;
  min-height: 562.5px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45)),
    url("assets/hero.png");
  background-size: cover;
}

.featured .guru-photo {
  min-height: 562.5px;
}

.guru-one { background-position: 54% 42%; }
.guru-two { background-position: 49% 49%; }
.guru-three { background-position: 61% 42%; }
.guru-four { background-position: 70% 46%; }
.guru-five { background-position: 81% 50%; }

.guru-card h3 {
  margin-top: 0.8rem;
  color: #fc6612;
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
  font-size: calc(1rem + 6.7px);
}

.guru-card p {
  padding: 0 0.8rem 1rem;
}

.guru-name-orange .guru-card h3 {
  color: #fc6612;
}

.guru-name-black .guru-card h3 {
  color: var(--black);
}

.guru-name-gray .guru-card h3 {
  color: var(--gray);
}

.guru-name-white .guru-card h3 {
  color: var(--white);
}

.guru-name-font-bodoni .guru-card h3 {
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
}

.guru-name-font-sans .guru-card h3 {
  font-family: inherit;
}

.guru-specialty-gray .guru-card p {
  color: var(--gray);
}

.guru-specialty-black .guru-card p {
  color: var(--black);
}

.guru-specialty-orange .guru-card p {
  color: #fc6612;
}

.guru-specialty-white .guru-card p {
  color: var(--white);
}

.guru-specialty-font-sans .guru-card p {
  font-family: inherit;
}

.guru-specialty-font-bodoni .guru-card p {
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
}

.guru-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 1.5rem;
}

.guru-modal.is-open {
  display: grid;
}

.guru-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(5px);
}

.guru-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 2rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.guru-modal-panel h2 {
  margin-bottom: 0.85rem;
}

.guru-modal-panel strong {
  display: block;
  color: var(--orange);
  font-size: 0.95rem;
}

.guru-modal-panel p:last-child {
  margin: 1rem 0 0;
  color: #2e2e2e;
  font-weight: 600;
}

.guru-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.faq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--white);
}

.faq .eyebrow {
  color: var(--black);
}

.faq h2 {
  color: #fc6612;
}

.faq-eyebrow-black .eyebrow {
  color: var(--black);
}

.faq-eyebrow-orange .eyebrow {
  color: #fc6612;
}

.faq-eyebrow-gray .eyebrow {
  color: var(--gray);
}

.faq-eyebrow-white .eyebrow {
  color: var(--white);
}

.faq-title-orange h2 {
  color: #fc6612;
}

.faq-title-black h2 {
  color: var(--black);
}

.faq-title-gray h2 {
  color: var(--gray);
}

.faq-title-white h2 {
  color: var(--white);
}

.faq-title-font-bodoni h2 {
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
}

.faq-title-font-sans h2 {
  font-family: inherit;
}

.faq-list {
  margin-top: 3rem;
}

details {
  border-top: 1px solid var(--line);
}

details[open] {
  background: var(--white);
}

.faq-active-bg-white details[open] {
  background: var(--white);
}

.faq-active-bg-gray details[open] {
  background: var(--bg);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.55rem 0.4rem;
  cursor: pointer;
  font-weight: 900;
}

.faq-question-black summary {
  color: var(--black);
}

.faq-question-orange summary {
  color: #fc6612;
}

.faq-question-gray summary {
  color: var(--gray);
}

.faq-question-white summary {
  color: var(--white);
}

.faq-question-font-sans summary {
  font-family: inherit;
}

.faq-question-font-bodoni summary {
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
}

summary::after {
  content: "⌄";
}

details[open] summary::after {
  transform: rotate(180deg);
}

details p {
  padding: 0 0.4rem 1.8rem;
}

.faq-answer-gray details p {
  color: var(--gray);
}

.faq-answer-black details p {
  color: var(--black);
}

.faq-answer-orange details p {
  color: #fc6612;
}

.faq-answer-white details p {
  color: var(--white);
}

.faq-answer-font-sans details p {
  font-family: inherit;
}

.faq-answer-font-bodoni details p {
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
}

.cta {
  position: relative;
  display: grid;
  grid-template-columns: 49.8% 50.2%;
  overflow: hidden;
  width: 100%;
  height: 35.15625vw;
  min-height: 420px;
  max-height: 540px;
  margin: 0;
  border-radius: 0;
  background: var(--cta-desktop-bg, url("assets/cta-kashi-gate.png")) center / 100% 100% no-repeat;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 3rem 0.65rem;
  text-align: center;
  background: transparent;
}

.cta-mobile-art {
  display: none;
}

.cta-ornament {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.55rem;
  width: min(100%, 460px);
  height: 1rem;
  margin-bottom: 0.45rem;
  color: #fc6612;
}

.cta-ornament span {
  width: 100%;
  height: 1px;
  background: #fc6612;
}

.cta-divider {
  width: 100%;
  height: 1px;
  background:
    linear-gradient(90deg, transparent 0 14%, #fc6612 14% 47%, transparent 47% 53%, #fc6612 53% 86%, transparent 86%);
}

.cta-ornament b,
.cta-divider span {
  display: block;
  width: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fc6612;
  font-size: 0.85rem;
  line-height: 1;
}

.cta h2 {
  color: #262222;
  font-size: clamp(2rem, 2.5vw, 2.9rem);
  line-height: 1.04;
}

.cta h2 span,
.cta h2 em,
.cta h2 strong {
  display: block;
  font-weight: 500;
}

.cta h2 em {
  font-style: italic;
}

.cta h2 strong {
  color: #fc6612;
  font-style: italic;
}

.cta-title-black h2,
.cta-title-black h2 span,
.cta-title-black h2 em {
  color: var(--black);
}

.cta-title-orange h2,
.cta-title-orange h2 span,
.cta-title-orange h2 em {
  color: #fc6612;
}

.cta-title-gray h2,
.cta-title-gray h2 span,
.cta-title-gray h2 em {
  color: var(--gray);
}

.cta-title-white h2,
.cta-title-white h2 span,
.cta-title-white h2 em {
  color: var(--white);
}

.cta-accent-orange h2 strong,
.cta-accent-orange .cta-ornament,
.cta-accent-orange .cta-ornament b,
.cta-accent-orange .cta-divider span {
  color: #fc6612;
}

.cta-accent-orange .cta-ornament span {
  background: #fc6612;
}

.cta-accent-orange .cta-divider {
  background:
    linear-gradient(90deg, transparent 0 14%, #fc6612 14% 47%, transparent 47% 53%, #fc6612 53% 86%, transparent 86%);
}

.cta-accent-black h2 strong,
.cta-accent-black .cta-ornament,
.cta-accent-black .cta-ornament b,
.cta-accent-black .cta-divider span {
  color: var(--black);
}

.cta-accent-black .cta-ornament span {
  background: var(--black);
}

.cta-accent-black .cta-divider {
  background:
    linear-gradient(90deg, transparent 0 14%, var(--black) 14% 47%, transparent 47% 53%, var(--black) 53% 86%, transparent 86%);
}

.cta-accent-gray h2 strong,
.cta-accent-gray .cta-ornament,
.cta-accent-gray .cta-ornament b,
.cta-accent-gray .cta-divider span {
  color: var(--gray);
}

.cta-accent-gray .cta-ornament span {
  background: var(--gray);
}

.cta-accent-gray .cta-divider {
  background:
    linear-gradient(90deg, transparent 0 14%, var(--gray) 14% 47%, transparent 47% 53%, var(--gray) 53% 86%, transparent 86%);
}

.cta-accent-white h2 strong,
.cta-accent-white .cta-ornament,
.cta-accent-white .cta-ornament b,
.cta-accent-white .cta-divider span {
  color: var(--white);
}

.cta-accent-white .cta-ornament span {
  background: var(--white);
}

.cta-accent-white .cta-divider {
  background:
    linear-gradient(90deg, transparent 0 14%, var(--white) 14% 47%, transparent 47% 53%, var(--white) 53% 86%, transparent 86%);
}

.cta-title-font-bodoni h2 {
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
}

.cta-title-font-sans h2 {
  font-family: inherit;
}

.cta-divider {
  position: relative;
  width: min(100%, 410px);
  margin: 25px 0;
}

.cta-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0 0.22rem;
  background: transparent;
  color: #fc6612;
  transform: translate(-50%, -50%);
}

.cta-copy > p {
  max-width: 560px;
  margin: 0 0 61px;
  color: #1f1f1f;
  font-size: clamp(0.78rem, 0.9vw, 1rem);
  line-height: 1.42;
  font-weight: 500;
}

.cta-description-black .cta-copy > p {
  color: var(--black);
}

.cta-description-gray .cta-copy > p {
  color: var(--gray);
}

.cta-description-orange .cta-copy > p {
  color: #fc6612;
}

.cta-description-white .cta-copy > p {
  color: var(--white);
}

.cta-description-font-sans .cta-copy > p {
  font-family: inherit;
}

.cta-description-font-bodoni .cta-copy > p {
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 27px;
}

.cta-buttons .button {
  min-width: 142px;
  min-height: 34px;
  border-radius: 7px;
  font-size: 0.72rem;
}

.cta-buttons .button-ghost {
  color: var(--black);
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 680px);
}

.cta-benefits article {
  display: grid;
  grid-template-rows: 2.4rem auto auto;
  align-items: start;
  padding: 0 0.75rem;
  border-right: 1px solid var(--line);
}

.cta-benefits article:last-child {
  border-right: 0;
}

.cta-benefits span {
  display: block;
  color: #fc6612;
  font-size: 1.55rem;
  line-height: 1;
}

.cta-benefits article:nth-child(n + 2) span {
  font-size: 2.2rem;
}

.cta-benefits h3 {
  margin-top: 0.48rem;
  font-size: 0.82rem;
}

.cta-benefits p {
  margin: 0.36rem 0 0;
  color: #1f1f1f;
  font-size: 0.7rem;
  font-weight: 500;
}

.cta-icon-orange .cta-benefits span {
  color: #fc6612;
}

.cta-icon-black .cta-benefits span {
  color: var(--black);
}

.cta-icon-gray .cta-benefits span {
  color: var(--gray);
}

.cta-icon-white .cta-benefits span {
  color: var(--white);
}

.cta-benefit-title-black .cta-benefits h3 {
  color: var(--black);
}

.cta-benefit-title-orange .cta-benefits h3 {
  color: #fc6612;
}

.cta-benefit-title-gray .cta-benefits h3 {
  color: var(--gray);
}

.cta-benefit-title-white .cta-benefits h3 {
  color: var(--white);
}

.cta-benefit-description-black .cta-benefits p {
  color: var(--black);
}

.cta-benefit-description-gray .cta-benefits p {
  color: var(--gray);
}

.cta-benefit-description-orange .cta-benefits p {
  color: #fc6612;
}

.cta-benefit-description-white .cta-benefits p {
  color: var(--white);
}

.cta-benefit-title-font-sans .cta-benefits h3,
.cta-benefit-description-font-sans .cta-benefits p {
  font-family: inherit;
}

.cta-benefit-title-font-bodoni .cta-benefits h3,
.cta-benefit-description-font-bodoni .cta-benefits p {
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
}

.footer {
  position: relative;
  background: var(--footer-bg, var(--white));
  color: var(--footer-text, var(--black));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(210px, 1.35fr) repeat(5, minmax(120px, 1fr));
  gap: clamp(1.1rem, 1.8vw, 2rem);
  width: 100%;
  margin: 0;
  padding: 2rem 1.5rem;
}

.footer img {
  width: 205px;
}

.footer h3 {
  margin-bottom: 0.75rem;
  color: var(--footer-text, var(--black));
}

.footer a {
  display: block;
  color: var(--footer-link, var(--gray));
  transition: color 180ms ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: #fc6612;
}

.footer-apps {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.footer-apps-title {
  color: var(--footer-text, var(--black));
  font-size: 0.82rem;
}

.footer-app-badges {
  display: grid;
  gap: 0.45rem;
}

.footer .footer-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  min-width: 148px;
  min-height: 44px;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(114, 113, 114, 0.42);
  border-radius: 7px;
  background: rgba(114, 113, 114, 0.08);
  color: var(--gray);
  box-shadow: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer .footer-app-badge:hover,
.footer .footer-app-badge:focus-visible {
  border-color: #fc6612;
  background: #fc6612;
  color: var(--white);
  transform: translateY(-1px);
}

.footer-app-badge img {
  width: 150px;
  max-width: 100%;
}

.footer-app-badge-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(114, 113, 114, 0.14);
  color: var(--gray);
  font-size: 0.72rem;
  transition: background 180ms ease, color 180ms ease;
}

.footer-app-badge:hover .footer-app-badge-icon,
.footer-app-badge:focus-visible .footer-app-badge-icon {
  background: var(--white);
  color: #fc6612;
}

.footer-app-badge span:last-child {
  display: grid;
  line-height: 1.05;
}

.footer-app-badge small {
  font-size: 0.58rem;
  font-weight: 750;
  text-transform: uppercase;
}

.footer-app-badge b {
  font-size: 0.98rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.footer-social {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(252, 102, 18, 0.42);
  border-radius: 50%;
  color: #fc6612;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  border-color: #fc6612;
  background: #fc6612;
  color: var(--white);
  transform: translateY(-1px);
}

.footer-social-youtube,
.footer-social-tiktok {
  font-size: 0.78rem;
}

.footer-social img,
.footer-social-icon img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  display: block;
}

.footer-social-list {
  display: grid;
  gap: 0.45rem;
}

.footer .footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--footer-link, var(--gray));
  font-weight: 750;
}

.footer-social-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(252, 102, 18, 0.42);
  border-radius: 50%;
  color: #fc6612;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social-row:hover,
.footer-social-row:focus-visible {
  color: #fc6612;
}

.footer-social-row:hover .footer-social-icon,
.footer-social-row:focus-visible .footer-social-icon {
  border-color: #fc6612;
  background: #fc6612;
  color: var(--white);
  transform: translateY(-1px);
}

.footer-social:hover img,
.footer-social:focus-visible img,
.footer-social-row:hover .footer-social-icon img,
.footer-social-row:focus-visible .footer-social-icon img {
  filter: brightness(0) invert(1);
}

.footer-bottom {
  width: 100%;
  margin: 0;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--footer-link, var(--gray));
  font-size: 0.8rem;
  text-align: center;
}

.footer-bottom a {
  display: inline;
  color: inherit;
  transition: color 180ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fc6612;
}

.whatsapp {
  position: fixed;
  right: 1.6rem;
  bottom: 1.4rem;
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: #18b957;
  color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transform: translate(1px, -1px);
}

.blog-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(252, 102, 18, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(232, 232, 232, 0.9) 48%, #ffffff 48%),
    var(--bg);
}

.static-info-page {
  background:
    radial-gradient(circle at 0 14%, rgba(252, 102, 18, 0.08), transparent 28rem),
    radial-gradient(circle at 100% 68%, rgba(252, 102, 18, 0.07), transparent 24rem),
    var(--white);
}

.static-page-hero {
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.static-page-hero img {
  width: 100%;
  height: clamp(260px, 28vw, 440px);
  object-fit: cover;
  object-position: center;
}

.static-hero-short .static-page-hero img {
  height: clamp(220px, 22vw, 340px);
}

.static-hero-tall .static-page-hero img {
  height: clamp(320px, 34vw, 560px);
}

.static-page-body {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5.5rem) 0 clamp(4rem, 6vw, 6rem);
}

.static-page-title {
  display: grid;
  gap: 0.5rem;
  max-width: 840px;
  margin: 0 auto 2rem;
  text-align: center;
}

.static-page-title p {
  margin: 0;
  color: var(--static-eyebrow-color, #fc6612);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.static-page-title h1 {
  margin: 0;
  color: var(--static-title-color, var(--black));
  font-family: "Bodoni 72", Bodoni72, "Bodoni 72 Smallcaps", Didot, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
}

.static-page-title span {
  color: var(--static-updated-color, var(--gray));
  font-size: 0.95rem;
  font-weight: 750;
}

.static-content-box {
  display: grid;
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: color-mix(in srgb, var(--static-content-bg, #ffffff) 90%, transparent);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.07);
}

.static-content-box section {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.static-content-box section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.static-content-box h2 {
  margin: 0 0 0.55rem;
  color: var(--static-heading-color, var(--black));
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.25;
}

.static-content-box p {
  margin: 0;
  color: var(--static-body-color, var(--gray));
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 650;
  line-height: 1.75;
}

.blog-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  min-height: auto;
  padding: clamp(7.25rem, 8vw, 8.5rem) clamp(1rem, 4vw, 4rem) clamp(3rem, 5vw, 5.5rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(232, 232, 232, 0.98) 0 34%, rgba(232, 232, 232, 0.58) 60%, rgba(255, 255, 255, 0.92)),
    url("assets/cta-kashi-gate.png") center / cover no-repeat;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 5.4rem clamp(1rem, 4vw, 4rem) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 102, 18, 0.54), transparent);
  z-index: -1;
}

.blog-hero-copy {
  max-width: 760px;
}

.blog-hero-copy .eyebrow,
.blog-featured .eyebrow,
.blog-section-head .eyebrow {
  color: #fc6612;
}

.blog-hero h1 {
  margin: 0.45rem 0 1.35rem;
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
  font-size: clamp(4rem, 7.2vw, 8.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.88;
}

.blog-hero-copy > p:last-child {
  max-width: 650px;
  color: #2b2b2b;
  font-size: clamp(1.04rem, 1.25vw, 1.22rem);
  font-weight: 750;
  line-height: 1.65;
}

.blog-featured {
  overflow: hidden;
  border: 1px solid rgba(252, 102, 18, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.14);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.blog-featured .blog-card-media {
  aspect-ratio: 1.95 / 1;
}

.blog-featured-copy {
  padding: clamp(1.4rem, 2.5vw, 2.3rem);
}

.blog-featured h2 {
  margin: 0.25rem 0 0.75rem;
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
  font-size: clamp(2.05rem, 3.35vw, 3.65rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.98;
}

.blog-featured-copy > p:not(.eyebrow) {
  color: #4c4b4b;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.blog-featured-meta {
  margin-top: 1.1rem;
  color: var(--black);
  font-size: 0.83rem;
  font-weight: 900;
}

.blog-shell {
  padding: clamp(3rem, 5vw, 5.5rem) clamp(1rem, 4vw, 4rem) clamp(3.5rem, 6vw, 6rem);
  background:
    linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.96)),
    var(--white);
}

.blog-section-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  column-gap: clamp(2rem, 5vw, 5rem);
  row-gap: 0.6rem;
  align-items: end;
  max-width: 1480px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.blog-section-head .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.blog-section-head h2 {
  margin: 0;
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
  font-size: clamp(2.3rem, 4.6vw, 5.2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
}

.blog-section-head > p:last-child {
  margin: 0;
  max-width: 540px;
  color: var(--gray);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.65;
}

.blog-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto 1rem;
}

.blog-search {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 56px;
  padding: 0 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
}

.blog-search span {
  color: #fc6612;
  font-size: 1.15rem;
  font-weight: 900;
}

.blog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-weight: 750;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.blog-filters button,
.blog-pagination button {
  border: 1px solid rgba(252, 102, 18, 0.34);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.blog-filters button {
  min-height: 42px;
  padding: 0 1.1rem;
}

.blog-filters button.is-active,
.blog-pagination button.is-active {
  background: #fc6612;
  color: var(--white);
}

.blog-results-meta {
  max-width: 1480px;
  margin: 0.8rem auto 1.35rem;
  color: var(--gray);
  font-size: 0.86rem;
  font-weight: 850;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.7rem);
  max-width: 1480px;
  margin: 0 auto;
}

.blog-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border: 1px solid rgba(0, 0, 0, 0.075);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.075);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 102, 18, 0.28);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.12);
}

.blog-card::before {
  content: attr(data-category);
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.36rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #fc6612;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.blog-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.28 / 1;
  background: var(--bg);
}

.blog-card-media img,
.blog-card-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.blog-card-media img {
  transition: transform 350ms ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.035);
}

.video-play-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fc6612;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem 1.25rem 1.3rem;
}

.blog-card-meta {
  color: #fc6612;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0.55rem 0 0.75rem;
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.98;
}

.blog-card-body > p {
  color: var(--gray);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.58;
}

.blog-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 900;
}

.blog-card-foot a {
  color: #fc6612;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem auto 0;
  max-width: 1480px;
}

.blog-pagination button {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.8rem;
}

.blog-pagination button:disabled {
  opacity: 0.35;
  cursor: default;
}

.inner-page {
  background:
    radial-gradient(circle at 9% 14%, rgba(252, 102, 18, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--bg), #ffffff 62%);
}

.inner-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  min-height: 640px;
  padding: clamp(7rem, 8vw, 8.5rem) clamp(1rem, 4vw, 4rem) clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(232, 232, 232, 0.97) 0 35%, rgba(232, 232, 232, 0.62) 68%, rgba(255, 255, 255, 0.9)),
    url("assets/cta-kashi-gate.png") center / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(232, 232, 232, 0.97) 0 35%, rgba(232, 232, 232, 0.62) 68%, rgba(255, 255, 255, 0.9)),
    var(--contact-hero-bg-image, url("assets/cta-kashi-gate.png")) var(--contact-hero-bg-position, center) / cover no-repeat,
    var(--contact-hero-bg-color, var(--bg));
}

.contact-hero[data-overlay="none"] {
  background:
    var(--contact-hero-bg-image, url("assets/cta-kashi-gate.png")) var(--contact-hero-bg-position, center) / cover no-repeat,
    var(--contact-hero-bg-color, var(--bg));
}

.contact-hero[data-overlay="dark"] {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.28)),
    var(--contact-hero-bg-image, url("assets/cta-kashi-gate.png")) var(--contact-hero-bg-position, center) / cover no-repeat,
    var(--contact-hero-bg-color, var(--bg));
}

.contact-hero .eyebrow {
  color: var(--contact-eyebrow-color, #fc6612);
}

.contact-hero h1 {
  color: var(--contact-title-color, #fc6612);
}

.contact-hero .inner-hero-copy > p:not(.eyebrow) {
  color: var(--contact-description-color, #000000);
}

.contact-hero-title-small h1 {
  font-size: clamp(3rem, 5.2vw, 6rem);
}

.contact-hero-title-large h1 {
  font-size: clamp(3.6rem, 6.4vw, 7.4rem);
}

.contact-hero-description-large .inner-hero-copy > p:not(.eyebrow) {
  font-size: clamp(1.15rem, 1.45vw, 1.4rem);
}

.inner-hero-copy {
  max-width: 760px;
}

.inner-hero h1,
.inner-section h2 {
  margin: 0.45rem 0 1.1rem;
  font-family: "Bodoni 72", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
}

.inner-hero h1 {
  color: #fc6612;
  font-size: clamp(3.6rem, 6.4vw, 7.4rem);
}

.inner-hero p:not(.eyebrow),
.inner-section p {
  color: #2d2d2d;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 700;
  line-height: 1.7;
}

.inner-hero-art {
  min-height: 420px;
  border: 1px solid rgba(252, 102, 18, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.76)),
    url("assets/hero.png") center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.12);
}

.inner-section {
  padding: clamp(3.5rem, 6vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.split-story,
.about-band,
.contact-panel-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
  background: var(--white);
}

.inner-section h2 {
  color: var(--black);
  font-size: clamp(2.6rem, 4.8vw, 5.4rem);
}

.story-copy {
  display: grid;
  gap: 1.2rem;
}

.values-section {
  background: var(--bg);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.7rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.value-grid article,
.contact-card,
.contact-form,
.contact-support-band > div {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.075);
}

.value-grid article {
  padding: clamp(1.4rem, 2vw, 2rem);
}

.value-grid span {
  display: block;
  margin-bottom: 1rem;
  color: #fc6612;
  font-size: 2.3rem;
  font-weight: 900;
}

.value-grid h3,
.about-points strong,
.contact-card strong,
.contact-support-band strong {
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 950;
}

.value-grid p {
  margin: 0.65rem 0 0;
  color: var(--gray);
  font-size: 0.98rem;
}

.about-band {
  background:
    linear-gradient(90deg, rgba(232, 232, 232, 0.96), rgba(255, 255, 255, 0.86)),
    url("assets/cta-kashi-gate_mobile%20%26%20tablet.png") right center / contain no-repeat;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-points div {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.about-points span,
.contact-card small,
.contact-support-band span {
  display: block;
  margin-top: 0.45rem;
  color: var(--gray);
  font-weight: 750;
  line-height: 1.55;
}

.contact-hero {
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.85fr);
}

.contact-card-stack {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  color: inherit;
}

.contact-card span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border: 1px solid rgba(252, 102, 18, 0.4);
  border-radius: 50%;
  color: #fc6612;
  font-size: 1.25rem;
  font-weight: 900;
}

.contact-panel-section {
  background: var(--contact-form-bg-color, #fc6612);
}

.contact-form-intro .eyebrow {
  color: var(--contact-form-eyebrow-color, var(--black));
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-form-intro h2 {
  color: var(--contact-form-title-color, var(--white));
}

.contact-form-intro p:not(.eyebrow) {
  color: var(--contact-form-description-color, rgba(255, 255, 255, 0.88));
}

.contact-form-title-small h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.contact-form-title-large h2 {
  font-size: clamp(2.6rem, 4.8vw, 5.4rem);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.2rem, 2.4vw, 2rem);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--black);
  font-weight: 900;
}

.contact-form label > span {
  display: block;
}

.contact-form label[hidden] {
  display: none;
}

.contact-checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.contact-checkbox-field input {
  order: -1;
  width: 18px;
  min-height: 18px;
  accent-color: #fc6612;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  background: #fafafa;
  color: var(--black);
  font: inherit;
  font-weight: 700;
  outline: 0;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 0.9rem;
}

.contact-form textarea {
  resize: vertical;
  padding: 0.85rem 0.9rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #fc6612;
  box-shadow: 0 0 0 3px rgba(252, 102, 18, 0.12);
}

.contact-form-wide,
.contact-submit {
  grid-column: 1 / -1;
}

.contact-submit {
  justify-self: start;
  min-width: 190px;
}

.contact-support-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  background: var(--bg);
}

.contact-support-band > div {
  padding: 1.2rem;
}

@media (max-width: 1050px) {
  .blog-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7rem;
  }

  .inner-hero,
  .split-story,
  .about-band,
  .contact-panel-section,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .contact-support-band {
    grid-template-columns: 1fr;
  }

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

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

  .blog-filters {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .blog-hero {
    padding: 5.6rem 1rem 2.2rem;
    background:
      linear-gradient(180deg, rgba(232, 232, 232, 0.96), rgba(232, 232, 232, 0.84)),
      url("assets/cta-kashi-gate_mobile%20%26%20tablet.png") center top / cover no-repeat;
  }

  .blog-hero::before {
    inset: 4.9rem 1rem auto;
  }

  .blog-hero h1 {
    font-size: 3.45rem;
  }

  .blog-featured .blog-card-media {
    aspect-ratio: 1.45 / 1;
  }

  .blog-section-head h2 {
    font-size: 3rem;
  }

  .blog-featured-copy,
  .blog-card-body {
    padding: 1rem;
  }

  .blog-shell {
    padding: 2.4rem 1rem 3.2rem;
  }

  .blog-toolbar {
    gap: 0.9rem;
  }

  .blog-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .blog-filters::-webkit-scrollbar {
    display: none;
  }

  .blog-filters button {
    flex: 0 0 auto;
  }

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

  .blog-card {
    min-height: auto;
  }

  .blog-card h3 {
    font-size: 1.8rem;
  }

  .inner-hero {
    min-height: auto;
    padding: 5.6rem 1rem 2.4rem;
  }

  .inner-hero h1 {
    font-size: 3.45rem;
  }

  .inner-hero-art {
    min-height: 300px;
  }

  .inner-section {
    padding: 2.7rem 1rem;
  }

  .about-points,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    justify-self: stretch;
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero,
  .path-section,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .cta {
    min-height: auto;
  }

  .cta-art {
    min-height: 520px;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-image {
    height: auto;
    min-height: 360px;
    margin: -3rem -1.5rem 0 0;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }

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

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

  .device-scene {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-top: 57px;
  }

  .site-header,
  main,
  .hero,
  .feature-strip,
  .learning-scroller,
  .section,
  .path-section,
  .cta,
  .footer,
  .footer-grid,
  .footer-bottom {
    width: 100%;
    max-width: 100vw;
  }

  .site-header {
    position: fixed;
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    gap: 0.8rem;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    min-height: 57px;
    margin: 0;
    padding: 0.4rem 1.05rem;
    border: 0;
    border-radius: 0;
    background: rgba(232, 232, 232, 0.59);
    -webkit-backdrop-filter: blur(18px) saturate(1.16);
    backdrop-filter: blur(18px) saturate(1.16);
    box-shadow: 0 8px 26px rgba(232, 232, 232, 0.34);
    z-index: 70;
  }

  .brand img {
    width: 133px;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(252, 102, 18, 0.35);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.38);
    color: #fc6612;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header-actions {
    display: none;
  }

  h1 {
    font-size: 3.65rem;
  }

  h1 span {
    white-space: normal;
  }

  .hero {
    min-width: 0;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
  }

  .hero-slides,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide {
    display: flex;
    flex-direction: column;
  }

  .hero-text-center .hero-copy,
  .hero-text-right .hero-copy {
    grid-column: auto;
    justify-self: auto;
  }

  .hero-text-center .hero-image,
  .hero-text-right .hero-image {
    position: static;
    inset: auto;
    z-index: auto;
    opacity: 1;
  }

  .hero-copy {
    order: 2;
    width: 100%;
    max-width: none;
    padding: 1.25rem 1.05rem 1.6rem;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: none;
  }

  .hero-buttons,
  .section-heading,
  .rating-row,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-image {
    order: 1;
    width: 100%;
    min-height: 300px;
    margin: -1.1rem 0 0;
    justify-items: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .hero-controls {
    top: 175px;
    bottom: auto;
    left: 0;
    right: 0;
    justify-content: space-between;
    padding: 0 0.55rem;
    transform: none;
  }

  .hero-arrow {
    width: 30px;
    font-size: 1.55rem;
    background: rgba(255, 255, 255, 0.72);
  }

  .hero-dots {
    position: absolute;
    left: 50%;
    top: 105px;
    transform: translateX(-50%);
  }

  .nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    display: grid;
    grid-column: auto;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 1.05rem;
    border-top: 1px solid transparent;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    backdrop-filter: blur(18px) saturate(1.12);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
    font-size: 0.96rem;
    pointer-events: none;
    visibility: hidden;
    transition: max-height 220ms ease, padding 220ms ease, border-color 220ms ease, visibility 220ms ease;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
  }

  .nav-submenu-toggle {
    display: grid;
    width: 2.6rem;
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #fc6612;
    font-size: 1.1rem;
  }

  .nav-item.submenu-open .nav-submenu-toggle {
    transform: rotate(180deg);
  }

  .nav-submenu {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: rgba(252, 102, 18, 0.04);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .nav-item.submenu-open .nav-submenu {
    max-height: 420px;
    padding: 0.2rem 0 0.25rem 0.8rem;
  }

  .nav-submenu-link {
    padding: 0.62rem 0.15rem;
    border-radius: 0;
    color: var(--gray);
    white-space: normal;
  }

  .site-header.menu-open .nav {
    align-content: start;
    grid-auto-rows: max-content;
    height: calc(100vh - 57px);
    max-height: calc(100vh - 57px);
    height: calc(100dvh - 57px);
    max-height: calc(100dvh - 57px);
    overflow-y: auto;
    padding: 0.45rem 1.05rem 0.7rem;
    border-top-color: var(--line);
    border-radius: 0 0 14px 14px;
    pointer-events: auto;
    visibility: visible;
  }

  .nav a {
    padding: 0.78rem 0.15rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav a:last-child,
  .nav-item.submenu-open .nav-submenu-link:last-child {
    border-bottom: 0;
  }

  .mobile-menu-login,
  .mobile-menu-enroll {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-login {
    gap: 0.55rem;
    justify-content: flex-start;
    margin-top: 0.35rem;
    color: #fc6612;
    font-weight: 900;
  }

  .mobile-menu-login img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .mobile-menu-enroll {
    height: 46px;
    min-height: 44px;
    padding: 0 0.15rem;
    margin: 0.55rem 0 0.25rem;
    border: 1px solid #fc6612;
    border-radius: 6px;
    background: #fc6612;
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(252, 102, 18, 0.2);
  }

  .mobile-menu-enroll:hover,
  .mobile-menu-enroll:focus-visible {
    color: var(--white);
  }

  .feature-strip,
  .benefit-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 0;
    padding: 1.45rem 1.1rem 1.25rem;
  }

  .footer-grid > div {
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .footer-grid > div:first-child {
    padding-top: 0;
  }

  .footer-grid > div:last-child {
    border-bottom: 0;
  }

  .footer img {
    width: 178px;
  }

  .footer h3 {
    margin-bottom: 0.55rem;
  }

  .footer a {
    padding: 0.16rem 0;
  }

  .guru-carousel {
    padding: 0 0.35rem;
  }

  .guru-grid {
    --guru-mobile-card-width: calc(100vw - 20px);
    grid-auto-columns: var(--guru-mobile-card-width);
    gap: 10px;
    scroll-snap-type: none;
  }

  .section.gurus {
    padding-right: 10px;
    padding-left: 10px;
  }

  .guru-card,
  .guru-photo {
    width: var(--guru-mobile-card-width);
    min-width: var(--guru-mobile-card-width);
    max-width: var(--guru-mobile-card-width);
  }

  .guru-card {
    min-height: calc((100vw - 20px) * 1.25 + 120px);
  }

  .guru-photo,
  .featured .guru-photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .guru-card h3,
  .guru-card p {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .guru-card h3 {
    padding: 0 0.9rem;
    line-height: 1.08;
  }

  .guru-arrow {
    display: grid;
    width: 34px;
    font-size: 1.45rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }

  .guru-arrow-left {
    left: 2px;
  }

  .guru-arrow-right {
    right: 2px;
  }

  .feature-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .path-section {
    gap: 1rem;
    padding: 0.75rem 1.05rem 2rem;
    overflow: hidden;
  }

  .device-scene {
    justify-content: center;
    min-height: 300px;
    overflow: hidden;
  }

  .laptop {
    grid-template-columns: 86px 1fr;
    width: 500px;
    min-height: 242px;
    margin-left: 0;
    transform: scale(0.72);
    transform-origin: bottom center;
  }

  .laptop aside {
    display: flex;
  }

  .phone {
    right: auto;
    bottom: 14px;
    left: 50%;
    transform: translateX(40px) scale(0.72);
    transform-origin: bottom center;
  }

  .laptop-base {
    left: 50%;
    width: 520px;
    transform: translateX(-50%) scale(0.72);
    transform-origin: bottom center;
  }

  .benefit-grid {
    border-left: 0;
  }

  .benefit-grid article {
    border-right: 0;
  }

  .cta-copy {
    justify-content: flex-start;
    padding: 2rem 1rem 2.2rem;
  }

  .cta h2 {
    font-size: 2.65rem;
    line-height: 1.02;
  }

  .cta {
    display: block;
    height: auto;
    min-height: 0;
    max-height: none;
    background: #e8e8e8;
  }

  .cta-mobile-art {
    display: block;
    width: 100%;
    min-height: 280px;
    background:
      linear-gradient(180deg, rgba(232, 232, 232, 0) 66%, rgba(232, 232, 232, 0.96) 100%),
      var(--cta-mobile-bg, url("assets/cta-kashi-gate_mobile%20%26%20tablet.png")) center center / cover no-repeat;
  }

  .cta-ornament {
    width: 100%;
    margin-bottom: 0.7rem;
  }

  .cta-ornament b,
  .cta-divider span {
    font-size: 1.25rem;
  }

  .cta-divider {
    width: 100%;
    margin: 1rem 0 1.1rem;
  }

  .cta-copy > p {
    max-width: 340px;
    margin: 0 0 1.3rem;
    font-size: 1rem;
    line-height: 1.45;
  }

  .cta-buttons {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin-bottom: 1.4rem;
  }

  .cta-buttons .button {
    min-width: 0;
  }

  .cta-benefits {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    max-width: 360px;
  }

  .cta-benefits span {
    font-size: 2rem;
  }

  .cta-benefits article:nth-child(n + 2) span {
    font-size: 2.75rem;
  }

  .cta-benefits h3 {
    margin-top: 0.55rem;
    font-size: 1.05rem;
  }

  .cta-benefits p {
    margin-top: 0.35rem;
    font-size: 0.92rem;
  }

  .cta-benefits article {
    display: block;
    padding: 0 0 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cta-benefits article:last-child {
    border-bottom: 0;
  }

  .cta-art {
    min-height: 360px;
  }

  .static-page-hero img {
    height: 220px;
  }

  .static-page-body {
    width: calc(100% - 1.5rem);
    padding: 2.2rem 0 3rem;
  }

  .static-page-title {
    margin-bottom: 1.35rem;
  }

  .static-page-title h1 {
    font-size: clamp(3.15rem, 16vw, 4.5rem);
  }

  .static-content-box {
    padding: 1.15rem;
    border-radius: 6px;
  }

  .static-content-box p {
    line-height: 1.68;
  }
}
