:root {
  --ink: #303b47;
  --ink-soft: #5f6c77;
  --paper: #f6f9f9;
  --white: #ffffff;
  --line: #d8e0e2;
  --night: #46515f;
  --night-soft: #394550;
  --lime: #bce7e2;
  --mint: #83c9c1;
  --sky: #bddde2;
  --orange: #d7e8e7;
  --radius: 28px;
  --radius-sm: 16px;
  --shadow: 0 24px 70px rgba(48, 59, 71, 0.14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Noto Sans JP", "Noto Sans TC", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--night);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: padding 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(217, 223, 216, 0.78);
  background: rgba(245, 247, 242, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.brand-logo {
  width: auto;
  height: 34px;
  max-width: 150px;
  object-fit: contain;
}

.nav-panel,
.nav-links,
.locale-links {
  display: flex;
  align-items: center;
}

.nav-panel {
  gap: 30px;
}

.nav-links {
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #4f5c67;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.locale-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.locale-links a:hover,
.locale-links a[aria-current="page"] {
  color: #347a77;
}

.locale-links {
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.locale-links a {
  padding: 5px 8px;
  border-radius: 999px;
}

.locale-links a[aria-current="page"] {
  color: var(--night);
  background: var(--lime);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: var(--night);
}

.button-secondary {
  border-color: #bdc6bf;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 33, 29, 0.16);
}

.button-primary:hover,
.nav-cta:hover {
  background: #34404c;
}

.button-light {
  color: var(--night);
  background: var(--lime);
}

.button-light:hover {
  background: #d6ff6b;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 168px 0 108px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 86% 15%, rgba(200, 255, 55, 0.37), transparent 25%),
    radial-gradient(circle at 12% 66%, rgba(112, 225, 180, 0.2), transparent 30%),
    linear-gradient(#f8fbfb, #edf4f4);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(16, 23, 22, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 23, 22, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  color: #53616b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(200, 255, 55, 0.24);
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 6.5vw, 94px);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.hero h1 .accent {
  display: inline;
  background: linear-gradient(transparent 66%, var(--lime) 66%);
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-note {
  margin-top: 20px;
  color: #697672;
  font-size: 12px;
  font-weight: 700;
}

.signal-board {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  color: var(--white);
  background: var(--night);
  box-shadow: var(--shadow);
  transform: rotate(1.8deg);
}

.signal-board::before {
  position: absolute;
  inset: 12px -12px -12px 12px;
  z-index: -1;
  border-radius: 34px;
  background: var(--lime);
  content: "";
}

.signal-top,
.signal-line,
.signal-metrics {
  display: flex;
  align-items: center;
}

.signal-top {
  justify-content: space-between;
  padding: 4px 4px 18px;
  color: #a9b9b3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.live-dot::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px var(--lime);
  content: "";
}

.signal-main {
  padding: 26px;
  border: 1px solid #63717d;
  border-radius: 22px;
  background: var(--night-soft);
}

.signal-main strong {
  display: block;
  margin-bottom: 4px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.signal-main > span {
  color: #9aaba5;
  font-size: 13px;
}

.signal-flow {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.signal-line {
  justify-content: space-between;
  padding: 13px 14px;
  border: 1px solid #65737e;
  border-radius: 14px;
  color: #dce6e2;
  background: #414d59;
  font-size: 12px;
  font-weight: 700;
}

.signal-line span:last-child {
  color: var(--lime);
}

.signal-metrics {
  gap: 10px;
  margin-top: 12px;
}

.metric {
  flex: 1;
  padding: 16px;
  border-radius: 16px;
  background: #dff3f0;
  color: var(--night);
}

.metric:nth-child(2) {
  background: #ccebe7;
}

.metric b,
.metric small {
  display: block;
}

.metric b {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.metric small {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-height: 92px;
  padding: 24px;
  border-right: 1px solid var(--line);
  color: #4d5a65;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.trust-list li:first-child {
  border-left: 1px solid var(--line);
}

.section {
  padding: 116px 0;
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-kicker {
  display: block;
  margin-bottom: 14px;
  color: #64736e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: var(--lime);
}

.section h2,
.about-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.section-dark .section-lead {
  color: #a7b6b1;
}

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

.service-card {
  position: relative;
  min-height: 410px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--card-color, var(--lime));
  opacity: 0.42;
  content: "";
}

.service-card:nth-child(2) {
  --card-color: var(--mint);
}

.service-card:nth-child(3) {
  --card-color: var(--sky);
}

.service-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #596762;
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  max-width: 290px;
  margin: 78px 0 14px;
  font-size: 30px;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.tag-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 800;
}

.kamui-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  gap: 80px;
  align-items: center;
}

.product-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 7px 12px;
  border: 1px solid #71818d;
  border-radius: 999px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-copy h2 {
  margin-bottom: 22px;
}

.product-copy p {
  max-width: 580px;
  margin: 0;
  color: #d0dade;
  font-size: 17px;
}

.product-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.product-points li {
  display: flex;
  gap: 12px;
  color: #eef4f5;
  font-size: 14px;
}

.product-points li::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.terminal {
  padding: 15px;
  border: 1px solid #687784;
  border-radius: 28px;
  background: #3b4753;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
}

.terminal-bar {
  display: flex;
  gap: 6px;
  padding: 4px 3px 16px;
}

.terminal-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #465752;
}

.terminal-screen {
  min-height: 360px;
  padding: 28px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(200, 255, 55, 0.025) 1px, transparent 1px),
    #2d3741;
  background-size: 100% 28px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  line-height: 1.9;
}

.terminal-screen p {
  margin: 0 0 10px;
  color: #aebbc3;
}

.terminal-screen .command {
  color: #f2f6f7;
}

.terminal-screen .command::before {
  color: var(--lime);
  content: "$ ";
}

.terminal-screen .success {
  color: var(--mint);
}

.terminal-url {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 13px;
  border-radius: 10px;
  color: var(--night);
  background: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 900;
}

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

.process-item {
  min-height: 270px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.process-item:first-child {
  border-left: 1px solid var(--line);
}

.process-item span {
  color: #718079;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-item h3 {
  margin: 72px 0 12px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.process-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.fit-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: 64px;
  border-radius: 36px;
  color: var(--white);
  background: #46515f;
}

.fit-panel h2 {
  font-size: clamp(36px, 4.8vw, 60px);
}

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

.fit-list li {
  padding: 16px 18px;
  border: 1px solid #687783;
  border-radius: 14px;
  color: #eef3f4;
  background: rgba(255, 255, 255, 0.025);
  font-size: 14px;
}

.about-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 0.4fr);
  gap: 80px;
  align-items: center;
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--white);
}

.about-teaser h2 {
  font-size: clamp(36px, 5vw, 62px);
}

.about-teaser p {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.about-facts {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.about-fact {
  padding: 18px;
  background: #fafbf8;
}

.about-fact span,
.about-fact b {
  display: block;
}

.about-fact span {
  color: #7b8783;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-fact b {
  margin-top: 5px;
  font-size: 14px;
}

.about-teaser .button {
  margin-top: 28px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 8px;
  top: 22px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  text-align: center;
  line-height: 28px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -4px 60px 24px 0;
  color: var(--ink-soft);
}

.cta-section {
  padding: 40px 0 90px;
}

.cta-panel {
  position: relative;
  padding: 80px 64px;
  overflow: hidden;
  border-radius: 40px;
  color: var(--white);
  background: var(--night);
}

.cta-panel::after {
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.82;
  content: "";
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.5vw, 78px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.cta-panel p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 24px 0 30px;
  color: #acbbb6;
}

.cta-panel .button {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.footer-copy {
  margin: 16px 0 0;
  color: #6f7d78;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: #52615c;
  font-size: 12px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* Company / founder pages */
.about-hero {
  padding: 178px 0 96px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 15%, rgba(200, 255, 55, 0.4), transparent 28%),
    var(--paper);
}

.about-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) 1fr;
  gap: 90px;
}

.company-grid h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.founder-card {
  padding: 42px;
  border-radius: 28px;
  color: var(--white);
  background: var(--night);
}

.founder-role {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-name {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.founder-placeholder {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border: 1px dashed #64736e;
  border-radius: 8px;
  color: #a7b6b1;
  font-size: 11px;
}

.founder-message {
  margin: 30px 0 0;
  color: #c3cfcb;
}

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

.company-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.company-row dt {
  color: #718079;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-row dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    gap: 12px;
  }

  .nav-panel.is-open {
    position: fixed;
    inset: 76px 20px auto;
    display: grid;
    gap: 20px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-panel.is-open .nav-links,
  .nav-panel.is-open .nav-cta {
    display: flex;
  }

  .nav-panel.is-open .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-panel.is-open .nav-links a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-panel.is-open .locale-links {
    justify-self: start;
  }

  .hero-grid,
  .kamui-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 70px;
  }

  .signal-board {
    width: min(100%, 640px);
  }

  .section-head,
  .fit-panel,
  .about-teaser,
  .company-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .service-card {
    min-height: 340px;
  }

  .service-card h3 {
    margin-top: 48px;
  }

  .process-grid,
  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-list li:nth-child(3),
  .process-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .trust-list li:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding: 10px 0;
  }

  .brand-logo {
    height: 32px;
    max-width: 140px;
  }

  .locale-links {
    display: none;
  }

  .nav-panel.is-open .locale-links {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 86px;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(47px, 15vw, 70px);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .signal-board {
    padding: 12px;
    border-radius: 24px;
    transform: rotate(0);
  }

  .signal-board::before {
    inset: 7px -7px -7px 7px;
    border-radius: 24px;
  }

  .signal-main,
  .terminal-screen {
    padding: 20px;
  }

  .trust-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-list li,
  .trust-list li:first-child,
  .trust-list li:nth-child(3),
  .process-item,
  .process-item:first-child,
  .process-item:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 84px 0;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .fit-panel,
  .about-teaser,
  .founder-card {
    padding: 32px 24px;
    border-radius: 26px;
  }

  .kamui-shell {
    gap: 50px;
  }

  .terminal-screen {
    min-height: 310px;
    overflow-wrap: anywhere;
    font-size: 11px;
  }

  .process-item {
    min-height: 230px;
  }

  .cta-panel {
    padding: 54px 26px 250px;
    border-radius: 28px;
  }

  .cta-panel::after {
    right: -90px;
    bottom: -180px;
    width: 360px;
    height: 360px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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