:root {
  --color-bg: #f7fbff;
  --color-white: #ffffff;
  --color-navy: #071a3d;
  --color-text: #102033;
  --color-muted: #64748b;
  --color-border: #dde7f3;
  --color-blue: #0068e8;
  --color-blue-deep: #004dc1;
  --color-blue-soft: #eaf4ff;
  --color-blueworker: #0d47a1;
  --color-colorist: #dfa2a8;
  --color-gyosei: #2563eb;
  --color-sumai: #7fa66a;
  --color-eats: #b88a2a;
  --color-bridal: #e98fa3;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-card: 0 24px 60px rgba(8, 35, 76, 0.16);
  --shadow-soft: 0 14px 40px rgba(8, 35, 76, 0.08);
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --font-ui: "Inter", "Noto Sans JP", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 104, 232, 0.35);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 8px 14px;
  font-size: 14px;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(221, 231, 243, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 76px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-navy);
  font-family: var(--font-ui);
  font-weight: 800;
}

.site-logo__mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-blue), #56b6ff);
  color: var(--color-white);
  font-size: 22px;
}

.site-logo__text {
  display: grid;
  gap: 0;
  line-height: 1.2;
}

.site-logo__text span {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 700;
}

.site-logo__text strong {
  font-size: 18px;
  color: var(--color-navy);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  overflow: hidden;
  min-height: calc(100svh - 96px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(232, 244, 255, 0.78) 100%),
    url("../assets/images/portal/hero-bg-portal.png") center / cover no-repeat;
}

.hero__inner {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  padding: clamp(44px, 6vh, 74px) 0 clamp(44px, 7vh, 86px);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-blue);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 800;
  line-height: 1.26;
}

.hero__title span {
  color: var(--color-blue);
}

.hero__lead {
  width: min(100%, 560px);
  margin: 28px 0 0;
  color: #34445a;
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  line-height: 1.35;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-deep));
  box-shadow: 0 14px 30px rgba(0, 104, 232, 0.24);
  color: var(--color-white);
}

.btn--secondary {
  border-color: rgba(0, 104, 232, 0.22);
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-blue-deep);
}

.btn--light {
  background: var(--color-white);
  color: var(--color-blue-deep);
  box-shadow: 0 12px 28px rgba(7, 26, 61, 0.16);
}

.mini-lineup {
  margin-top: 34px;
  border-top: 1px solid rgba(221, 231, 243, 0.95);
  padding-top: 18px;
}

