@font-face {
  font-family: "TG Haido Grotesk";
  src: url("./assets/TGHaidoGrotesk-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TG Haido Grotesk";
  src: url("./assets/TGHaidoGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* --page-bg: #f4f8f6; */
  --page-bg: #fff;
  --ink: #101010;
  --muted: #202828;
  --green: #1c8b8a;
  --green-dark: #0f5955;
  --glass-white: rgba(217, 217, 217, 0.2);
  --glass-program: rgba(221, 221, 221, 0.5);
  --radius-xl: 40px;
  --radius-pill: 74px;
  --container: 1688px;
  --page-x: 20px;
  --gap: 35px;
  --font-main: "TG Haido Grotesk", sans-serif;
  --font-display: "TG Haido Grotesk", sans-serif;
  --shadow-soft: 0 28px 70px rgba(24, 48, 45, 0.08);
  --glass-blur: blur(18px);
}

html {
  scroll-behavior: smooth;
}

body {
  max-width: 1920px;
  margin: 0;
  margin-inline: auto;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.35;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.site {
  width: min(var(--container), calc(100% - var(--page-x) * 2));
  margin: 0 auto;
  padding: 40px 0 46px;
  isolation: isolate;
}

/* Buttons */

.button {
  display: inline-flex;
  min-width: 130px;
  min-height: 25px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 25.5px;
  padding: 4px 15px 5px;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary,
.button--ghost {
  background: rgba(28, 139, 138, 0.3);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.button--primary:hover,
.button--ghost:hover {
  background: rgba(28, 139, 138, 0.48);
}

.glass-register-btn {
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 273px;
  height: 51px;
  padding: 0 34px;

  border: none;
  border-radius: 25.5px;
  overflow: hidden;

  font-family: "TG Haido Grotesk", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;

  background: rgba(28, 139, 138, 0.3);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);


  cursor: pointer;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}


/* Внутренний стеклянный блик */
.glass-register-btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;

  border-radius: inherit;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.04) 45%,
      rgba(0, 0, 0, 0.08) 100%
    );

  pointer-events: none;
}

.glass-register-btn:hover {
  background: rgba(28, 139, 138, 0.42);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.16),
    0 12px 32px rgba(0, 0, 0, 0.2);
}

.glass-register-btn:active {
  transform: translateY(1px);
}

.glass-register-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

/* Мобильная адаптация */
@media (max-width: 767px) {
  .glass-register-btn {
    min-width: 190px;
    height: 42px;
    padding: 0 22px;

    border-radius: 21px;

    font-size: 15px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .wave-zone--program > .wave-zone__bg {
    top: 100px !important;
  }
  .card, .product-card {
    background: #eeeeee63;
  }
  .intro-panel {
    background: #ffffff63;
  }
  .card--wide {
    background: #ffffff63 !important;
  }
  .product-card {
    order: 1;
  }
  .card--composition {
    order: 2;
  }
    .button {
min-height: 40px;
        font-size: 14px;
        padding: 8px 14px;
        background-repeat: no-repeat;
        background-size: cover;
  }
  .cta {
    display: flex;
    flex-direction: column;
  }
}

/* Hero */

.hero {
  position: relative;
  min-height: 1000px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #111;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.35) 38%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28) 0%, transparent 50%);
}

.header {
  position: relative;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 32px 0;
}

.logo {
  display: inline-flex;
  width: 154px;
  flex: 0 0 auto;
}

.logo img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  width: 1069px;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 47px;
  border-radius: 152px;
  background: rgba(28, 140, 139, 0.3);
  color: #fff;
  font-family: var(--font-main);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.16);

  box-shadow:
    inset 0 1px 8px rgba(255, 255, 255, 0.14),
    inset 0 -8px 18px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.16);
}


.nav a {
  opacity: 0.92;
  transition: opacity 0.2s ease;
  line-height: 1.2;
}

.nav a:hover {
  opacity: 1;
}

