@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, p, ul, ol, dl, dd, figure {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

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

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

button {
  border: 0;
}

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

:root {
  color-scheme: light;
  font-synthesis: none;
}

html {
  overflow-x: clip;
}

body {
  min-width: 320px;
  overflow-x: clip;
  color: #253642;
  background: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

[class*=eyebrow], [class*=category], .global-nav, .site-footer, .home-hero__scroll, .page-hero, .breadcrumb {
  font-style: normal;
}

body.is-menu-open {
  overflow: hidden;
}

h1, h2, h3 {
  color: #075680;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.home-hero h1, .support h2, .products-cta h2 {
  color: #fff;
}

p {
  text-wrap: pretty;
}

.container {
  width: min(100% - 64px, 1200px);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .container {
    width: calc(100% - 40px);
  }
}

.section {
  padding-block: clamp(96px, 11vw, 168px);
}

.only-pc {
  display: inline;
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 1.85;
  }
  .section {
    padding-block: 64px;
  }
  .only-pc {
    display: none;
  }
}
.site-header {
  position: absolute;
  z-index: 50;
  inset: 0 0 auto;
  height: 96px;
  color: #fff;
  transition: background 0.35s, color 0.35s, box-shadow 0.35s;
}

.site-header.is-scrolled {
  position: fixed;
  color: #253642;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(7, 51, 77, 0.1);
  backdrop-filter: blur(12px);
}

.site-header--solid {
  position: relative;
  color: #253642;
  background: #fff;
  border-bottom: 1px solid #d7e3e9;
}

.site-header--solid.is-scrolled {
  position: fixed;
}

.site-header__inner {
  display: flex;
  align-items: center;
  width: min(100% - 56px, 1440px);
  height: 100%;
  margin-inline: auto;
}

.site-header__logo {
  width: 196px;
  padding: 0;
  background: transparent;
}

.site-header__logo img {
  width: 100%;
  height: auto;
}

.site-header:not(.site-header--solid):not(.is-scrolled) .site-header__logo img {
  filter: brightness(0) invert(1);
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 42px);
  margin-left: auto;
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.global-nav__list a {
  position: relative;
  display: block;
  padding-block: 12px;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.global-nav__list a::after {
  position: absolute;
  right: 100%;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.global-nav__list a:hover::after, .global-nav__list a[aria-current=page]::after {
  right: 0;
}

.global-nav__list small {
  display: none;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.global-nav__contact {
  display: none;
}

.menu-button {
  display: none;
}

@media (max-width: 1023px) {
  .site-header {
    height: 76px;
  }
  .is-menu-open .site-header,
  .is-menu-open .site-header.is-scrolled,
  .is-menu-open .site-header.site-header--solid {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    color: #253642;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
  }
  .is-menu-open .site-header__logo img,
  .is-menu-open .site-header:not(.site-header--solid):not(.is-scrolled) .site-header__logo img {
    filter: none;
  }
  .site-header__inner {
    width: calc(100% - 40px);
  }
  .site-header__logo {
    width: 164px;
  }
  .menu-button {
    display: flex;
    position: relative;
    z-index: 3;
    align-items: center;
    gap: 12px;
    min-width: 68px;
    min-height: 48px;
    margin-left: auto;
    color: inherit;
    background: transparent;
    font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
    font-size: 14px;
    letter-spacing: 0.08em;
    cursor: pointer;
  }
  .menu-button__icon, .menu-button__icon::before, .menu-button__icon::after {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 0.3s, opacity 0.3s;
  }
  .menu-button__icon::before {
    transform: translateY(-7px);
  }
  .menu-button__icon::after {
    transform: translateY(6px);
  }
  .menu-button[aria-expanded=true] .menu-button__icon {
    background: transparent;
  }
  .menu-button[aria-expanded=true] .menu-button__icon::before {
    transform: translateY(0) rotate(45deg);
  }
  .menu-button[aria-expanded=true] .menu-button__icon::after {
    transform: translateY(-1px) rotate(-45deg);
  }
  .global-nav {
    visibility: hidden;
    position: fixed;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    overflow-y: auto;
    display: block;
    padding: 96px 20px 32px;
    color: #253642;
    background: #fff;
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 0.3s, opacity 0.3s, transform 0.3s;
    overscroll-behavior: contain;
  }
  .is-menu-open .global-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .global-nav__list {
    display: block;
    border-top: 1px solid #d7e3e9;
  }
  .global-nav__list li {
    border-bottom: 1px solid #d7e3e9;
  }
  .global-nav__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 10px 4px;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
  }
  .global-nav__list a::after {
    display: none;
  }
  .global-nav__list small {
    display: block;
    color: #657985;
    font-size: 14px;
    font-weight: 400;
  }
  .global-nav__contact {
    display: none;
  }
}
.exploration-reset {
  order: 3;
  min-height: 44px;
  margin-left: clamp(16px, 2vw, 32px);
  padding: 6px 14px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .exploration-reset {
    position: relative;
    z-index: 3;
    order: 0;
    min-height: 44px;
    margin-left: auto;
    padding-inline: 10px;
    font-size: 12px;
  }
  .menu-button {
    margin-left: 8px;
  }
}
@media (max-width: 767px) {
  .site-header__logo {
    width: 120px;
  }
  .menu-button {
    min-width: 48px;
    gap: 0;
  }
  .menu-button__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
}
.site-footer {
  padding-top: 82px;
  color: rgba(255, 255, 255, 0.76);
  background: #07334d;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 7vw;
  padding-bottom: 72px;
}

.site-footer__logo {
  display: block;
  width: 220px;
  padding: 0;
  background: transparent;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer__top > div:first-child > p {
  margin-top: 22px;
  font-size: 14px;
}

.site-footer nav li + li {
  margin-top: 10px;
}

.site-footer nav a {
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.site-footer nav a:hover {
  color: #fff;
}

.site-footer__shop > p {
  color: #fff;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 22px;
}

.site-footer address {
  margin-block: 14px 18px;
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}

.site-footer__shop a {
  min-height: 44px;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
}

.site-footer__shop > a {
  display: none;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 64px;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-bottom: 54px;
  }
  .site-footer nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
  .site-footer nav li + li {
    margin-top: 0;
  }
  .site-footer nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  .site-footer__bottom {
    gap: 20px;
    font-size: 14px;
  }
}
.site-footer__bottom small span {
  display: block;
  margin-top: 4px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .site-footer__bottom {
    align-items: flex-start;
  }
  .site-footer__bottom small {
    flex: 1;
  }
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #0878b8;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.8);
}

.section-heading h2 {
  margin-top: 18px;
  font-size: clamp(30px, 3.2vw, 44px);
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 62px;
}

.section-heading--row > p {
  max-width: 420px;
  color: #657985;
}

.section-heading--side {
  position: relative;
}

.section-heading--side .circle-link {
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 220px;
  min-height: 54px;
  padding: 8px 10px 8px 22px;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(7, 51, 77, 0.18);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.button:hover {
  box-shadow: 0 14px 30px rgba(7, 51, 77, 0.24);
  transform: translateY(-2px);
}

.button__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover .button__icon {
  transform: translateX(3px);
}

.button--white {
  color: #07334d;
  background: #fff;
}

.button--white .button__icon {
  color: #fff;
  background: #0878b8;
}

.button--outline {
  border-color: #075680;
  color: #075680;
  background: transparent;
}

.button--outline .button__icon {
  color: #fff;
  background: #075680;
}

.button--outline:hover {
  color: #fff;
  background: #075680;
}

.button--primary {
  color: #fff;
  background: #0878b8;
}

.button--primary .button__icon {
  color: #0878b8;
  background: #fff;
}

.button--primary:hover {
  background: #075680;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  color: #075680;
  font-size: 15px;
}

.text-link--light {
  color: #fff;
}

.circle-link {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #075680;
  border-radius: 50%;
  color: #075680;
  transition: color 0.3s, background 0.3s, transform 0.3s;
}

.circle-link:hover {
  color: #fff;
  background: #075680;
  transform: translateX(3px);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(92px, 10vw, 150px);
  background-color: #f2f8fc;
  background-image: radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.9) 0 7px, transparent 8px), radial-gradient(circle at 88% 34%, rgba(8, 120, 184, 0.08) 0 13px, transparent 14px), linear-gradient(135deg, #fff, transparent 52%);
}

.page-hero__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.page-hero h1 {
  margin-top: 18px;
  font-size: clamp(42px, 5vw, 68px);
}

.page-hero__inner > p {
  max-width: 480px;
  color: #657985;
}

.page-hero__circle {
  position: absolute;
  right: -9vw;
  bottom: -24vw;
  width: 36vw;
  height: 36vw;
  border: 1px solid rgba(8, 120, 184, 0.14);
  border-radius: 50%;
}

.breadcrumb {
  padding-block: 30px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #657985;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
}

.breadcrumb li + li::before {
  margin-right: 10px;
  content: "/";
}

@media (max-width: 767px) {
  .section-heading--row, .page-hero__inner {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }
  .section-heading--row {
    margin-bottom: 42px;
  }
  .button {
    width: 100%;
    min-width: 0;
  }
  .page-hero {
    padding-block: 76px 84px;
  }
  .page-hero h1 {
    font-size: 40px;
  }
}
.product-grid {
  display: grid;
}

.product-card {
  min-width: 0;
}

.product-card a {
  display: block;
  height: 100%;
}

.product-card__image {
  overflow: hidden;
  background: #f2f8fc;
  box-shadow: 0 18px 50px rgba(7, 51, 77, 0.11);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card__body {
  position: relative;
  min-width: 0;
  padding: 24px 62px 22px 0;
  border-bottom: 1px solid #d7e3e9;
}

.product-card__category {
  color: #0878b8;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.product-card h3 {
  margin-top: 7px;
  font-size: clamp(20px, 2vw, 25px);
}

.product-card__body > p:not(.product-card__category, .product-card__price) {
  margin-top: 7px;
  color: #657985;
  font-size: 14px;
}

.product-card .circle-link {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 42px;
  height: 42px;
}

.product-card__price {
  margin-top: 12px;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 17px;
}

.product-card__price small {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
}

.product-card[hidden] {
  display: none;
}

.home-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: clamp(650px, 52vw, 790px);
  padding: 150px max(5vw, 32px) 86px;
  color: #fff;
  background: #07334d;
}

.home-hero__image, .home-hero__shade {
  position: absolute;
  inset: 0;
}

.home-hero__image {
  background: url("../images/hero-aquarium.jpg") center 48%/cover no-repeat;
  transform: scale(1.01);
}

.home-hero__shade {
  background: linear-gradient(90deg, rgba(2, 25, 42, 0.74) 0%, rgba(2, 25, 42, 0.24) 58%, rgba(2, 25, 42, 0.06) 100%), linear-gradient(0deg, rgba(2, 25, 42, 0.34), transparent 45%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1200px);
  margin-inline: auto;
}

.home-hero h1 {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(48px, 5.2vw, 70px);
  line-height: 1.32;
  letter-spacing: 0.06em;
}

.home-hero__lead {
  max-width: 720px;
  margin-top: 26px;
  line-height: 1.9;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-top: 38px;
}

.home-hero__scroll {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.home-hero__scroll i {
  display: block;
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.72);
}

.news {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.news::after {
  position: absolute;
  top: 16%;
  right: 4%;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(8, 120, 184, 0.12);
  border-radius: 50%;
  box-shadow: -52px 92px 0 -26px rgba(8, 120, 184, 0.08), 32px 146px 0 -18px rgba(8, 120, 184, 0.07);
  content: "";
  pointer-events: none;
}

.news__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(52px, 7vw, 104px);
}

.news__list {
  border-top: 1px solid #d7e3e9;
}

.news-item {
  display: grid;
  grid-template-columns: 128px 132px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 88px;
  border-bottom: 1px solid #d7e3e9;
}

.news-item time {
  color: #657985;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.news-item__tag {
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 9px;
  color: #0878b8;
  border-left: 2px solid #0878b8;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.news-item h3 {
  color: #253642;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.news-item a {
  display: flex;
  align-items: center;
  min-height: 52px;
  transition: color 0.2s;
}

.news-item a:hover {
  color: #0878b8;
}

.arrivals {
  position: relative;
  overflow: hidden;
  background-color: #f2f8fc;
  background-image: radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.85) 0 5px, transparent 6px), radial-gradient(circle at 92% 72%, rgba(8, 120, 184, 0.07) 0 9px, transparent 10px), linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 48%);
}

.arrivals::before {
  position: absolute;
  top: 70px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(8, 120, 184, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.6);
  content: "";
}

.arrivals::after {
  position: absolute;
  bottom: 12%;
  left: 3%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(8, 120, 184, 0.12);
  border-radius: 50%;
  box-shadow: 42px -62px 0 -13px rgba(8, 120, 184, 0.08), 86px 10px 0 -18px rgba(8, 120, 184, 0.09);
  content: "";
}

.product-grid--featured {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 72px 36px;
}

.product-grid--featured .product-card {
  grid-column: span 5;
}

.product-grid--featured .product-card:nth-child(4n+1), .product-grid--featured .product-card:nth-child(4n) {
  grid-column: span 7;
}

.product-grid--featured .product-card__image {
  aspect-ratio: 1.48;
}

.product-grid--featured .product-card:nth-child(even) {
  margin-top: 72px;
}

.product-grid--featured .product-card--large, .product-grid--featured .product-card--wide {
  grid-row: auto;
}

.product-grid--featured .product-card--large .product-card__image, .product-grid--featured .product-card--wide .product-card__image {
  height: auto;
  min-height: 0;
  aspect-ratio: 1.48;
}

.product-grid--featured .product-card--wide a {
  display: block;
}

.support {
  position: relative;
  overflow: hidden;
  padding-block: clamp(110px, 12vw, 180px);
  color: #fff;
  background: #075680;
}

.support__shape {
  position: absolute;
  right: -12vw;
  bottom: -20vw;
  width: 46vw;
  height: 46vw;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.support__shape::before, .support__shape::after {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  content: "";
}

.support__shape::after {
  inset: 25%;
}

.support__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.support__image {
  position: relative;
  margin-left: min(-7vw, -48px);
}

.support__image::after {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.32);
  content: "";
}

.support__image img {
  width: 100%;
  aspect-ratio: 1.38;
  -o-object-fit: cover;
     object-fit: cover;
}

.support__image figcaption {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.support__index {
  position: absolute;
  bottom: -48px;
  left: 0;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.support__content {
  position: relative;
  z-index: 1;
}

.support__content h2 {
  margin-top: 22px;
  font-size: clamp(32px, 3.6vw, 48px);
}

.support__content > p:not(.eyebrow) {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
}

.support__points {
  margin-block: 30px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.support__points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding-block: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.support__points li > span {
  padding-top: 2px;
  color: #86ddff;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.support__points h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.support__points p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.about {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.about::before {
  position: absolute;
  top: 12%;
  left: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(8, 120, 184, 0.09);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(220, 239, 247, 0.35);
  content: "";
}

.about__layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.about__content h2 {
  margin-top: 22px;
  font-size: clamp(36px, 4vw, 52px);
}

.about__content > p:not(.eyebrow) {
  margin-top: 28px;
  color: #657985;
}

.about__content .text-link {
  margin-top: 32px;
}

.about__gallery {
  position: relative;
  min-height: 670px;
}

.about__image {
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__image--main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 68%;
}

.about__image--sub {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  height: 43%;
  border: 12px solid #fff;
}

.about__caption {
  position: absolute;
  right: 1%;
  bottom: 15%;
  color: #657985;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.about__caption span {
  color: #0878b8;
}

.members {
  padding-block: 0 clamp(100px, 12vw, 170px);
}

.members__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding: clamp(58px, 7vw, 96px);
  background: linear-gradient(135deg, #f7fcff, #dceff7);
  box-shadow: 0 30px 80px rgba(7, 51, 77, 0.08);
}

.members__panel::after {
  position: absolute;
  top: -110px;
  left: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(8, 120, 184, 0.14);
  border-radius: 50%;
  content: "";
}

.members__heading {
  position: relative;
  z-index: 1;
}

.members__heading h2 {
  margin-top: 18px;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.members__heading > p:not(.eyebrow) {
  margin-top: 24px;
  color: #657985;
}

.members__heading .members__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: #0878b8;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.members__status::before {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

.members__benefits {
  border-top: 1px solid #d7e3e9;
}

.members__benefits > div {
  display: grid;
  grid-template-columns: 54px 150px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 80px;
  border-bottom: 1px solid #d7e3e9;
}

.members__benefits span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(8, 120, 184, 0.28);
  border-radius: 50%;
  color: #0878b8;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.members__benefits h3 {
  font-size: 18px;
}

.members__benefits p {
  color: #657985;
  font-size: 15px;
}

.members__panel > .button {
  grid-column: 2;
  justify-self: start;
}

.shop {
  background: #fff;
}

.shop__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.shop__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop__info {
  padding: clamp(38px, 5vw, 72px);
  background: #f2f8fc;
}

.shop__name {
  padding-bottom: 22px;
  border-bottom: 1px solid #d7e3e9;
  color: #07334d;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 28px;
}

.shop__name small {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.shop__info dl {
  margin-block: 22px 30px;
}

.shop__info dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding-block: 10px;
  border-bottom: 1px solid #d7e3e9;
}

.shop__info dt {
  color: #657985;
  font-size: 14px;
}

.shop__info dd {
  font-size: 15px;
}

@media (max-width: 900px) {
  .product-grid--featured {
    grid-template-columns: 1fr 1fr;
    gap: 56px 24px;
  }
  .product-grid--featured .product-card, .product-grid--featured .product-card:nth-child(4n+1), .product-grid--featured .product-card:nth-child(4n) {
    grid-column: auto;
  }
  .product-grid--featured .product-card:nth-child(even) {
    margin-top: 36px;
  }
  .product-grid--featured .product-card--large {
    grid-row: auto;
  }
  .product-grid--featured .product-card--large .product-card__image {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.25;
  }
  .product-grid--featured .product-card--wide {
    grid-column: auto;
  }
  .product-grid--featured .product-card--wide a {
    display: block;
  }
  .support__layout, .about__layout {
    grid-template-columns: 1fr;
  }
  .support__image {
    width: 86%;
    margin-left: -32px;
  }
  .about__content {
    max-width: 620px;
  }
  .about__gallery {
    min-height: 620px;
  }
  .members__panel {
    grid-template-columns: 1fr;
  }
  .members__panel > .button {
    grid-column: 1;
  }
}
@media (max-width: 767px) {
  .section-heading--side {
    display: block;
  }
  .section-heading--side .circle-link {
    margin-top: 42px;
  }
}
@media (max-width: 767px) {
  .home-hero {
    min-height: 620px;
    padding: 120px 20px 62px;
  }
  .home-hero__image {
    background-position: 52% center;
  }
  .home-hero__shade {
    background: linear-gradient(90deg, rgba(2, 25, 42, 0.76), rgba(2, 25, 42, 0.14)), linear-gradient(0deg, rgba(2, 25, 42, 0.45), transparent 55%);
  }
  .home-hero h1 {
    font-size: 36px;
  }
  .home-hero__lead {
    margin-top: 20px;
  }
  .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }
  .home-hero__actions .text-link {
    width: -moz-fit-content;
    width: fit-content;
  }
  .home-hero__scroll {
    display: none;
  }
  .news__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .section-heading--side {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }
  .section-heading--side .circle-link {
    margin: 0;
  }
  .news-item {
    grid-template-columns: 112px 1fr;
    gap: 6px 12px;
    padding-block: 17px;
  }
  .news-item time {
    font-size: 14px;
  }
  .news-item h3 {
    grid-column: 1/-1;
    font-size: 16px;
  }
  .news-item a {
    min-height: 44px;
  }
  .product-grid--featured {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .product-grid--featured .product-card:nth-child(even) {
    margin-top: 0;
  }
  .product-grid--featured .product-card__image, .product-grid--featured .product-card--wide .product-card__image {
    aspect-ratio: 1.35;
  }
  .support {
    padding-block: 64px;
  }
  .support__layout {
    gap: 46px;
  }
  .support__image {
    width: 100%;
    margin-left: 0;
  }
  .support__image::after {
    display: none;
  }
  .support__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .support__image figcaption {
    margin-top: 12px;
  }
  .support__index {
    position: static;
    display: block;
    margin-top: 8px;
  }
  .support__content h2 {
    font-size: 30px;
  }
  .support__points li {
    grid-template-columns: 36px 1fr;
  }
  .about__layout {
    gap: 54px;
  }
  .about__content h2 {
    font-size: 36px;
  }
  .about__gallery {
    min-height: 450px;
  }
  .about__image--main {
    width: 88%;
    height: 67%;
  }
  .about__image--sub {
    width: 58%;
    height: 42%;
    border-width: 8px;
  }
  .about__caption {
    right: -8px;
    bottom: 10%;
  }
  .members {
    padding-bottom: 72px;
  }
  .members__panel {
    width: 100%;
    padding: 52px 20px;
  }
  .members__benefits > div {
    grid-template-columns: 42px 1fr;
    padding-block: 16px;
  }
  .members__benefits p {
    grid-column: 2;
  }
  .members__panel > .button {
    width: 100%;
  }
  .shop__layout {
    grid-template-columns: 1fr;
  }
  .shop__image img {
    min-height: 0;
    aspect-ratio: 1.2;
  }
  .shop__info {
    padding: 34px 20px;
  }
}
.category-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: -28px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(7, 51, 77, 0.08);
}

.category-nav button {
  flex: 1;
  min-height: 56px;
  padding: 8px 12px;
  color: #657985;
  background: transparent;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.25s, background 0.25s;
}

.category-nav button:hover, .category-nav button.is-active {
  color: #fff;
  background: #075680;
}

.products-list {
  position: relative;
  overflow: hidden;
  padding-top: clamp(100px, 10vw, 150px);
}

.products-list::before {
  position: absolute;
  z-index: -1;
  top: 22%;
  left: -90px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(8, 120, 184, 0.09);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(220, 239, 247, 0.35);
  content: "";
}

.products-list__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 44px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d7e3e9;
}

.products-list__heading h2 {
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: clamp(28px, 3vw, 38px);
}

.products-list__heading p {
  color: #657985;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.product-grid--catalog {
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 28px;
}

.product-grid--catalog .product-card__image {
  aspect-ratio: 1.24;
}

.products-list__empty {
  padding: 60px 0;
  text-align: center;
}

.products-cta {
  padding-block: clamp(90px, 10vw, 140px);
  color: #fff;
  background: #075680;
}

.products-cta__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr auto;
  align-items: end;
  gap: 60px;
}

.products-cta h2 {
  margin-top: 20px;
  font-size: clamp(30px, 3.3vw, 43px);
}

.products-cta__inner > p {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 900px) {
  .product-grid--catalog {
    grid-template-columns: 1fr 1fr;
  }
  .products-cta__inner {
    grid-template-columns: 1fr 1fr;
  }
  .products-cta__inner .button {
    grid-column: 2;
  }
}
.category-nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-nav button {
  min-width: 0;
}

.products-cta__inner {
  align-items: center;
}

.products-cta h2 span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .category-nav {
    grid-template-columns: 1fr 1fr;
    overflow: visible;
  }
  .category-nav button {
    padding-inline: 6px;
    font-size: 12px;
  }
  .products-cta h2 {
    font-size: clamp(23px, 6.4vw, 30px);
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .category-nav {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: -18px;
  }
  .category-nav button {
    min-height: 50px;
  }
  .product-grid--catalog {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .product-grid--catalog .product-card__image {
    aspect-ratio: 1.35;
  }
  .products-cta__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .products-cta__inner .button {
    grid-column: 1;
  }
}
.detail {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(56px, 8vw, 120px);
  padding-block: 30px clamp(64px, 7vw, 96px);
}

.detail__visual img {
  width: 100%;
  height: clamp(360px, 38vw, 500px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.detail__visual > p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  color: #657985;
  font-size: 14px;
}

.detail__visual > p span {
  color: #0878b8;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.1em;
}

.detail__content {
  padding-top: 20px;
}

.detail__content h1 {
  margin-top: 18px;
  font-size: clamp(34px, 4vw, 52px);
}

.detail__price {
  margin-top: 20px;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 25px;
}

.detail__price small {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
}

.detail__lead {
  margin-top: 28px;
  color: #657985;
}

.detail__specs {
  margin-block: 30px;
  border-top: 1px solid #d7e3e9;
}

.detail__specs > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding-block: 11px;
  border-bottom: 1px solid #d7e3e9;
}

.detail__specs dt {
  color: #657985;
  font-size: 14px;
}

.detail__specs dd {
  font-size: 15px;
}

.detail__note {
  margin-bottom: 30px;
  padding: 16px;
  background: #f2f8fc;
  font-size: 14px;
}

.care {
  background: #f2f8fc;
}

.care__inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10vw;
}

.care h2 {
  margin-top: 18px;
  font-size: clamp(30px, 3.2vw, 42px);
}

.care__body > p {
  font-size: 16px;
}

.care__body ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: #d7e3e9;
}

