:root {
  --ink: #08090d;
  --paper: #ffffff;
  --soft: #f5f7f9;
  --line: #dfe4eb;
  --gray: #687180;
  --muted: #98a1ad;
  --magenta: #ec3f96;
  --cyan: #11bfe3;
  --lime: #96e52a;
  --max: 1180px;
  --radius: 8px;
  --shadow-soft: 0 18px 50px rgba(8, 9, 13, 0.08);
  --shadow-card: 0 24px 60px rgba(8, 9, 13, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-feature-settings: "palt" 1;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 8px 12px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(8, 9, 13, 0.08);
  box-shadow: 0 12px 36px rgba(8, 9, 13, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--max));
  height: 88px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  height: 88px;
  max-width: min(48vw, 420px);
  overflow: hidden;
}

.brand img {
  width: auto;
  height: 88px;
  max-width: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav a {
  position: relative;
  color: var(--gray);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  transition: color 0.2s ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:last-child {
  padding: 10px 18px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--magenta), #d72f84);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(236, 63, 150, 0.22);
  transition: color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.site-nav a:last-child::after {
  display: none;
}

.site-nav a:last-child:hover,
.site-nav a:last-child:focus-visible {
  color: var(--paper);
  box-shadow: 0 16px 34px rgba(236, 63, 150, 0.28);
  transform: translateY(-1px);
}

.menu-button {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  background: var(--ink);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-button span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 7px));
}

.menu-button span:nth-child(2) {
  transform-origin: right center;
}

.menu-button span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 7px));
}

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

.menu-button[aria-expanded="true"] span:nth-child(2) {
  transform: translate(-50%, -50%) scaleX(0);
}

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

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: #f8fafc;
  border-bottom: 1px solid rgba(8, 9, 13, 0.08);
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 50%, rgba(17, 191, 227, 0.1) 50.2%, rgba(236, 63, 150, 0.08) 62%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(245, 247, 249, 0.92) 100%);
  opacity: 0.9;
}

.hero::after {
  right: 0;
  bottom: 0;
  width: min(58vw, 720px);
  height: min(42vw, 480px);
  background:
    linear-gradient(rgba(8, 9, 13, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 9, 13, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.72) 48%, transparent 100%);
  mask-image: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.72) 48%, transparent 100%);
  opacity: 0.28;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 30%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 64%, rgba(245, 247, 249, 0.88) 100%),
    url("../img/hero-soleon.png") center / cover no-repeat;
  transform: scale(1.01);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 48px, var(--max));
  min-height: 88svh;
  margin: 0 auto;
  padding: 126px 0 84px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

h1 {
  margin: 0;
  font-size: 154px;
  font-weight: 950;
  line-height: 0.84;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgba(8, 9, 13, 0.08);
}

h1 .accent,
h2 .accent,
.pink {
  color: var(--magenta);
}

.cyan {
  color: var(--cyan);
}

.lime {
  color: var(--lime);
}

.hero-copy {
  margin: 34px 0 6px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.34;
}

.hero-subcopy {
  margin: 0;
  color: var(--magenta);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-line {
  width: 104px;
  height: 5px;
  margin: 40px 0;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(236, 63, 150, 0.2);
}

.section {
  position: relative;
  padding: 128px 0;
}

.section-inner {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.intro-grid,
.company-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

.intro-grid {
  grid-template-columns: minmax(470px, 1fr) minmax(0, 0.95fr);
  gap: 104px;
}

h2 {
  margin: 0;
  font-size: 62px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: 0;
}

.line {
  display: block;
  color: inherit;
  white-space: nowrap;
}

h3,
p,
dd,
li {
  overflow-wrap: break-word;
}

.lead-block {
  max-width: 680px;
  padding-top: 50px;
  color: var(--gray);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.95;
}

.lead-block p {
  margin: 0 0 24px;
}

.intro-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(245, 247, 249, 0.7) 100%),
    var(--paper);
}

.concept-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 42%),
    var(--soft);
}

.concept-grid {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  column-gap: 52px;
  row-gap: 18px;
  align-items: center;
  margin-top: 70px;
}

.soleon-stack {
  display: contents;
}

.soleon-stack span {
  grid-column: 1;
  justify-self: center;
  display: grid;
  align-items: center;
  min-height: 80px;
  font-size: 86px;
  font-weight: 950;
  line-height: 0.9;
  text-shadow: 0 14px 34px rgba(8, 9, 13, 0.08);
}

.concept-list {
  display: contents;
  margin: 0;
}

.concept-list div {
  grid-column: 2;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(8, 9, 13, 0.1);
}

.soleon-stack span:nth-child(1),
.concept-list div:nth-child(1) {
  grid-row: 1;
}