.burger {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: rgba(28, 139, 138, 0.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 106px;
  right: 24px;
  z-index: 50;
  display: grid;
  width: min(360px, calc(100% - 48px));
  overflow: hidden;
  border-radius: 28px;
  background: rgba(13, 84, 77, 0.94);
  color: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

.mobile-menu.is-mounted {
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-menu.is-closing {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.mobile-menu__wave {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0d544d;
}

.mobile-menu__wave img,
.mobile-menu__wave video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-menu__wave img {
  opacity: 1;
}

.mobile-menu__wave video {
  opacity: 0;
  transition: opacity 0.18s ease;
}

.mobile-menu__wave video.is-ready.is-active {
  opacity: 1;
}

.mobile-menu__wave::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 84, 77, 0.62);
}

.mobile-menu__content {
  position: relative;
  z-index: 1;
  display: grid;
}

.mobile-menu a {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 18px;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

body.menu-open {
  overflow-x: clip;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(1000px - 120px);
  flex-direction: column;
  justify-content: space-between;
  padding: 79px 32px 68px;
  color: #fff;
}

.hero__eyebrow,
.hero__start {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-left: -10px;
}

.hero__eyebrow {
  font-size: clamp(92px, 10.7vw, 180px);
}

.hero__subtitle,
.hero__practice {
  margin: 28px 0 0;
  font-family: var(--font-main);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.06em;
}

.hero__subtitle {
  font-size: clamp(34px, 3.55vw, 60px);
}

.hero__lead {
  max-width: 727px;
  margin: 147px 0 0;
  font-family: var(--font-main);
  font-size: clamp(24px, 1.95vw, 33px);
  font-weight: 500;
  line-height: 1.21;
  letter-spacing: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.hero__actions .button {
  min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 51px;
    line-height: 1.2;
    vertical-align: middle;
}

.hero__actions .button:nth-child(2) {
  min-width: 173px;
}

.hero__bottom {
  padding-top: 90px;
}

.hero__start {
  font-size: clamp(74px, 7.7vw, 130px);
}

.hero__practice {
  margin-top: 24px;
  font-size: clamp(38px, 3.55vw, 60px);
}

/* Shared wave background */

html,
body {
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

.site {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.hero,
.daigo-hero {
  position: relative;
  z-index: 5;
}

.wave-zone {
  position: relative;
  z-index: 1;
  overflow: visible;
  isolation: isolate;
}

.wave-zone > section {
  position: relative;
  z-index: 2;
}

.wave-zone__bg {
  position: absolute;
  left: 50%;
  top: var(--wave-top, 0px);
  bottom: var(--wave-bottom, 0px);
  z-index: 0;
  width: 100vw;
  transform: translateX(-50%);
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

.wave-zone--program {
  --wave-top: 0px;
  --wave-bottom: -24px;
}

.wave-zone--about {
  --wave-top: -120px;
  --wave-bottom: -22px;
}

.wave-zone--axis {
  --wave-top: 0px;
  --wave-bottom: -26px;
}

.wave-zone__bg img,
.wave-zone__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  object-position: center center;
  opacity: 1;
}

.wave-zone__bg img {
  z-index: 1;
}

.wave-zone__bg video {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.wave-zone__bg video.is-ready.is-active {
  opacity: 1;
}

.wave-zone__bg video.is-hidden {
  display: none;
}

/* Intro panel */

.intro-panel {
  position: relative;
  min-height: 123px;
  margin-top: 35px;
  overflow: hidden;
  border-radius: var(--radius-pill);
background: rgba(255, 255, 255, 0.2);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 2px solid rgba(255, 255, 255, 0.37);
}

.notice {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 50px;
  height: 123px;
  padding: 14px;
}

.notice__icon,
.cta__icon {
  display: flex;
  width: 99px;
  height: 99px;
  padding: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: rgba(28, 140, 139, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.37);
  font-family: var(--font-main);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}
.notice img {
  width: 45px;
  height: 45px;
}

.notice h2 {
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0;
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 400;
  line-height: 1.36;
  text-transform: uppercase;
  letter-spacing: 0;
}

.notice p {
  margin: 2px 0 0;
  color: #000;
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 400;
  line-height: 2.23;
}

/* Cards */

.cards {
  display: grid;
  gap: 35px;
  margin-top: 32px;
}

.cards--program {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
background: rgba(255, 255, 255, 0.2);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.37);
}

.card {
  min-height: 410px;
}

.card__content {
  position: relative;
  z-index: 2;
  padding: 43px 42px 39px;
}

.card h3 {
  font-family: "Montserrat", Arial, sans-serif;
  max-width: 476px;
  margin: 0;
  color: #101010;
  font-size: clamp(30px, 2.08vw, 35px);
  font-weight: 400;
  line-height: 1.14;
  text-transform: uppercase;
  letter-spacing: 0;
}

.card p {
  margin: 42px 0 0;
  color: #101010;
  font-family: var(--font-main);
  font-size: clamp(18px, 1.31vw, 22px);
  font-weight: 300;
  line-height: 1.23;
}

.card__list-title {
  font-family: 'Open Sans' sans-serif !important;
  margin-top: 38px !important;
  font-weight: 500 !important;
}

.card ul,
.card ol {
  margin: 8px 0 0;
  padding-left: 27px;
  color: #101010;
  font-family: var(--font-main);
  font-size: clamp(18px, 1.31vw, 22px);
  font-weight: 300;
  line-height: 1.32;
}

.card li + li {
  margin-top: 5px;
}

.card--wide {
  min-height: 401px;
  background: var(--glass-white);
}

.card--wide .card__content {
  padding: 43px 43px 40px;
}

.card--wide p {
  margin-top: 43px;
}

.card--wide p + p {
  margin-top: 32px;
}

.card--composition {
  min-height: 360px;
  background: var(--glass-program);
}

.card--composition .card__content {
  padding: 43px 48px 36px;
}

.card--composition p {
  margin-top: 32px;
}

.strains {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px 46px;
  margin-top: 24px !important;
  padding-left: 20px !important;
  font-size: clamp(16px, 1.25vw, 21px) !important;
  line-height: 1.25 !important;
}

/* CTA */

.cta {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 123px;
  margin-top: 51px;
  padding: 12px;
  padding-right: 40px;
  border-radius: var(--radius-pill);

  background-image: url("assets/bg-notice.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.37);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background: rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(5px);

  pointer-events: none;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta__title {
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0;
  color: #101010;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 400;
  line-height: 1.36;
  text-transform: uppercase;
  letter-spacing: 0;
}

.cta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0;
  padding: 0;
  color: #101010;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 400;
  line-height: 2.23;
  list-style: none;
}

.cta li::before {
  content: "•";
  margin-right: 8px;
}

.cta__button {
  min-width: 240px;
  min-height: 51px;
  font-size: 20px;
  color: #fff;
  padding-inline: 24px;
  background-image: url(./assets/btn.png);
  background-position: center center;
}
.cta__button:hover {
  opacity: 0.86;
}
/* Daigo banner */

.daigo-hero {
  position: relative;
  min-height: 480px;
  margin-top: 55px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #111;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.daigo-hero > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.daigo-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.02) 100%);
}

.daigo-hero__content {
  position: relative;
  z-index: 2;
  padding: 147px 32px 82px;
  color: #fff;
}

.daigo-hero__content p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(78px, 7.7vw, 130px);
  font-weight: 400;
  line-height: 0.72;
  text-transform: uppercase;
  letter-spacing: 0;
}

.daigo-hero__content h2 {
  max-width: 830px;
  margin: 34px 0 0;
  font-family: var(--font-main);
  font-size: clamp(38px, 3.55vw, 60px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.06em;
}

/* Composition */

.composition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 510px;
  gap: 35px;
  margin-top: 32px;
}

.product-card {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 0px;
  background: var(--glass-program);
}

.product-card__image {
  position: relative;
  z-index: 2;
    width: auto;
    height: 100%;
    object-fit: cover;
}

/* Axis */

.axis {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 35px;
  margin-top: 52px;
}

.axis__image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.axis__image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.card--axis {
  min-height: 360px;
  background: var(--glass-white);
}

.card--axis .card__content {
  padding: 43px 44px 38px;
}

.card--axis p {
  margin-top: 30px;
}

.card--axis p + p {
  margin-top: 27px;
}

.cta--footer {
  margin-top: 52px;
}

/* Responsive */

@media (max-width: 1480px) {
  :root {
    --page-x: 16px;
    --gap: 24px;
  }

  .site {
    padding-top: 28px;
  }

  .hero {
    min-height: 860px;
  }

  .hero__content {
    min-height: calc(860px - 116px);
    padding-top: 64px;
  }

  .nav {
    width: min(860px, 72vw);
    min-height: 64px;
    padding: 0 34px;
    font-size: 20px;
  }

  .hero__lead {
    margin-top: 110px;
  }

  .notice,
  .cta {
    gap: 20px;
  }
  .notice p {
    font-size: 15px;
    line-height: 1.5;
  }
  .cta ul {
    font-size: 14px;
  }
  .cta__button {
    min-width: 220px;
    padding-bottom: 8px;
    min-height: 55px;
    background-repeat: no-repeat;
    font-size: 16px;
    color: #fff;
  }
  .notice__icon, .cta__icon {
    width: 72px;
    height: 72px;
    padding: 12px;
  }

  .card__content,
  .card--wide .card__content,
  .card--composition .card__content,
  .card--axis .card__content {
    padding: 34px 34px 32px;
  }

  .composition {
    grid-template-columns: minmax(0, 1fr) 400px;
  }
}

@media (max-width: 1180px) {
  .hero {
    min-height: 780px;
  }

  .hero__content {
    min-height: calc(780px - 100px);
  }

  .header {
    padding: 28px 24px 0;
  }

  .nav {
    gap: 26px;
    width: min(760px, 70vw);
    font-size: 17px;
  }

  .cards--program,
  .cards--two {
    grid-template-columns: 1fr;
  }
  .axis__image {
    background: transparent !important;
     box-shadow: none !important;
  }

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

  .product-card__image {
    width: min(100%, 520px);
  }


}

@media (max-width: 900px) {
  :root {
    --page-x: 10px;
    --radius-xl: 26px;
    --radius-pill: 34px;
  }

  .site {
    padding-top: 10px;
  }

  .hero {
    min-height: 720px;
  }

  .header {
    padding: 20px 18px 0;
  }

  .logo {
    width: 112px;
  }

  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .hero__content {
    min-height: calc(720px - 70px);
    padding: 52px 18px 38px;
  }

  .hero__lead {
    margin-top: 72px;
    max-width: 520px;
  }

  .hero__bottom {
    padding-top: 64px;
  }

    .composition,
  .axis {
    grid-template-columns: 1fr;
  }
  .product-card {
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 0px;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border: none;
    margin-bottom: 40px;
}

  .intro-panel,
  .cards,
  .cta,
  .daigo-hero,
  .composition,
  .axis {
    margin-top: 20px;
  }

  .notice,
  .cta {
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
  }

  .notice__icon,
  .cta__icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
    box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.18);
  }

  .notice h2,
  .cta__title {
    font-size: 22px;
  }

  .notice p,
  .cta ul {
    font-size: 14px;
    line-height: 1.45;
  }

  .card {
    min-height: auto;
  }

  .card h3 {
    font-size: 26px;
  }

  .card p,
  .card ul,
  .card ol {
    font-size: 16px;
  }

  .card p,
  .card__list-title,
  .card--wide p,
  .card--composition p,
  .card--axis p {
    margin-top: 22px !important;
  }

  .cta {
    grid-template-columns: auto 1fr;
  }

  .cta__button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .daigo-hero {
    min-height: 200px;
  }

  .daigo-hero__content {
    padding: 60px 22px 60px;
  }

  .wave-zone--program {
    --wave-top: 0px;
    --wave-bottom: -16px;
  }

  .wave-zone--about {
    --wave-top: -40px;
    --wave-bottom: -16px;
  }

  .wave-zone--axis {
    --wave-top: 0px;
    --wave-bottom: -16px;
  }
}

@media (max-width: 560px) {
  .wave-zone__bg img, .wave-zone__bg video {
    height: 500px;
  }
  .notice {
    height: auto;
  }
  .hero {
    min-height: 650px;
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.36)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent 45%);
  }

  .mobile-menu {
    top: 76px;
    right: 12px;
  }

  .hero__content {
    min-height: calc(650px - 70px);
    padding-top: 44px;
  }

  .hero__eyebrow {
    font-size: clamp(50px, 16vw, 72px);
    line-height: 0.82;
  }
  .hero__eyebrow, .hero__start {
    margin-left: -4px;
  }

  .hero__subtitle {
    margin-top: 16px;
    font-size: 20px;
    letter-spacing: 0.04em;
  }

  .hero__lead {
    margin-top: 60px;
    font-size: 18px;
  }

  .hero__actions {
    align-items: flex-start;
    gap: 8px;
    margin-top: 22px;
  }

  .hero__start {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.9;
  }

  .hero__practice {
    margin-top: 14px;
    font-size: 21px;
    letter-spacing: 0.04em;
  }

  .notice {
    display: block;
  }

  .notice__icon {
    margin-bottom: 8px;
  }

  .notice h2,
  .cta__title {
    font-size: 17px;
    line-height: 1.25;
  }

  .card__content,
  .card--wide .card__content,
  .card--composition .card__content,
  .card--axis .card__content {
    padding: 26px 20px 24px;
  }

  .card h3 {
    font-size: 24px;
  }

  .strains {
    grid-template-columns: 1fr;
    font-size: 16px !important;
  }

  .daigo-hero > img {
    object-position: 63% center;
  }

  .daigo-hero__content p {
    font-size: 52px;
  }

  .daigo-hero__content h2 {
    margin-top: 18px;
    font-size: 24px;
    letter-spacing: 0.04em;
  }

  .axis__image img {
    min-height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .wave-zone__bg video {
    display: none;
  }
}


.glass-nav {
  position: relative;
  overflow: hidden;

  padding-top: 8px;
  padding-bottom: 18px;
  padding-inline: 18px;
  border-radius: 64px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(28, 139, 138, 0.30) 22%,
      rgba(28, 139, 138, 0.24) 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(1px) saturate(100%);
  -webkit-backdrop-filter: blur(1px) saturate(100%);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10);

  color: rgba(255, 255, 255, 0.96);
}

.glass-nav::before,
.glass-nav::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.glass-nav::before {
  width: 20px;
  height: 50px;
  left: -10px;
  top: -10px;

  background: rgba(255, 255, 255, 0.36);
  filter: blur(30px);
}
.glass-nav::after {
  width: 20px;
  height: 50px;
  right: -30px;
  bottom: -30px;

  background: rgba(255, 255, 255, 0.20);
  filter: blur(30px);
}