:root {
  --navy: #071a34;
  --navy-2: #0a2648;
  --blue: #2b7fff;
  --blue-2: #4c8dff;
  --cyan: #38c9e8;
  --emerald: #00d492;
  --red: #ef3232;
  --orange: #ff7253;
  --yellow: #ffca55;
  --ink: #10213b;
  --company: #06152b;
  --text: #43516a;
  --muted: #77839a;
  --line: #dce5f0;
  --soft: #f3f7fb;
  --white: #fff;
  --shadow: 0 24px 70px rgba(15, 48, 88, 0.13);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
p,
ul,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

ul {
  padding-left: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 128px 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 9999;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-only {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 0.15s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(12, 43, 79, 0.08);
  box-shadow: 0 8px 30px rgba(10, 38, 72, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 56px), 1380px);
  height: 82px;
  margin-inline: auto;
}

.brand {
  position: relative;
  z-index: 3;
  width: 188px;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 1.8vw, 32px);
  color: #20334f;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.global-nav > a:not(.nav-cta) {
  position: relative;
  padding: 28px 0;
}

.global-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.global-nav > a:hover::after {
  transform: scaleX(1);
}

.global-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

/* Shared headings and buttons */
.section-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--blue);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section-kicker.light {
  color: #75dff3;
}

.section-title {
  margin-bottom: 64px;
}

.section-title.centered {
  text-align: center;
}

.section-title.centered .section-kicker {
  justify-content: center;
}

.section-title h2,
.functions-heading h2,
.abilities-title h2,
.payment-copy h2,
.company-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.55;
}

.section-title > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  line-height: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 58px;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(33, 111, 244, 0.28);
}

.button-primary:hover {
  background: #145fd7;
  box-shadow: 0 18px 36px rgba(33, 111, 244, 0.35);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: #b9c8d9;
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  padding: 152px 0 104px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
    radial-gradient(circle at 78% 17%, #d9f7fd 0, transparent 27%),
    linear-gradient(115deg, #f7fbff 0%, #eef5ff 48%, #f9fcff 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  content: "";
  background: linear-gradient(135deg, rgba(33, 111, 244, 0.07), rgba(56, 201, 232, 0.1));
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.7;
}

.hero-orb-1 {
  top: 135px;
  right: 7%;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, rgba(255, 202, 85, 0.3), rgba(255, 114, 83, 0.08));
}

.hero-orb-2 {
  right: 42%;
  bottom: 55px;
  width: 82px;
  height: 82px;
  background: rgba(56, 201, 232, 0.14);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  grid-template-rows: auto auto;
  align-items: stretch;
  column-gap: 44px;
  row-gap: 0;
  min-height: 570px;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.hero-utilities {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.eyebrow span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue);
}

.hero-copy h1 {
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(47px, 5.2vw, 68px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.045em;
}

.hero-copy h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
}

.hero-copy h1 em::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 10px;
  content: "";
  background: rgba(56, 201, 232, 0.25);
  z-index: -1;
}

.hero-lead {
  margin-bottom: 32px;
  color: #3e4f68;
  font-size: 15px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-points {
  display: flex;
  gap: 0;
  margin: 0;
}

.hero-points li {
  display: flex;
  flex-direction: column;
  min-width: 116px;
  padding: 0 20px;
  border-left: 1px solid #cbd8e6;
}

.hero-points li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-points strong {
  color: var(--navy);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 22px;
  line-height: 1.3;
}

.hero-points span {
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  width: min(100%, 720px);
  justify-self: end;
}

.product-stage {
  position: relative;
  padding: 72px 0 36px 36px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 54% 46% 47% 53% / 43% 48% 52% 57%;
  box-shadow: 0 35px 90px rgba(44, 92, 145, 0.15);
  backdrop-filter: blur(8px);
}

.product-stage img {
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 24px 18px rgba(12, 39, 72, 0.16));
}

.product-badge {
  position: absolute;
  top: 64px;
  left: 6%;
  z-index: 2;
  display: block;
  padding: 4px;
  background: var(--blue);
  border-radius: 50%;
}

.product-badge::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(43, 127, 255, 0.52);
  border-radius: inherit;
  content: "";
  animation: product-badge-pulse 2.8s ease-out infinite;
}

.product-badge img {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  box-shadow: none;
  object-fit: contain;
  filter: none;
}

@keyframes product-badge-pulse {
  0% { opacity: 0.6; transform: scale(0.92); }
  70%, 100% { opacity: 0; transform: scale(1.55); }
}

.hero-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: #29405e;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e3ebf4;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(16, 45, 80, 0.12);
  font-size: 12px;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}

.hero-label span {
  color: var(--emerald);
}

.label-a {
  top: 19%;
  right: 5%;
}

.label-b {
  right: 24%;
  bottom: 3%;
  animation-delay: -1.8s;
}

.label-c {
  right: 0;
  bottom: 22%;
  animation-delay: -0.9s;
}

.label-b span {
  color: var(--red);
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scroll-guide {
  position: absolute;
  top: min(calc(100svh - 32px), calc(100% - 32px));
  bottom: auto;
  left: 32px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #64758b;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.scroll-guide i {
  width: 56px;
  height: 1px;
  background: #8393a5;
}

/* Philosophy */
.philosophy {
  position: relative;
  overflow: hidden;
}

.philosophy::after {
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid #e6edf5;
  border-radius: 50%;
  box-shadow: 0 0 0 70px #f8fafc, 0 0 0 71px #edf2f7;
}

.philosophy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 112px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.65;
}

.section-heading h2 span {
  color: var(--blue);
}