.mini-lineup p {
  margin: 0 0 8px;
  color: var(--color-muted);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.mini-lineup span {
  display: block;
  color: var(--color-navy);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.hero__visual {
  position: relative;
}

.hero__visual::before {
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 66%;
  height: 58%;
  border-radius: 48%;
  background: rgba(121, 196, 255, 0.28);
  content: "";
  filter: blur(36px);
}

.portal-stage {
  position: relative;
  height: min(700px, 68vh);
  min-height: 570px;
}

.portal-thumb {
  position: absolute;
  display: block;
  width: 46%;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 24px 36px rgba(8, 35, 76, 0.22));
  transition: filter 0.45s ease;
  will-change: transform;
}

.portal-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.portal-thumb--blueworker {
  top: 2%;
  left: 2%;
  z-index: 4;
  transform: rotate(-3deg);
}

.portal-thumb--colorist {
  top: 4%;
  right: 0;
  z-index: 3;
  transform: rotate(2deg);
}

.portal-thumb--gyosei {
  top: 34%;
  left: -2%;
  z-index: 5;
  transform: rotate(-4deg);
}

.portal-thumb--sumai {
  top: 36%;
  right: 2%;
  z-index: 4;
  transform: rotate(3deg);
}

.portal-thumb--eats {
  bottom: 0;
  left: 4%;
  z-index: 3;
  transform: rotate(2deg);
}

.portal-thumb--bridal {
  right: -2%;
  bottom: 2%;
  z-index: 4;
  transform: rotate(-2deg);
}

.portal-thumb:hover {
  animation: portalWobble 0.72s ease-in-out both;
  filter: drop-shadow(0 34px 50px rgba(8, 35, 76, 0.28));
}

.portal-thumb--blueworker:hover {
  animation-name: portalWobbleBlue;
}

.portal-thumb--colorist:hover {
  animation-name: portalWobbleColorist;
}

.portal-thumb--gyosei:hover {
  animation-name: portalWobbleGyosei;
}

.portal-thumb--sumai:hover {
  animation-name: portalWobbleSumai;
}

.portal-thumb--eats:hover {
  animation-name: portalWobbleEats;
}

.portal-thumb--bridal:hover {
  animation-name: portalWobbleBridal;
}

@keyframes portalWobbleBlue {
  0% { transform: translateY(0) rotate(-3deg) scale(1); }
  35% { transform: translateY(-12px) rotate(-1.2deg) scale(1.035); }
  70% { transform: translateY(-8px) rotate(-3.8deg) scale(1.025); }
  100% { transform: translateY(-10px) rotate(-2.2deg) scale(1.03); }
}

@keyframes portalWobbleColorist {
  0% { transform: translateY(0) rotate(2deg) scale(1); }
  35% { transform: translateY(-12px) rotate(3.8deg) scale(1.035); }
  70% { transform: translateY(-8px) rotate(1.2deg) scale(1.025); }
  100% { transform: translateY(-10px) rotate(2.8deg) scale(1.03); }
}

@keyframes portalWobbleGyosei {
  0% { transform: translateY(0) rotate(-4deg) scale(1); }
  35% { transform: translateY(-12px) rotate(-2deg) scale(1.035); }
  70% { transform: translateY(-8px) rotate(-5deg) scale(1.025); }
  100% { transform: translateY(-10px) rotate(-3deg) scale(1.03); }
}

@keyframes portalWobbleSumai {
  0% { transform: translateY(0) rotate(3deg) scale(1); }
  35% { transform: translateY(-12px) rotate(4.8deg) scale(1.035); }
  70% { transform: translateY(-8px) rotate(2deg) scale(1.025); }
  100% { transform: translateY(-10px) rotate(3.5deg) scale(1.03); }
}

@keyframes portalWobbleEats {
  0% { transform: translateY(0) rotate(2deg) scale(1); }
  35% { transform: translateY(-12px) rotate(3.8deg) scale(1.035); }
  70% { transform: translateY(-8px) rotate(1deg) scale(1.025); }
  100% { transform: translateY(-10px) rotate(2.8deg) scale(1.03); }
}

@keyframes portalWobbleBridal {
  0% { transform: translateY(0) rotate(-2deg) scale(1); }
  35% { transform: translateY(-12px) rotate(-0.5deg) scale(1.035); }
  70% { transform: translateY(-8px) rotate(-3.5deg) scale(1.025); }
  100% { transform: translateY(-10px) rotate(-1.4deg) scale(1.03); }
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section__inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 40px;
}

.section-heading--compact {
  margin-bottom: 30px;
}

.section-heading h2,
.concept h2,
.platform h2,
.featured h2,
.contact-cta h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.35;
}

.section-heading p:not(.eyebrow),
.concept__body p,
.platform__content p,
.featured__content p,
.contact-cta p {
  color: #34445a;
  line-height: 1.9;
}

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