.soleon-stack span:nth-child(2),
.concept-list div:nth-child(2) {
  grid-row: 2;
}

.soleon-stack span:nth-child(3),
.concept-list div:nth-child(3) {
  grid-row: 3;
}

.soleon-stack span:nth-child(4),
.concept-list div:nth-child(4) {
  grid-row: 4;
}

.soleon-stack span:nth-child(5),
.concept-list div:nth-child(5) {
  grid-row: 5;
}

.soleon-stack span:nth-child(6),
.concept-list div:nth-child(6) {
  grid-row: 6;
}

.concept-list dt {
  font-size: 30px;
  font-weight: 950;
  line-height: 1.2;
}

.concept-list dd {
  margin: 0;
  color: var(--gray);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.service-hero {
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(236, 63, 150, 0.16) 0%, transparent 34%),
    linear-gradient(135deg, #08090d 0%, #11131a 64%, #151821 100%);
  overflow: hidden;
}

.service-hero::after {
  position: absolute;
  right: -12%;
  top: 18%;
  width: 48%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(17, 191, 227, 0.46), rgba(236, 63, 150, 0.4), transparent);
  transform: rotate(-18deg);
  transform-origin: center;
}

.service-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 21px;
  line-height: 1.85;
}

.service-detail {
  padding-top: 0;
  background:
    linear-gradient(180deg, var(--soft) 0%, var(--paper) 72%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  transform: translateY(-42px);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 680px;
  padding: 28px 44px 42px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    var(--paper);
  border: 1px solid rgba(8, 9, 13, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.service-card:hover {
  border-color: rgba(8, 9, 13, 0.16);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.service-card::before {
  position: absolute;
  left: 44px;
  top: 0;
  width: min(68%, 360px);
  height: 5px;
  content: "";
  background: var(--service-accent);
  border-radius: 0 0 999px 999px;
}

.service-card::after {
  position: absolute;
  right: 28px;
  top: 14px;
  color: rgba(8, 9, 13, 0.04);
  font-size: 124px;
  font-weight: 950;
  line-height: 0.8;
  content: "";
  pointer-events: none;
}

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

.service-card.consulting {
  --service-accent: var(--magenta);
  --service-icon-bg: rgba(236, 63, 150, 0.12);
}

.service-card.consulting::after {
  content: "01";
}

.service-card.prototype {
  --service-accent: var(--lime);
  --service-icon-bg: rgba(150, 229, 42, 0.14);
}

.service-card.prototype::after {
  content: "02";
}

.service-kicker {
  margin: 58px 0 22px;
  color: var(--service-accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 38px;
  font-weight: 950;
  line-height: 1.24;
  overflow-wrap: normal;
  word-break: keep-all;
}

.service-summary {
  margin: 0 0 34px;
  color: var(--gray);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.85;
}

.single-line {
  display: block;
  max-width: 100%;
  overflow-wrap: normal;
  white-space: nowrap;
}

.service-card h3.single-line {
  font-size: 34px;
}

.service-card.prototype .service-summary.single-line {
  white-space: normal;
}

.service-items {
  display: grid;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0;
}

.service-items li {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 0;
  border-bottom: 0;
}

.service-card li::before {
  display: none;
}

.service-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  color: var(--service-accent);
  background: var(--service-icon-bg);
  border: 1px solid rgba(8, 9, 13, 0.06);
  border-color: color-mix(in srgb, var(--service-accent) 28%, transparent);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 24px rgba(8, 9, 13, 0.06);
}

.service-item-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item-body {
  display: grid;
  gap: 8px;
  padding-top: 3px;
}

.service-item-body strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.45;
}

.service-item-body span {
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 132px;
  }

  h2 {
    font-size: 52px;
  }

  .line {
    white-space: normal;
  }

  .intro-grid {
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
    gap: 64px;
  }

  .lead-block {
    font-size: 18px;
  }

  .hero-copy {
    font-size: 36px;
  }
}

.company-section {
  background:
    linear-gradient(180deg, var(--paper) 0%, #fafbfd 100%);
}

.company-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 54px;
  margin: 0;
  padding-top: 10px;
}

.company-list div {
  display: grid;
  gap: 8px;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(8, 9, 13, 0.11);
}

.company-list div:last-child {
  grid-column: 1 / -1;
}

.company-list dt {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.company-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.38;
}

.contact-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(236, 63, 150, 0.12) 0%, transparent 42%),
    linear-gradient(145deg, #08090d 0%, #11131a 100%);
}

.contact-inner {
  display: grid;
  gap: 22px;
}

.contact-section p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.85;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--max));
  min-height: 92px;
  margin: 0 auto;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  color: var(--paper);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
}