.philosophy-copy {
  padding-top: 48px;
}

.philosophy-copy p {
  line-height: 2.2;
}

.lead-copy {
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
  line-height: 2 !important;
}

/* About */
.section-blue {
  position: relative;
  color: #dbe8f8;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 70%, rgba(56, 201, 232, 0.15), transparent 25%),
    radial-gradient(circle at 89% 13%, rgba(33, 111, 244, 0.35), transparent 35%),
    var(--navy);
}

.section-blue::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.section-blue .container {
  position: relative;
  z-index: 2;
}

.section-blue h2,
.section-blue h3 {
  color: var(--white);
}

.stakeholder-map {
  position: relative;
  height: 360px;
  margin: 88px 0 104px;
}

.stakeholder-map::before,
.stakeholder-map::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  content: "";
  border: 1px solid rgba(117, 223, 243, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 64px rgba(33, 111, 244, 0.12) inset;
}

.stakeholder-map::before {
  width: 620px;
  height: 260px;
  transform: translate(-50%, -50%) rotate(-5deg);
}

.stakeholder-map::after {
  width: 520px;
  height: 320px;
  border-color: rgba(117, 223, 243, 0.07);
  transform: translate(-50%, -50%) rotate(7deg);
}

.map-connections {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.map-connections path {
  fill: none;
  stroke: rgba(117, 223, 243, 0.58);
  stroke-width: 1.2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px rgba(56, 201, 232, 0.45));
}

.map-connections .network-orbit {
  stroke: rgba(117, 223, 243, 0.26);
  stroke-dasharray: 4 8;
}

.map-connections circle {
  fill: #75dff3;
  filter: drop-shadow(0 0 4px rgba(117, 223, 243, 0.9));
}

.map-connections-mobile {
  display: none;
}

.stakeholder {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  min-width: 0;
  text-align: center;
}

.stakeholder-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 16px;
  color: #75dff3;
  background: #102f54;
  border: 1px solid rgba(117, 223, 243, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(117, 223, 243, 0.04);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.stakeholder strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 17px;
}

.stakeholder small {
  color: #97abc2;
  font-size: 11px;
  white-space: nowrap;
}

.student { top: 0; left: 0; }
.teacher { bottom: 0; left: 0; }
.staff { top: 0; right: 0; }
.parent { right: 0; bottom: 0; }

.map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 190px;
  margin: 0;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), #1950bc);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(117, 223, 243, 0.4), 0 25px 55px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.map-center img {
  width: 80px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 31, 84, 0.22));
}

.map-center small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.about-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 96px;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.about-copy h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.7;
}

.about-copy p {
  margin: 0;
  padding-top: 12px;
  line-height: 2.15;
}

/* Gakulog */
.gakulog {
  padding-bottom: 0;
  overflow: hidden;
}

.gakulog-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.83fr) minmax(0, 1.17fr);
  align-items: center;
  gap: 64px;
}

.gakulog-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.65;
}

.gakulog-copy h2 span {
  color: var(--blue);
}

.gakulog-copy > p:not(.section-kicker) {
  line-height: 2.1;
}

.gakulog-visual {
  position: relative;
  width: min(100%, 720px);
  padding: 84px 20px 28px;
  justify-self: end;
  background: linear-gradient(145deg, #edf5ff, #f5fbff);
  border-radius: 50% 50% 46% 54% / 52% 43% 57% 48%;
}

.gakulog-visual img {
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 25px 22px rgba(13, 48, 89, 0.17));
}

.visual-caption {
  position: absolute;
  top: 24px;
  left: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e3ebf4;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(16, 45, 80, 0.12);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: float 4s ease-in-out infinite;
}

.visual-caption-mark {
  position: relative;
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  background: rgba(0, 212, 146, 0.12);
  border-radius: 50%;
}

.visual-caption-mark::before {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 212, 146, 0.18);
  content: "";
}

.visual-caption-mark::after {
  position: absolute;
  inset: 4px;
  border: 1px solid var(--emerald);
  border-radius: 50%;
  content: "";
  animation: online-signal 2s ease-out infinite;
}

@keyframes online-signal {
  0% { opacity: 0.75; transform: scale(0.55); }
  75%, 100% { opacity: 0; transform: scale(1.35); }
}

.learning-cycle {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  align-items: center;
  margin-top: 100px;
  padding: 48px;
  background: var(--soft);
  border-radius: var(--radius-lg);
}

.learning-cycle article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid #e4ebf3;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(19, 61, 108, 0.05);
}

.cycle-number {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #c6d3e3;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.cycle-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  color: var(--blue);
  background: #edf4ff;
  border-radius: 16px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-weight: 700;
}

.learning-cycle h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.learning-cycle p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.9;
}

.cycle-arrow {
  color: var(--blue);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-style: normal;
  text-align: center;
}

.abilities {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 60px;
  margin-top: 140px;
  padding-bottom: 140px;
}

.abilities-title h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.6;
}

.abilities-description {
  margin-bottom: 0;
  color: #64738a;
  font-size: 14px;
  line-height: 2;
}

.heading-line {
  white-space: nowrap;
}

.ability-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 48px;
}