.portal-card {
  display: grid;
  min-height: 270px;
  align-content: space-between;
  border: 1px solid rgba(221, 231, 243, 0.9);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.portal-card--blueworker {
  --accent: var(--color-blueworker);
}

.portal-card--colorist {
  --accent: var(--color-colorist);
}

.portal-card--gyosei {
  --accent: var(--color-gyosei);
}

.portal-card--sumai {
  --accent: var(--color-sumai);
}

.portal-card--eats {
  --accent: var(--color-eats);
}

.portal-card--bridal {
  --accent: var(--color-bridal);
}

.portal-card__no {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.portal-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.portal-card__category {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.portal-card__copy {
  margin: 18px 0 24px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.portal-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--color-blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.portal-card__meta span {
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: color-mix(in srgb, var(--accent) 82%, #071a3d);
  padding: 5px 10px;
}

.portal-card__meta a {
  white-space: nowrap;
}

.section--concept {
  background: var(--color-white);
}

.concept {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.concept__body {
  border-left: 1px solid var(--color-border);
  padding-left: clamp(24px, 4vw, 44px);
}

.concept__body p {
  margin: 0;
}

.concept__body p + p {
  margin-top: 20px;
}

.section--values {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

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

.value-item {
  border: 1px solid rgba(221, 231, 243, 0.95);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.value-item__number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-blue-soft);
  color: var(--color-blue-deep);
  font-family: var(--font-ui);
  font-weight: 900;
}

.value-item h3 {
  margin: 22px 0 10px;
  color: var(--color-navy);
  font-size: 21px;
  line-height: 1.45;
}

.value-item p {
  margin: 0;
  color: #34445a;
  font-size: 15px;
  line-height: 1.9;
}

.section--platform {
  background: var(--color-navy);
  color: var(--color-white);
}

.platform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.platform .eyebrow {
  color: #8ec8ff;
}

.platform h2,
.platform__content p {
  color: var(--color-white);
}

.platform__content p {
  margin: 24px 0 0;
  opacity: 0.86;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 15px 18px 15px 46px;
  font-weight: 800;
}

.feature-list li::before {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8ec8ff;
  box-shadow: 0 0 0 5px rgba(142, 200, 255, 0.15);
  content: "";
  transform: translateY(-50%);
}

.section--featured {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.featured {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.featured__image {
  transform: rotate(-2deg);
}

.featured__image img {
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.featured__content h2 {
  font-family: var(--font-ui);
  font-size: clamp(38px, 5vw, 70px);
}

.featured__copy {
  margin: 8px 0 18px;
  color: var(--color-blue-deep);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
}

.featured__content .btn {
  margin-top: 16px;
}

.section--cta {
  background:
    linear-gradient(135deg, rgba(0, 104, 232, 0.94), rgba(0, 77, 193, 0.98)),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.28), transparent 34%);
  color: var(--color-white);
}

.contact-cta {
  text-align: center;
}

.contact-cta .eyebrow,
.contact-cta h2,
.contact-cta p {
  color: var(--color-white);
}

.contact-cta p {
  max-width: 620px;
  margin: 18px auto 30px;
  opacity: 0.9;
}

.site-footer {
  background: #06142f;
  color: rgba(255, 255, 255, 0.84);
  padding: 36px 0;
}

.site-footer__inner {
  display: flex;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.site-footer__brand p {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

.site-footer__brand span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.site-footer__nav {
  display: flex;
  max-width: 620px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  font-size: 13px;
  font-weight: 700;
}

.site-footer__nav a:hover {
  color: var(--color-white);
}

@media (max-width: 1040px) {
  .hero__inner {
    width: min(100% - 40px, 980px);
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    gap: 28px;
  }

  .portal-stage {
    min-height: 520px;
  }

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

@media (max-width: 900px) {
  html {
    scroll-behavior: auto;
  }

  .site-header__inner {
    min-height: auto;
    width: min(100% - 32px, 720px);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 0;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 8px 18px;
    flex-wrap: wrap;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    display: block;
    width: min(100% - 40px, 680px);
    padding: 56px 0 64px;
  }

  .hero__title {
    font-size: clamp(36px, 10vw, 54px);
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .portal-stage {
    display: flex;
    height: auto;
    min-height: unset;
    margin-top: 40px;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 8px 4px 28px;
    scroll-padding: 4px;
    scroll-snap-type: x mandatory;
  }

  .portal-thumb {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    flex: 0 0 82%;
    width: 82%;
    transform: none !important;
    scroll-snap-align: center;
  }

  .portal-thumb:hover {
    animation: none;
  }

  .section {
    padding: 68px 0;
  }

  .section__inner {
    width: min(100% - 40px, 680px);
  }

  .concept,
  .platform,
  .featured {
    grid-template-columns: 1fr;
  }

  .concept__body {
    border-left: 0;
    padding-left: 0;
  }

  .platform {
    gap: 28px;
  }

  .featured__image {
    transform: none;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-logo__mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .hero__lead {
    margin-top: 22px;
  }

  .mini-lineup {
    margin-top: 28px;
  }

  .portal-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .portal-card,
  .value-item {
    padding: 22px;
  }

  .portal-card__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__inner {
    width: min(100% - 40px, 680px);
    flex-direction: column;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .portal-thumb,
  .portal-thumb:hover,
  .btn,
  .skip-link,
  .site-nav a::after {
    animation: none;
    transition: none;
  }
}

/* Design reference overrides */
.site-header {
  border-bottom: 1px solid rgba(216, 226, 239, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 76px;
  width: min(1580px, calc(100% - 88px));
  gap: 40px;
}

.site-logo {
  gap: 13px;
  font-weight: 900;
}

.site-logo__mark {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 0;
  background: none;
  color: transparent;
  font-size: 0;
}

.site-logo__mark::before,
.site-logo__mark::after {
  position: absolute;
  content: "";
  background: linear-gradient(150deg, #0068e8 0%, #004dc1 100%);
}

.site-logo__mark::before {
  top: 2px;
  left: 2px;
  width: 13px;
  height: 31px;
  border-radius: 3px 7px 3px 3px;
  transform: skewX(-28deg);
  transform-origin: bottom left;
}

.site-logo__mark::after {
  right: 2px;
  bottom: 4px;
  width: 21px;
  height: 11px;
  border-radius: 2px 9px 2px 2px;
  transform: skewX(23deg);
}

.site-logo__text {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}

.site-logo__text span,
.site-logo__text strong {
  color: var(--color-navy);
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 900;
}

.site-nav {
  gap: clamp(32px, 4.2vw, 72px);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
}

.hero {
  min-height: calc(100svh - 76px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 38%, rgba(234, 246, 255, 0.64) 72%, rgba(218, 238, 255, 0.76) 100%),
    url("../assets/images/portal/hero-bg-portal.png") center / cover no-repeat;
}

.hero__inner {
  width: min(1580px, calc(100% - 96px));
  grid-template-columns: minmax(420px, 0.41fr) minmax(0, 0.59fr);
  gap: clamp(34px, 3.2vw, 64px);
  padding: clamp(54px, 8vh, 96px) 0 clamp(44px, 6vh, 70px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 26px;
  font-size: clamp(14px, 1.35vw, 20px);
}

.eyebrow::after {
  display: inline-block;
  width: 58px;
  height: 1px;
  background: rgba(0, 104, 232, 0.32);
  content: "";
}

.hero__title {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 800;
  line-height: 1.34;
  letter-spacing: 0.04em;
}

.hero__lead {
  width: min(100%, 560px);
  margin-top: 34px;
  color: #233552;
  font-size: clamp(15px, 1.12vw, 17px);
  font-weight: 600;
  line-height: 2.05;
}

.hero__actions {
  gap: 28px;
  margin-top: 36px;
}

.btn {
  min-width: 246px;
  min-height: 62px;
  border-radius: 7px;
  padding: 15px 28px;
}

.btn::after {
  margin-left: 24px;
  content: ">";
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.btn--primary {
  background: linear-gradient(135deg, #0068e8, #004fc9);
  box-shadow: 0 13px 25px rgba(0, 92, 212, 0.28);
}

.btn--secondary {
  border-color: rgba(0, 86, 205, 0.78);
  background: rgba(255, 255, 255, 0.68);
}

.mini-lineup {
  margin-top: 78px;
  border-top: 0;
  padding-top: 0;
}

.mini-lineup p {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 10px;
  color: var(--color-blue-deep);
  letter-spacing: 0.18em;
}

.mini-lineup p::after {
  width: 58px;
  height: 1px;
  background: rgba(0, 104, 232, 0.28);
  content: "";
}

.mini-lineup span {
  font-size: clamp(13px, 1vw, 15px);
}

.hero__visual {
  align-self: stretch;
}

.portal-stage {
  height: min(760px, 76vh);
  min-height: 640px;
}

.portal-thumb {
  width: 47%;
  border-radius: 18px;
  filter: drop-shadow(0 22px 28px rgba(8, 35, 76, 0.18));
}

.portal-thumb img {
  border-radius: 18px;
}

.portal-thumb--blueworker {
  top: 1%;
  left: 5%;
}

.portal-thumb--colorist {
  top: 3%;
  right: 1%;
}

.portal-thumb--gyosei {
  top: 33%;
  left: 0;
  transform: rotate(-3deg);
}

.portal-thumb--sumai {
  top: 36%;
  right: 0;
  transform: rotate(1.6deg);
}

.portal-thumb--eats {
  bottom: 2%;
  left: 3%;
  transform: rotate(1.8deg);
}

.portal-thumb--bridal {
  right: 0;
  bottom: 0;
}

@media (min-width: 1500px) {
  .hero__title {
    font-size: 72px;
  }
}

@media (max-width: 1180px) {
  .site-header__inner,
  .hero__inner {
    width: min(100% - 48px, 1100px);
  }

  .site-nav {
    gap: clamp(18px, 3vw, 34px);
  }

  .hero__inner {
    grid-template-columns: minmax(360px, 0.43fr) minmax(0, 0.57fr);
  }

  .portal-stage {
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    width: min(100% - 32px, 720px);
    gap: 12px;
  }

  .site-logo__text span,
  .site-logo__text strong {
    font-size: 24px;
  }

  .site-logo__mark {
    width: 30px;
    height: 30px;
  }

  .hero__inner {
    width: min(100% - 40px, 680px);
    padding: 48px 0 58px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .hero__title {
    font-size: clamp(38px, 11vw, 56px);
    line-height: 1.32;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.9;
  }

  .hero__actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }

  .mini-lineup {
    margin-top: 42px;
  }

  .portal-stage {
    margin-top: 34px;
    min-height: unset;
  }

  .portal-thumb {
    flex-basis: 84%;
    width: 84%;
    border-radius: 16px;
  }

  .portal-thumb img {
    border-radius: 16px;
  }
}

@media (max-width: 620px) {
  .site-logo__text span,
  .site-logo__text strong {
    font-size: 21px;
  }

  .site-nav {
    gap: 8px 14px;
  }

  .eyebrow::after,
  .mini-lineup p::after {
    width: 42px;
  }
}
/* End design reference overrides */
/* Mobile reference fixes */
@media (max-width: 900px) {
  .portal-stage {
    height: auto;
  }

  .portal-thumb,
  .portal-thumb--blueworker,
  .portal-thumb--colorist,
  .portal-thumb--gyosei,
  .portal-thumb--sumai,
  .portal-thumb--eats,
  .portal-thumb--bridal {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    height: auto;
    transform: none !important;
  }

  .portal-thumb {
    flex: 0 0 84%;
    width: 84%;
  }

  .portal-thumb img {
    height: auto;
  }
}
/* End mobile reference fixes */
/* Desktop composition tuning */
@media (min-width: 901px) {
  .hero__content {
    padding-top: 30px;
    padding-left: 42px;
  }

  .hero__visual {
    margin-top: -40px;
  }

  .portal-stage {
    height: min(790px, 80vh);
    min-height: 680px;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .hero__content {
    padding-left: 0;
  }

  .hero__visual {
    margin-top: -24px;
  }

  .portal-stage {
    min-height: 620px;
  }
}
/* End desktop composition tuning */
/* Desktop title wrapping fixes */
@media (min-width: 1500px) {
  .hero__title {
    white-space: nowrap;
  }
}

@media (min-width: 1181px) and (max-width: 1499px) {
  .hero__title {
    font-size: 64px;
    white-space: nowrap;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .hero__title {
    font-size: clamp(48px, 5vw, 58px);
    white-space: nowrap;
  }
}
/* End desktop title wrapping fixes */