.care__body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 26px 22px;
  background: #fff;
  font-size: 14px;
}

.care__body li::before {
  flex: 0 0 auto;
  color: #0878b8;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  content: "●";
}

.detail-back {
  padding-block: 48px 96px;
}

.detail__content > .button {
  display: none;
}

@media (max-width: 900px) {
  .detail {
    grid-template-columns: 1fr;
  }
  .care__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}
@media (max-width: 767px) {
  .detail {
    gap: 42px;
    padding-top: 10px;
    padding-bottom: 64px;
  }
  .detail__visual img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .detail__visual > p {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }
  .detail__content h1 {
    font-size: 34px;
  }
  .care__body ul {
    grid-template-columns: 1fr;
  }
  .care__body li {
    min-height: 0;
  }
}
.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: #fff;
  background: #07334d;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid #36b9f5;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.has-reveal [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.home-hero__image {
  animation: none !important;
}

.news-item--anomaly {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.exploration-reset {
  order: 3;
  min-height: 44px;
  margin-left: clamp(16px, 2vw, 32px);
  padding: 6px 14px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.site-footer__bottom small span {
  display: block;
  margin-top: 4px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

.category-nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-nav button {
  min-width: 0;
}

.products-cta__inner {
  align-items: center;
}

.products-cta h2 span {
  display: block;
  white-space: nowrap;
}

.detail {
  padding-bottom: clamp(64px, 7vw, 96px);
}

.detail__visual img {
  width: 100%;
  height: clamp(360px, 38vw, 500px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.care__body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.care__body li::before {
  display: inline;
  flex: 0 0 auto;
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .exploration-reset {
    position: relative;
    z-index: 3;
    order: 0;
    min-height: 44px;
    margin-left: auto;
    padding-inline: 10px;
    font-size: 12px;
  }
  .menu-button {
    margin-left: 8px;
  }
}
@media (max-width: 767px) {
  .site-header__logo {
    width: 120px;
  }
  .menu-button {
    min-width: 48px;
    gap: 0;
  }
  .menu-button__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .section-heading--side {
    display: block;
  }
  .category-nav {
    grid-template-columns: 1fr 1fr;
  }
  .category-nav button {
    padding-inline: 6px;
    font-size: 12px;
  }
  .products-cta h2 {
    font-size: clamp(23px, 6.4vw, 30px);
    letter-spacing: 0;
  }
  .detail {
    padding-bottom: 64px;
  }
  .detail__visual img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .site-footer__bottom {
    align-items: flex-start;
  }
  .site-footer__bottom small {
    flex: 1;
  }
}
body.is-altering {
  overflow: hidden;
}

.alteration-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  height: 100dvh;
  color: #e8f5fa;
  background: rgba(3, 17, 27, 0.96);
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.14em;
  opacity: 1;
  transition: opacity 0.22s;
}

.alteration-overlay::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(58, 200, 255, 0.08) 4px);
  content: "";
  animation: alteration-shift 0.18s steps(2) 5;
}

.alteration-overlay::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(58, 200, 255, 0.1), transparent 35% 65%, rgba(214, 66, 77, 0.1));
  content: "";
}