.ability-card {
  position: relative;
  min-height: 260px;
  padding: 32px 24px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.ability-card::after {
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 140px;
  height: 140px;
  content: "";
  border: 26px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.ability-card > span {
  display: inline-block;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.ability-card h3 {
  min-height: 55px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 17px;
}

.ability-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 12px;
  line-height: 1.8;
}

.ability-1 { background: #267cf0; }
.ability-2 { background: #17a7c9; }
.ability-3 { background: #f0775a; }

/* Portfolio */
.future {
  background: #f3f7fb;
}

.portfolio-compare {
  display: grid;
  grid-template-columns: 1fr 92px 1fr;
  align-items: center;
  gap: 16px;
}

.portfolio-side {
  min-height: 555px;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
}

.portfolio-side.conventional {
  border: 1px solid #dce4ed;
}

.portfolio-side.next {
  color: #e5efff;
  background: linear-gradient(145deg, #174fbb, var(--blue));
  box-shadow: 0 25px 65px rgba(33, 111, 244, 0.24);
}

.compare-label {
  display: inline-block;
  margin-bottom: 28px;
  padding: 8px 12px;
  color: #62728a;
  background: #edf2f7;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.next .compare-label {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.portfolio-side h3 {
  margin-bottom: 32px;
  font-size: 28px;
  line-height: 1.6;
}

.next h3 {
  color: var(--white);
}

.next h3 em {
  color: #8de9f7;
  font-style: normal;
}

.portfolio-side ul {
  margin-bottom: 32px;
}

.portfolio-side li {
  position: relative;
  margin-bottom: 12px;
  padding: 12px 12px 12px 40px;
  background: #f7f9fc;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

.portfolio-side li::before {
  position: absolute;
  top: 50%;
  left: 15px;
  color: var(--blue);
  content: "✓";
  transform: translateY(-50%);
}

.next li {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.next li::before {
  color: #89e6f7;
}

.compare-issue {
  margin-bottom: 0;
  color: #7b8594;
  font-size: 12px;
  text-align: center;
}

.future-tags {
  margin-bottom: 0;
  color: #a6ecf8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.compare-arrow {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: 8px solid #f3f7fb;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(33, 111, 244, 0.24);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.compare-arrow span {
  font-size: 8px;
  letter-spacing: 0.12em;
}

.compare-arrow i {
  font-size: 22px;
  font-style: normal;
  line-height: 1;
}

/* Feature showcase */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-showcase article {
  border-radius: var(--radius-lg);
}

.feature-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  /* align-items: center; */
  min-height: 450px;
  padding: 56px 56px 0px 56px;
  overflow: hidden;
  background: #eaf3ff;
}

.feature-large img {
  width: 100%;
  max-width: none;
  margin-bottom: -88px;
  filter: drop-shadow(0 25px 20px rgba(11, 47, 89, 0.16));
}

.feature-img {
   width: 100%;
}

.feature-no {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-showcase h3 {
  margin-bottom: 16px;
  font-size: 26px;
}

.feature-showcase p {
  margin-bottom: 0;
  line-height: 2;
}

.feature-small {
  position: relative;
  min-height: 350px;
  padding: 40px;
  overflow: hidden;
}

.feature-notice {
  background: #fff3e9;
}

.feature-message {
  background: #eaf9fb;
}

.mini-ui,
.chat-ui {
  position: absolute;
  top: 34px;
  right: 35px;
  width: 172px;
  height: 135px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(68, 71, 89, 0.1);
  transform: rotate(3deg);
}

.mini-ui i {
  display: block;
  height: 10px;
  margin-bottom: 16px;
  background: #ffd4ba;
  border-radius: 999px;
}

.mini-ui i:nth-child(2) { width: 72%; }
.mini-ui i:nth-child(3) { width: 88%; }

.chat-ui {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: rotate(-3deg);
}

.chat-ui i {
  width: 76%;
  height: 25px;
  background: #cef1f6;
  border-radius: 12px 12px 12px 4px;
}

.chat-ui i:nth-child(2) {
  align-self: flex-end;
  background: #70d2e4;
  border-radius: 12px 12px 4px 12px;
}

.chat-ui i:nth-child(3) { width: 56%; }

.feature-small h3,
.feature-small p {
  max-width: 60%;
}

.feature-wide {
  display: flex;
  justify-content: space-between;
  min-height: 260px;
  padding: 40px 44px;
  background: var(--soft);
}

.feature-wide > div:first-child {
  max-width: 65%;
}

.feature-devices {
  position: relative;
  display: block;
}

.feature-devices > div:first-child {
  max-width: none;
}

.feature-devices h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  white-space: nowrap;
}

.feature-devices p {
  max-width: calc(100% - 220px);
}

.device-icons {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.feature-devices .device-icons {
  position: absolute;
  right: 44px;
  bottom: 40px;
}

.device-icons span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 64px;
  color: var(--blue);
  background: var(--white);
  border: 2px solid #b8d2f7;
  border-radius: 8px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.device-icons span:nth-child(2) {
  width: 55px;
  height: 76px;
}

.device-icons span:nth-child(3) {
  width: 38px;
  height: 64px;
  border-radius: 12px;
}

.feature-wide.support {
  color: #d4e5fa;
  background: var(--navy);
}

.feature-wide.support h3 {
  color: var(--white);
}

.support-markbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.support-mark {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  color: #71ddf1;
  background: #10325a;
  border: 1px solid #2f648b;
  border-radius: 50%;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 600;
}

.functions-block {
  margin-top: 152px;
}

.functions-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.functions-heading .section-kicker {
  align-self: start;
}

.functions-heading h2 {
  max-width: 750px;
  margin-bottom: 0;
}

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

.function-card {
  position: relative;
  min-height: 260px;
  padding: 32px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, transform 0.25s ease;
}

.function-card:hover {
  z-index: 2;
  background: #f8fbff;
  transform: translateY(-4px);
}

.function-card > span {
  position: absolute;
  top: 25px;
  right: 28px;
  color: #c1cede;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.function-card > b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  color: var(--blue);
  background: #edf4ff;
  border-radius: 16px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 9px;
  letter-spacing: 0.03em;
}

.function-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.function-card p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.85;
}

.function-card.highlight {
  color: #d9e8fb;
  background: var(--blue);
}

.function-card.highlight > b {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.function-card.highlight > span { color: rgba(255, 255, 255, 0.55); }
.function-card.highlight h3 { color: var(--white); }

.function-note {
  margin: 28px 0 0;
  padding: 24px;
  color: #5e6d82;
  background: var(--soft);
  border-left: 3px solid var(--blue);
  font-size: 12px;
}

/* AI */
.ai-section {
  position: relative;
  color: #cbdaf0;
  overflow: hidden;
  background: #06162d;
}

.ai-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(117, 223, 243, 0.3) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.16;
}

.ai-glow {
  position: absolute;
  top: -300px;
  left: 50%;
  width: 900px;
  height: 700px;
  background: radial-gradient(circle, rgba(33, 111, 244, 0.4), transparent 62%);
  transform: translateX(-50%);
}

.ai-section .container {
  position: relative;
  z-index: 2;
}

.ai-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 72px;
  margin-bottom: 72px;
}

.ai-heading h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.65;
}

.ai-heading h2 em {
  color: #7de4f5;
  font-style: normal;
}

.ai-intro > p {
  margin-bottom: 12px;
  line-height: 2;
}

.ai-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ai-card {
  position: relative;
  padding: 20px 20px 36px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.ai-number {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
  padding: 4px 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(7, 26, 52, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.ai-visual {
  aspect-ratio: 1.6;
  margin-bottom: 32px;
  overflow: hidden;
  background: #0d2544;
  border: 1px solid rgba(125, 228, 245, 0.24);
  border-radius: 16px;
}

.ai-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-card h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 21px;
}

.ai-card p {
  margin-bottom: 0;
  color: #aebfd5;
  font-size: 13px;
  line-height: 1.9;
}

.ai-models {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ai-models-heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.ai-models-heading .section-kicker {
  margin-bottom: 0;
}

.ai-models-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
}

.ai-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
}

.ai-model-grid li {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(7, 26, 52, 0.08);
  border-radius: 12px;
}

.ai-model-grid img {
  width: auto;
  height: auto;
  max-width: 80%;
  object-fit: contain;
  transform: scale(1.2);
}

.ai-model-openai img {
  max-height: 56px;
}

.ai-model-gemini img,
.ai-model-claude img {
  max-height: 22px;
}

/* Payment */
.payment {
  background: linear-gradient(120deg, #f5faff 0, #fff 65%);
}

.payment-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 80px;
}

.payment-copy h2 {
  line-height: 1.5;
}

.payment-copy h2 span {
  color: var(--blue);
}

.payment-copy > p:not(.section-kicker) {
  line-height: 2;
}

.payment-merits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 0;
}

.payment-merits li {
  padding: 8px 16px;
  color: var(--blue);
  background: #eaf3ff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.payment-methods {
  margin-top: 52px;
  padding: 28px;
  background: var(--white);
  border: 1px solid #e2eaf3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.payment-methods article {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 28px 20px;
  border-bottom: 1px solid var(--line);
}

.payment-methods article:last-child {
  border-bottom: 0;
}

.payment-methods article > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--blue);
  background: #edf4ff;
  border-radius: 16px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.payment-methods h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.payment-methods p {
  margin-bottom: 0;
  color: #718097;
  font-size: 12px;
}

/* Merits */
.merits {
  color: #cfdded;
  background: var(--navy);
}

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

.merit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.merit-grid article {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 32px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.merit-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.merit-grid span {
  display: block;
  margin-bottom: 32px;
  color: #7de4f5;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 64px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.07em;
  opacity: 0.38;
}

.merit-grid h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 18px;
}

.merit-grid p {
  margin: 0;
  color: #9eb0c5;
  font-size: 12px;
  line-height: 1.8;
}

/* Plans */
.plans {
  background: #f5f8fc;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.plan-card {
  position: relative;
  min-height: 380px;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid #dee7f0;
  border-radius: var(--radius-md);
}

.plan-label {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--blue);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.plan-card h3 {
  min-height: 62px;
  margin-bottom: 24px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 20px;
}

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 40px;
  margin-bottom: 24px;
  color: var(--ink);
}

.price strong {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 40px;
  line-height: 1;
}

.price > span {
  color: #758296;
  font-size: 11px;
}

.price-text strong:first-child {
  margin-right: 4px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 30px;
}

.price-text strong:last-child {
  margin-left: 4px;
  font-size: 30px;
}

.price-quote strong {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.plan-card ul {
  margin: 0 0 16px;
}

.plan-card li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 16px;
  color: #4f5f75;
  font-size: 12px;
}

.plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "✓";
}

.plan-card small,
.plan-note {
  color: #7c899a;
  font-size: 10px;
  line-height: 1.7;
}

.plan-description {
  color: #68778b;
  font-size: 12px;
  line-height: 1.9;
}

.plan-ai {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.35fr) minmax(180px, 0.75fr);
  align-items: center;
  gap: 32px;
  min-height: auto;
}

.plan-ai .plan-label {
  margin-bottom: 12px;
}

.plan-ai h3 {
  min-height: 0;
  margin-bottom: 24px;
}

.plan-ai .price {
  margin-bottom: 8px;
}

.plan-ai ul {
  margin-bottom: 0;
}

.plan-ai-advisors,
.plan-ai-supported {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.plan-ai-advisors li {
  margin-bottom: 12px;
}

.plan-ai-advisors li:last-child {
  margin-bottom: 0;
}

.plan-ai-supported-label {
  margin-bottom: 12px;
  color: #68778b;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
}

.plan-ai-model-list {
  display: grid;
  gap: 8px;
}

.plan-ai-model-list li {
  display: grid;
  place-items: center;
  min-height: 48px;
  margin: 0;
  padding: 4px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.plan-ai-model-list li::before {
  content: none;
}

.plan-ai-model-list img {
  width: auto;
  height: auto;
  max-width: 88%;
  object-fit: contain;
}

.plan-ai-model-list .openai img {
  max-height: 40px;
}

.plan-ai-model-list .gemini img,
.plan-ai-model-list .claude img {
  max-height: 16px;
}

.custom-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.custom-plans article {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--white);
  border: 1px solid #dee7f0;
  border-radius: 16px;
}

.custom-plans article > span {
  flex: 0 0 auto;
  padding-top: 4px;
  color: var(--blue);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.custom-plans h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.custom-plans p {
  margin-bottom: 0;
  color: #6b798d;
  font-size: 12px;
  line-height: 1.85;
}

.plan-note {
  margin: 20px 0 0;
  font-size: 12px;
  text-align: center;
}

/* CTA */
.cta-section {
  position: relative;
  padding: 124px 0;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(125, 228, 245, 0.2), transparent 24%),
    linear-gradient(125deg, #1e6eee, #154dae);
}

.cta-section::before,
.cta-section::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.cta-section::before {
  top: -280px;
  right: -100px;
  width: 620px;
  height: 620px;
}

.cta-section::after {
  right: 60px;
  bottom: -260px;
  width: 480px;
  height: 480px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-inner .section-kicker {
  justify-content: center;
}

.cta-inner h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.5;
}

.cta-inner > p:not(.section-kicker) {
  margin-bottom: 32px;
  color: #dceaff;
}

.button-white {
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 15px 36px rgba(4, 35, 90, 0.2);
}

/* News */
.news {
  background: #f5f8fc;
}

.news-grid {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  align-items: start;
  gap: 96px;
}

.news-heading h2 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 44px);
}

.news-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.news-list li {
  border-bottom: 1px solid var(--line);
}

.news-list a {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 24px;
  padding: 28px 16px;
  transition: color 0.25s ease, background 0.25s ease;
}

.news-list time {
  color: var(--muted);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.news-list p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.news-list a > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid #dce7f4;
  border-radius: 50%;
  font-size: 13px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.news-list a:hover {
  background: rgba(255, 255, 255, 0.72);
}

.news-list a:hover > span {
  color: var(--white);
  background: var(--blue);
  transform: translate(4px, -4px);
}

/* News detail */
.news-detail-page {
  background: var(--white);
}

.news-detail-page .site-header,
.news-detail-page .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(12, 43, 79, 0.08);
  backdrop-filter: blur(16px);
}

.news-detail-hero {
  position: relative;
  padding: 168px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(56, 201, 232, 0.16), transparent 24%),
    linear-gradient(135deg, #f7fbff 0%, #edf5ff 100%);
}

.news-detail-hero::after {
  position: absolute;
  right: -120px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(43, 127, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, 0.24);
  content: "";
}

.news-detail-header {
  position: relative;
  z-index: 2;
}

.news-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  color: var(--muted);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.news-breadcrumb a {
  transition: color 0.25s ease;
}

.news-breadcrumb a:hover {
  color: var(--blue);
}

.news-detail-header h1 {
  max-width: 1100px;
  margin-bottom: 40px;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.55;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #69778b;
  font-size: 12px;
}

.news-detail-meta p,
.news-detail-meta time {
  margin: 0;
}

.news-detail-meta time {
  padding-left: 24px;
  border-left: 1px solid #cad6e4;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
}

.news-article {
  padding: 96px 0 128px;
}

.news-article-inner {
  width: min(calc(100% - 48px), 920px);
  margin-inline: auto;
}

.news-article-content {
  color: #43516a;
  font-size: 15px;
  line-height: 2.15;
}

.news-article-content p {
  margin-bottom: 24px;
}

.news-article-content .news-article-lead {
  margin-bottom: 40px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
}

.release-section {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.release-company-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.release-company-card {
  padding: 32px;
  background: #f5f8fc;
  border: 1px solid #e3ebf4;
  border-radius: var(--radius-md);
}

.release-company-card h2 {
  min-height: 68px;
  margin-bottom: 28px;
  font-size: 19px;
  line-height: 1.7;
}

.release-company-card dl {
  margin: 0;
}

.release-company-card dl > div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid #dce5f0;
}

.release-company-card dt {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.release-company-card dd {
  margin: 0;
  color: #5d6c81;
  font-size: 12px;
  line-height: 1.8;
}

.release-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
  margin-top: 56px;
  padding: 40px;
  color: #d7e4f4;
  background: var(--navy);
  border-radius: var(--radius-md);
}

.release-contact .section-kicker {
  color: #8da4bf;
}

.release-contact h2 {
  margin: 0;
  color: var(--white);
  font-size: 21px;
  line-height: 1.7;
}

.release-contact dl {
  margin: 0;
}

.release-contact dl > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 8px 0;
}