.footer-inner small {
  font-size: 12px;
  letter-spacing: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.72s var(--ease),
    transform 0.72s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (max-width: 900px) {
  .header-inner {
    width: 100%;
    height: 72px;
    padding-right: 16px;
  }

  .brand {
    height: 72px;
    max-width: calc(100vw - 92px);
  }

  .brand img {
    width: auto;
    height: 72px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 24px 20px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 34px rgba(8, 9, 13, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

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

  .site-nav a {
    padding: 14px 0;
  }

  .site-nav a:last-child {
    margin-top: 8px;
    padding: 12px 18px;
    text-align: center;
  }

  .hero,
  .hero-inner {
    min-height: 82svh;
  }

  .hero::after {
    width: 76vw;
    height: 44vh;
    opacity: 0.18;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.42) 100%),
      url("../img/hero-soleon.png") center bottom / cover no-repeat;
  }

  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 32px, var(--max));
  }

  .hero-inner {
    padding: 96px 0 44px;
  }

  .section {
    padding: 88px 0;
  }

  h1 {
    font-size: 104px;
  }

  h2 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 32px;
  }

  .hero-subcopy {
    font-size: 16px;
  }

  .intro-grid,
  .company-grid,
  .concept-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .company-grid,
  .concept-grid {
    gap: 36px;
  }

  .lead-block {
    padding-top: 0;
    font-size: 17px;
    line-height: 1.9;
  }

  .concept-grid {
    margin-top: 46px;
  }

  .soleon-stack,
  .concept-list {
    display: grid;
  }

  .soleon-stack {
    grid-template-columns: repeat(6, max-content);
    gap: 16px;
    justify-items: start;
    justify-content: start;
  }

  .soleon-stack span,
  .concept-list div {
    grid-column: auto;
    grid-row: auto;
  }

  .soleon-stack span:nth-child(n),
  .concept-list div:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .soleon-stack span {
    justify-self: start;
    min-height: auto;
    font-size: 64px;
    line-height: 1;
  }

  .concept-list {
    gap: 22px;
  }

  .concept-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .concept-list dt {
    font-size: 26px;
  }

  .concept-list dd {
    font-size: 16px;
  }

  .service-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .service-grid {
    transform: translateY(-24px);
  }

  .service-hero p .line {
    white-space: normal;
  }

  .service-card {
    min-height: auto;
    padding: 28px 32px 36px;
  }

  .service-card::before {
    left: 32px;
  }

  .service-card h3,
  .service-card h3.single-line,
  .service-card.prototype h3.single-line {
    font-size: 30px;
    white-space: normal;
  }

  .service-summary,
  .service-card.prototype .service-summary.single-line {
    font-size: 15px;
  }

  .service-summary.single-line {
    white-space: normal;
  }

  .service-items {
    gap: 24px;
  }

  .service-item-body strong {
    font-size: 18px;
  }

  .service-item-body span {
    font-size: 15px;
  }

  .company-list dd {
    font-size: 22px;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  body {
    line-height: 1.68;
  }

  .hero,
  .hero-inner {
    min-height: 80svh;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0;
  }

  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 34px;
    line-height: 1.24;
  }

  .service-card h3,
  .service-card h3.single-line,
  .service-card.prototype h3.single-line {
    font-size: 22px;
  }

  .service-summary,
  .service-card.prototype .service-summary.single-line {
    font-size: 13px;
  }

  .soleon-stack {
    gap: 12px;
  }

  .soleon-stack span {
    font-size: 46px;
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 24px;
    line-height: 1.42;
  }

  .hero-subcopy {
    font-size: 13px;
    letter-spacing: 0;
  }

  .service-card {
    width: 100%;
    min-width: 0;
    padding: 24px 20px 30px;
  }

  .service-card::before {
    left: 20px;
  }

  .service-card::after {
    right: 12px;
    top: 18px;
    font-size: 86px;
  }

  .service-kicker {
    margin-top: 52px;
    font-size: 11px;
    letter-spacing: 0;
  }

  .service-summary {
    margin-bottom: 22px;
  }

  .service-items {
    gap: 22px;
  }

  .service-items li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
  }

  .service-item-icon {
    width: 54px;
    height: 54px;
  }

  .service-item-icon svg {
    width: 28px;
    height: 28px;
  }

  .service-item-body {
    gap: 5px;
    padding-top: 0;
  }

  .service-item-body strong {
    font-size: 16px;
  }

  .service-item-body span {
    font-size: 13px;
    line-height: 1.65;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 0;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 64px;
  }

  .hero-copy {
    font-size: 22px;
  }

  .soleon-stack {
    gap: 10px;
  }

  .soleon-stack span {
    font-size: 42px;
  }

  .service-card h3,
  .service-card h3.single-line,
  .service-card.prototype h3.single-line {
    font-size: 20px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
    transition-delay: 0ms !important;
  }
}