.alteration-overlay span {
  position: relative;
  z-index: 1;
  padding: 18px 24px;
  border-block: 1px solid rgba(58, 200, 255, 0.45);
  text-align: center;
}

.alteration-overlay.is-ending {
  opacity: 0;
}

@keyframes alteration-shift {
  50% {
    transform: translateX(3px);
  }
}
.debug-panel {
  position: fixed;
  z-index: 1100;
  right: 16px;
  bottom: 16px;
  width: min(280px, 100% - 32px);
  padding: 16px;
  color: #e8f5fa;
  background: #07151e;
  border: 1px solid rgba(58, 200, 255, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
}

.debug-panel strong, .debug-panel output {
  display: block;
}

.debug-panel output {
  margin: 4px 0 12px;
  color: #3ac8ff;
}

.debug-panel__phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.debug-panel button {
  min-height: 44px;
  margin-top: 6px;
  padding: 7px 10px;
  color: inherit;
  background: #0d2634;
  border: 1px solid rgba(58, 200, 255, 0.25);
  cursor: pointer;
}

.debug-panel > button {
  width: 100%;
}

.news-item--anomaly {
  grid-template-columns: 128px 132px minmax(0, 1fr);
  height: auto;
  min-height: 88px;
  padding-inline: 18px;
  color: #d8eaf2;
  background: #091c28;
  border-color: #173e52;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.45s, transform 0.45s;
}

.news-item--anomaly.is-shown {
  opacity: 1;
  transform: none;
}

.news-item--anomaly time {
  color: #8fafbd;
}

.news-item--anomaly .news-item__tag {
  color: #fff;
  border-color: #d6424d;
  background: #b92a35;
}

.news-item--anomaly h3 {
  color: #e8f5fa;
}

.news-item--anomaly h3 button {
  width: 100%;
  min-height: 52px;
  padding: 8px 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.anomaly-news__detail {
  grid-column: 1/-1;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(58, 200, 255, 0.2);
}

.anomaly-news__detail p {
  max-width: 720px;
  color: #b9d0da;
}

.anomaly-news__detail .button {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 18px;
  color: #07334d;
}

.members__panel--access {
  display: block;
  color: #e8f5fa;
  background: #07151e;
  border: 1px solid rgba(58, 200, 255, 0.28);
  box-shadow: 0 30px 80px rgba(7, 21, 30, 0.25);
}

.members__panel--access::after {
  border-color: rgba(58, 200, 255, 0.18);
}

.member-access {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.member-access__system {
  margin-bottom: 38px;
  color: #8fafbd;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.12em;
}

.member-access h2 {
  margin-top: 18px;
  color: #e8f5fa;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: clamp(36px, 5vw, 58px);
}

.member-access > p:not(.eyebrow, .member-access__system) {
  margin-top: 18px;
  color: #8fafbd;
}

.member-access form {
  margin-top: 36px;
}

.member-access label {
  display: block;
  margin-bottom: 9px;
  color: #3ac8ff;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.member-access__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.member-access input {
  width: 100%;
  min-height: 54px;
  padding: 10px 16px;
  color: #e8f5fa;
  background: #0d2634;
  border: 1px solid rgba(58, 200, 255, 0.35);
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.member-access__controls .button {
  min-width: 190px;
}

.member-access__result {
  min-height: 30px;
  margin-top: 14px;
  color: #d6424d;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.1em;
}

.member-access__result.is-granted {
  color: #3ac8ff;
}

@media (max-width: 767px) {
  .news-item--anomaly {
    grid-template-columns: 104px 1fr;
    padding-inline: 14px;
  }
  .news-item--anomaly h3 {
    grid-column: 1/-1;
  }
  .anomaly-news__detail .button {
    width: 100%;
  }
  .member-access__system {
    margin-bottom: 28px;
  }
  .member-access__controls {
    grid-template-columns: 1fr;
  }
  .member-access__controls .button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .alteration-overlay::before {
    animation: none;
  }
  .news-item--anomaly {
    transition: none;
  }
}
.alteration-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  color: #e5ebe5;
  background: rgba(9, 15, 11, 0.82);
  pointer-events: none;
  transition: opacity 0.12s;
  font-family: "Noto Serif JP", serif;
}

.alteration-overlay::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -20%;
  background: radial-gradient(circle, transparent 12%, rgba(2, 5, 3, 0.3) 55%, rgba(0, 0, 0, 0.9) 100%);
  animation: alteration-breathe 0.72s ease-in-out 2;
}

.alteration-overlay::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(205, 231, 210, 0.72);
  box-shadow: 0 0 14px rgba(205, 231, 210, 0.65);
  opacity: 0;
  animation: alteration-sweep 0.72s 0.18s ease-in-out 1;
}

.alteration-overlay__message {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(90vw, 720px);
  transform: translate(-50%, -50%);
  text-align: center;
}

.alteration-overlay__message p {
  margin: 0;
  padding: 25px 42px;
  color: #b52222;
  border: 1px solid rgba(181, 34, 34, 0.38);
  background: rgba(12, 14, 12, 0.86);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.55), 0 0 32px rgba(181, 34, 34, 0.16), 0 18px 55px rgba(0, 0, 0, 0.6);
  font-size: clamp(20px, 3.2vw, 36px);
  letter-spacing: 0.18em;
  text-shadow: 0 0 8px rgba(181, 34, 34, 0.55);
  animation: alteration-message 1.35s ease both;
}