.release-contact dt {
  color: #8da4bf;
  font-size: 11px;
  font-weight: 700;
}

.release-contact dd {
  margin: 0;
}

.release-contact a {
  color: #7de4f5;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.release-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 24px 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.release-source p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.release-source a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.news-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.news-back span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.news-back:hover span {
  color: var(--white);
  background: var(--blue);
  transform: translateX(-4px);
}

/* Company */
.company-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 96px;
}

.company-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.company-visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.5;
  margin-top: 60px;
  padding: 48px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #edf4fd 100%);
  border: 1px solid #e2eaf3;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 48px rgba(9, 49, 98, 0.08);
}

.company-visual::before {
  position: absolute;
  top: 0;
  left: 32px;
  width: 64px;
  height: 4px;
  content: "";
  background: var(--company);
}

.company-visual::after {
  display: none;
}

.company-visual-logo {
  position: relative;
  z-index: 2;
  width: min(72%, 272px);
  height: auto;
  opacity: 0.88;
}

.company-data {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-data > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
}

.company-data dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.company-data dd {
  margin: 0;
  color: #536177;
  line-height: 1.9;
}

.company-data small {
  color: #7b8798;
}

.company-data a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Footer */
.site-footer {
  color: #9daec3;
  background: var(--company);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 68px;
  padding-bottom: 56px;
}

.footer-brand {
  width: 220px;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
  max-width: 660px;
  color: #d3ddec;
  font-size: 12px;
}

.footer-top nav a:hover {
  color: #7de4f5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 9px;
  letter-spacing: 0.05em;
}

.footer-bottom a {
  color: #d4e0ef;
  letter-spacing: 0.12em;
}

/* Tablet */
@media (max-width: 1080px) {
  .header-inner {
    width: calc(100% - 32px);
  }

  .brand {
    width: 168px;
  }

  .global-nav {
    gap: 16px;
    font-size: 11px;
  }

  .global-nav > a:nth-child(4),
  .global-nav > a:nth-child(5) {
    display: none;
  }

  .philosophy-grid,
  .about-copy,
  .payment-grid,
  .company-grid {
    gap: 60px;
  }

  .payment-methods {
    margin-top: 32px;
  }

  .gakulog-intro {
    gap: 36px;
  }

  .learning-cycle {
    padding: 32px;
  }

  .abilities {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .portfolio-side {
    padding: 40px;
  }

  .feature-small h3,
  .feature-small p {
    max-width: 55%;
  }

  .mini-ui,
  .chat-ui {
    width: 142px;
  }

  .merit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .merit-grid article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .merit-grid article:nth-child(4) {
    grid-column: 1 / 2;
  }
}

/* Hero and product visuals switch before their columns become cramped. */
@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding: 132px 0 96px;
  }

  .hero::before {
    top: 45%;
    width: 100%;
    height: 55%;
    clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    min-height: 0;
  }

  .hero-copy,
  .hero-utilities,
  .gakulog-copy {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
    width: 100%;
    max-width: 680px;
  }

  .hero-visual,
  .gakulog-visual {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
    justify-self: center;
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .hero-copy .hero-lead {
    margin-bottom: 0;
  }

  .hero-visual {
    margin-top: 32px;
  }

  .hero-utilities {
    margin-top: 40px;
  }

  .product-stage img,
  .gakulog-visual img {
    width: 100%;
  }

  .label-a {
    top: 18%;
    right: 12px;
  }

  .label-b {
    right: 48px;
    bottom: 3%;
  }

  .label-c {
    right: 4px;
    bottom: 22%;
  }

  .gakulog-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .portfolio-compare {
    grid-template-columns: 1fr;
  }

  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .compare-arrow {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

  .compare-arrow i {
    transform: rotate(90deg);
  }

}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --radius-lg: 24px;
    --radius-md: 18px;
  }

  body {
    font-size: 14px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .pc-only {
    display: none;
  }

  .mobile-only {
    display: initial;
  }

  .header-inner {
    width: calc(100% - 32px);
    height: 68px;
  }

  .site-header,
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(12, 43, 79, 0.08);
    backdrop-filter: blur(14px);
  }

  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.99);
    border-bottom-color: rgba(255, 255, 255, 0.6);
    box-shadow: none;
    -webkit-backdrop-filter: blur(96px) saturate(105%);
    backdrop-filter: blur(96px) saturate(105%);
  }

  .brand {
    width: 154px;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #d8e5f3;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(16, 45, 80, 0.08);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .menu-button-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: background 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
  }

  .menu-button-line-top {
    transform: translate(-50%, calc(-50% - 6px));
  }

  .menu-button-line-middle {
    background: var(--blue);
  }

  .menu-button-line-bottom {
    transform: translate(-50%, calc(-50% + 6px));
  }

  .menu-button[aria-expanded="true"] {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 8px 24px rgba(43, 127, 255, 0.24);
  }

  .menu-button[aria-expanded="true"] .menu-button-line {
    width: 20px;
    background: var(--white);
  }

  .menu-button[aria-expanded="true"] .menu-button-line-top {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button-line-middle {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] .menu-button-line-bottom {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .menu-button:focus-visible {
    outline: 2px solid rgba(43, 127, 255, 0.4);
    outline-offset: 4px;
  }

  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    min-height: 100dvh;
    padding: 88px 32px max(32px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    color: var(--ink);
    background:
      radial-gradient(circle at 100% 12%, rgba(43, 127, 255, 0.16), transparent 36%),
      radial-gradient(circle at 0 88%, rgba(56, 201, 232, 0.12), transparent 38%),
      rgba(244, 249, 255, 0.99);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    opacity: 0;
    transform: translateY(-10px);
    -webkit-backdrop-filter: blur(96px) saturate(105%);
    backdrop-filter: blur(96px) saturate(105%);
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .global-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .global-nav > a,
  .global-nav > a:nth-child(4),
  .global-nav > a:nth-child(5) {
    display: block;
  }

  .global-nav > a:not(.nav-cta) {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(12, 43, 79, 0.1);
    font-size: 15px;
  }

  .global-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 20px;
    padding: 16px 20px;
  }

  .section-title {
    margin-bottom: 44px;
  }

  .section-title h2,
  .functions-heading h2,
  .abilities-title h2,
  .payment-copy h2,
  .company-heading h2 {
    font-size: 30px;
  }

  .section-kicker,
  .eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
  }

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

  .hero {
    min-height: auto;
    padding: 116px 0 80px;
  }

  .hero::before {
    top: 47%;
    width: 100%;
    height: 53%;
    clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-utilities {
    width: 100%;
    margin-top: 32px;
  }

  .hero-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(39px, 12.2vw, 53px);
    line-height: 1.32;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.95;
  }

  .hero-actions {
    margin-bottom: 40px;
  }

  .hero-points {
    justify-content: space-between;
    width: 100%;
  }

  .hero-points li {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 12px;
  }

  .hero-points strong {
    font-size: 17px;
  }

  .hero-points span {
    font-size: 9px;
  }

  .hero-visual {
    width: 100%;
    margin: 24px 0 0;
  }

  .product-stage {
    padding: 48px 0 20px 16px;
  }

  .product-stage img {
    width: 100%;
  }

  .product-badge {
    top: 56px;
    left: 16px;
  }

  .product-badge img {
    width: 40px;
    height: 40px;
  }

  .hero-label {
    padding: 8px 12px;
    font-size: 9px;
  }

  .label-a { top: 15%; right: 8px; }
  .label-b { right: 32px; bottom: 0; }
  .label-c { right: 0; bottom: 20%; }
  .scroll-guide { display: none; }

  .philosophy-grid,
  .gakulog-intro,
  .about-copy,
  .payment-grid,
  .company-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .philosophy-copy {
    padding-top: 0;
  }

  .lead-copy {
    font-size: 17px;
    line-height: 1.9 !important;
  }

  .section-blue {
    padding-bottom: 92px;
  }

  .stakeholder-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 145px auto auto;
    gap: 32px 16px;
    height: auto;
    min-height: 457px;
    margin: 52px 0 76px;
  }

  .stakeholder-map::before {
    top: 72px;
    left: 50%;
    width: 200px;
    height: 200px;
    background: none;
    transform: translate(-50%, -50%);
  }

  .stakeholder-map::after {
    display: none;
  }

  .map-connections-desktop {
    display: none;
  }

  .map-connections-mobile {
    display: block;
  }

  .map-center {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    grid-row: 1;
    width: 145px;
    height: 145px;
    margin-inline: auto;
    padding: 0;
    border-radius: 50%;
    transform: none;
  }

  .map-center img {
    width: 76px;
    height: 88px;
  }

  .stakeholder {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .student { grid-column: 1; grid-row: 2; }
  .teacher { grid-column: 2; grid-row: 2; }
  .staff { grid-column: 1; grid-row: 3; }
  .parent { grid-column: 2; grid-row: 3; }

  .stakeholder-icon {
    width: 64px;
    height: 64px;
  }

  .about-copy {
    padding-top: 48px;
  }

  .about-copy h3 {
    font-size: 25px;
  }

  .gakulog {
    padding-top: 88px;
  }

  .gakulog-copy h2 {
    font-size: 30px;
  }

  .gakulog-visual {
    min-height: 0;
    padding: 64px 12px 20px;
  }

  .gakulog-visual img {
    width: 100%;
  }

  .visual-caption {
    top: 16px;
    left: 20px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .visual-caption-mark {
    width: 16px;
    height: 16px;
  }

  .learning-cycle {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 64px;
    padding: 16px;
  }

  .learning-cycle article {
    min-height: 200px;
  }

  .cycle-arrow {
    transform: rotate(90deg);
  }

  .abilities {
    margin-top: 96px;
    padding-bottom: 88px;
  }

  .abilities-description {
    font-size: 12px;
    line-height: 1.9;
  }

  .ability-cards {
    grid-template-columns: 1fr;
  }

  .ability-card {
    min-height: 215px;
  }

  .ability-card > span {
    margin-bottom: 40px;
  }

  .portfolio-side {
    min-height: auto;
    padding: 32px 24px;
  }

  .compare-arrow {
    width: 72px;
    height: 72px;
  }

  .portfolio-side h3 {
    font-size: 24px;
  }

  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 36px 0 0 28px;
  }

  .feature-large img {
    width: 135%;
    margin: 24px 0 -40px;
  }

  .feature-small {
    display: grid;
    grid-template-areas:
      "number visual"
      "title title"
      "copy copy";
    grid-template-columns: 1fr auto;
    column-gap: 16px;
    align-items: start;
    min-height: 335px;
    padding: 32px 24px;
  }

  .feature-small .feature-no {
    grid-area: number;
  }

  .feature-small h3,
  .feature-small p {
    max-width: none;
  }

  .feature-small h3 {
    grid-area: title;
    margin-top: 24px;
  }

  .feature-small p {
    grid-area: copy;
  }

  .mini-ui,
  .chat-ui {
    position: static;
    grid-area: visual;
    width: 120px;
    height: 112px;
    padding: 16px;
  }

  .chat-ui {
    gap: 8px;
  }

  .chat-ui i {
    height: 20px;
  }

  .feature-wide {
    min-height: 325px;
    padding: 32px 24px;
  }

  .feature-wide > div:first-child {
    max-width: 62%;
  }

  .feature-devices > div:first-child {
    max-width: none;
  }

  .feature-showcase .feature-devices h3 {
    font-size: clamp(18px, 5vw, 21px);
  }

  .feature-devices p {
    max-width: none;
  }

  .feature-showcase h3 {
    font-size: 21px;
  }

  .device-icons {
    flex-direction: row;
    align-items: flex-end;
  }

  .feature-devices .device-icons {
    position: static;
    justify-content: center;
    margin-top: 32px;
  }

  .device-icons span {
    width: 80px;
    height: 56px;
  }

  .device-icons span:nth-child(2) {
    width: 48px;
    height: 64px;
  }

  .device-icons span:nth-child(3) {
    width: 32px;
    height: 56px;
  }

  .support-mark {
    width: 75px;
    height: 75px;
  }

  .functions-block {
    margin-top: 96px;
  }

  .functions-heading {
    display: block;
    margin-bottom: 40px;
  }

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

  .function-card {
    min-height: 245px;
    padding: 24px 20px;
  }

  .function-card > span {
    top: 20px;
    right: 18px;
  }

  .function-card > b {
    width: 50px;
    height: 50px;
  }

  .function-card h3 {
    font-size: 16px;
  }

  .function-card p {
    font-size: 11px;
  }

  .ai-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ai-heading h2 {
    font-size: 30px;
  }

  .ai-cards {
    grid-template-columns: 1fr;
  }

  .ai-models {
    margin-top: 40px;
    padding-top: 32px;
  }

  .ai-models-heading {
    display: block;
  }

  .ai-models-heading .section-kicker {
    margin-bottom: 8px;
  }

  .ai-model-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ai-model-grid li {
    min-height: 88px;
    padding: 16px;
  }

  .ai-model-openai img {
    max-height: 52px;
  }

  .ai-model-gemini img,
  .ai-model-claude img {
    max-height: 22px;
  }

  .payment-grid {
    gap: 44px;
  }

  .payment-methods {
    margin-top: 0;
    padding: 16px;
  }

  .payment-methods article {
    gap: 16px;
    padding: 24px 8px;
  }

  .payment-methods h3 {
    font-size: 15px;
  }

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

  .merit-grid article,
  .merit-grid article:nth-child(4) {
    grid-column: auto;
    min-height: 220px;
    padding: 24px 16px;
  }

  .merit-grid article:last-child {
    grid-column: 1 / -1;
  }

  .merit-grid article:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .merit-grid span {
    margin-bottom: 32px;
    font-size: 48px;
  }

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

  .plan-card,
  .plan-card:nth-child(4) {
    grid-column: auto;
    min-height: auto;
    padding: 32px 24px;
  }

  .plan-ai {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plan-ai h3 {
    margin-bottom: 24px;
  }

  .plan-ai .price {
    margin-bottom: 8px;
  }

  .plan-ai-advisors,
  .plan-ai-supported {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .custom-plans {
    grid-template-columns: 1fr;
  }

  .custom-plans article {
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }

  .cta-section {
    padding: 88px 0;
  }

  .cta-inner h2 {
    font-size: 40px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .news-list a {
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 8px 16px;
    padding: 20px 8px;
  }

  .news-list time {
    grid-column: 1;
    font-size: 11px;
  }

  .news-list p {
    grid-column: 1;
    font-size: 14px;
    line-height: 1.7;
  }

  .news-list a > span {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .news-detail-hero {
    padding: 120px 0 64px;
  }

  .news-detail-hero::after {
    right: -160px;
    bottom: -200px;
    width: 360px;
    height: 360px;
  }

  .news-breadcrumb {
    margin-bottom: 32px;
  }

  .news-detail-header h1 {
    margin-bottom: 32px;
    font-size: 27px;
    line-height: 1.65;
  }

  .news-detail-meta {
    display: grid;
    gap: 8px;
    font-size: 11px;
  }

  .news-detail-meta time {
    padding-left: 0;
    border-left: 0;
  }

  .news-article {
    padding: 64px 0 88px;
  }

  .news-article-inner {
    width: calc(100% - 36px);
  }

  .news-article-content {
    font-size: 14px;
    line-height: 2;
  }

  .news-article-content .news-article-lead {
    margin-bottom: 32px;
    font-size: 15px;
  }

  .release-section {
    margin-top: 56px;
    padding-top: 32px;
  }

  .release-company-list {
    grid-template-columns: 1fr;
  }

  .release-company-card {
    padding: 24px;
  }

  .release-company-card h2 {
    min-height: 0;
    margin-bottom: 24px;
    font-size: 17px;
  }

  .release-company-card dl > div {
    grid-template-columns: 64px 1fr;
    gap: 12px;
  }

  .release-contact {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
    padding: 24px;
  }

  .release-contact h2 {
    font-size: 18px;
  }

  .release-source {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
    padding: 20px 4px;
  }

  .release-source a {
    font-size: 12px;
  }

  .news-back {
    margin-top: 40px;
  }

  .company-heading {
    position: static;
  }

  .company-visual {
    margin-top: 36px;
    padding: 32px;
  }

  .company-visual-logo {
    width: min(76%, 280px);
  }

  .company-data > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 4px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .footer-brand {
    width: 195px;
  }

  .footer-top nav {
    justify-content: flex-start;
    gap: 16px 24px;
  }

  .footer-bottom {
    align-items: flex-end;
    gap: 20px;
  }

  .footer-bottom small {
    max-width: 235px;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-points strong {
    font-size: 15px;
  }

  .feature-small h3,
  .feature-small p,
  .feature-wide:not(.feature-devices) > div:first-child {
    max-width: 66%;
  }

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

  .function-card {
    min-height: 215px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