.alteration-overlay__noise {
  position: absolute;
  z-index: 2;
  inset: -35%;
  opacity: 0.42;
  background-image: repeating-radial-gradient(circle at 23% 37%, transparent 0 1px, rgba(255, 255, 255, 0.28) 2px, transparent 3px 5px), repeating-linear-gradient(0deg, transparent 0 3px, rgba(205, 225, 209, 0.2) 4px, transparent 5px 7px);
  background-size: 9px 11px, 100% 7px;
  mix-blend-mode: screen;
  animation: alteration-noise 0.12s steps(2) infinite;
}

.is-alteration-locked {
  overflow: hidden;
}

.is-altering .alteration-overlay {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.is-altering main, .is-altering .site-header, .is-altering .site-footer {
  animation: alteration-shift 0.48s 0.2s steps(2) 2;
}

@keyframes alteration-noise {
  0% {
    transform: translate3d(-2%, -1%, 0);
  }
  25% {
    transform: translate3d(3%, 2%, 0);
  }
  50% {
    transform: translate3d(-1%, 4%, 0);
  }
  75% {
    transform: translate3d(2%, -3%, 0);
  }
  100% {
    transform: translate3d(-3%, 1%, 0);
  }
}
@keyframes alteration-sweep {
  0% {
    top: 7%;
    opacity: 0;
  }
  12% {
    opacity: 0.8;
  }
  85% {
    opacity: 0.35;
  }
  100% {
    top: 94%;
    opacity: 0;
  }
}
@keyframes alteration-shift {
  0%, 100% {
    transform: translateX(0);
    filter: none;
  }
  25% {
    transform: translateX(7px);
    filter: contrast(1.15) saturate(0.65);
  }
  52% {
    transform: translateX(-5px);
  }
  72% {
    transform: translateX(3px);
    filter: contrast(1.3) saturate(0.45);
  }
}
@keyframes alteration-breathe {
  50% {
    transform: scale(1.04);
    opacity: 0.78;
  }
}
@keyframes alteration-message {
  0%, 12% {
    opacity: 0;
    filter: blur(1px);
    text-shadow: 0 0 3px rgba(181, 34, 34, 0.25);
  }
  28%, 84% {
    opacity: 1;
    filter: blur(0);
    text-shadow: 0 0 9px rgba(181, 34, 34, 0.62);
  }
  100% {
    opacity: 0.88;
    filter: blur(0);
    text-shadow: 0 0 5px rgba(181, 34, 34, 0.45);
  }
}
.debug-panel {
  position: fixed;
  z-index: 900;
  right: 14px;
  bottom: 14px;
  width: 214px;
  overflow: hidden;
  color: #f3f3f3;
  border: 1px solid #59605a;
  border-radius: 7px;
  background: #1f2420;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  line-height: 1.4;
}

.debug-panel[hidden] {
  display: none;
}

.debug-panel button {
  min-height: 34px;
  margin: 0;
  color: inherit;
  border: 1px solid #59605a;
  border-radius: 3px;
  background: #303631;
  cursor: pointer;
}

.debug-panel button:hover {
  background: #444c45;
}

.debug-panel__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  color: #d9b665;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.debug-panel__heading span {
  color: #a9c9af;
  letter-spacing: 0;
}

.debug-panel__body {
  display: grid;
  gap: 7px;
  padding: 10px;
  border-top: 1px solid #59605a;
}

.debug-panel__body p {
  margin: 0;
}

.debug-panel__phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.debug-panel__flags {
  color: #a9c9af;
}

.debug-panel__flags b {
  color: #f3f3f3;
}

@media (max-width: 767px) {
  .debug-panel {
    right: 10px;
    bottom: 10px;
    max-height: min(350px, 60dvh);
    overflow-y: auto;
  }
}
@media (max-width: 520px) {
  .alteration-overlay__message {
    width: calc(100% - 40px);
  }
  .alteration-overlay__message p {
    padding: 22px 18px;
    letter-spacing: 0.1em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .alteration-overlay::before, .alteration-overlay::after, .alteration-overlay__noise {
    display: none;
  }
  .alteration-overlay__message p, .is-altering main, .is-altering .site-header, .is-altering .site-footer {
    animation: none;
  }
}
.alteration-overlay__message:focus, .alteration-overlay__message:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.is-ending .home-hero__image {
  background-image: url("../images/blue-coral-ending.jpg") !important;
  animation: ending-pulse 3.2s ease-in-out infinite !important;
}

.is-ending .home-hero__shade {
  background: linear-gradient(90deg, rgba(2, 12, 20, 0.82), rgba(54, 0, 8, 0.22)), linear-gradient(0deg, rgba(2, 12, 20, 0.5), transparent 55%);
}

.ending-brand {
  color: #86ddff;
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.is-ending .home-hero h1 {
  font-family: "Sansation", "Zen Kaku Gothic Antique", sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: 0.05em;
}

.is-ending .home-hero h1 strong {
  color: #d6424d;
}

.ending-question {
  margin-top: 36px;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.7;
}

.ending-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.ending-actions > button {
  min-height: 48px;
  padding: 8px 12px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
  cursor: pointer;
}

@keyframes ending-pulse {
  50% {
    filter: brightness(1.08) saturate(1.08);
  }
}
@media (max-width: 767px) {
  .ending-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .ending-actions > button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .is-ending .home-hero__image {
    animation: none !important;
  }
}/*# sourceMappingURL=style.css.map */