:root {
  --black: #0a0a0a;
  --panel: #111111;
  --panel-2: #171717;
  --white: #ffffff;
  --muted: #a4a4a4;
  --dim: #686868;
  --line: rgba(255, 255, 255, 0.14);
  --hot: #ff6b00;
  --hot-soft: rgba(255, 107, 0, 0.18);
  --glow: 0 0 30px rgba(255, 107, 0, 0.34);
  --radius: 8px;
  color: var(--white);
  background: var(--black);
  font-family: Inter, "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 107, 0, 0.16), transparent 18rem),
    linear-gradient(180deg, #050505, var(--black));
  font-family: inherit;
  line-height: 1.28;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  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: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

a,
button {
  -webkit-tap-highlight-color: rgba(255, 107, 0, 0.28);
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 107, 0, 0.28), transparent 12rem),
    #050505;
  animation: loaderExit 1.28s ease forwards;
}

.intro-loader img {
  width: min(270px, 66vw);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.28)) drop-shadow(0 0 28px rgba(255, 107, 0, 0.44));
  transform: scale(0.96);
  animation: logoIgnite 1.12s ease forwards;
}

.intro-loader span {
  position: absolute;
  right: 24px;
  bottom: 34px;
  left: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 66px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 107, 0, 0.28);
  background: rgba(5, 5, 5, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.brand-mark {
  display: block;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(255, 107, 0, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 14px;
  font-weight: 1000;
  line-height: 1;
}

.brand-text small {
  max-width: 170px;
  margin-top: 5px;
  overflow: hidden;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 107, 0, 0.54);
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.1);
  box-shadow: 0 0 18px rgba(255, 107, 0, 0.16);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-toggle:active {
  transform: scale(0.96);
  background: rgba(255, 107, 0, 0.22);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: var(--white);
}

.site-nav {
  position: fixed;
  top: 66px;
  right: 14px;
  left: 14px;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.96);
  box-shadow: var(--glow);
}

.site-header.is-open .site-nav {
  display: grid;
}

.site-nav a {
  min-height: 56px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  color: #f4f4f4;
  font-size: 16px;
  font-weight: 1000;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.site-nav a:last-child {
  border-bottom: 0;
}

.nav-contact {
  color: var(--hot) !important;
}

.site-nav a:active,
.footer-links a:active {
  transform: scale(0.985);
  background: rgba(255, 107, 0, 0.12);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 92px 0 0;
  background: #050505;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.62) 43%, #050505 96%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.18));
}

.hero-bg img {
  width: 100%;
  height: 56%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.1) contrast(1.08);
  transform: scale(1.05);
  animation: imageDrift 16s ease-in-out infinite alternate;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.24) 3px);
  mix-blend-mode: overlay;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
  align-content: end;
  min-height: calc(100svh - 92px);
  padding-bottom: 88px;
}

.hero-logo {
  width: min(220px, 64vw);
  margin: 0 0 18px -8px;
  filter: drop-shadow(0 0 28px rgba(255, 107, 0, 0.28));
}

.hero-tagline,
.eyebrow,
.section-code {
  margin: 0 0 14px;
  color: var(--hot);
  font-size: 11px;
  font-weight: 1000;
  line-height: 1;
}

.hero-tagline {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(255, 107, 0, 0.42);
  background: rgba(255, 107, 0, 0.08);
  box-shadow: var(--glow);
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(42px, 11.2vw, 60px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero-sub {
  margin: 22px 0 0;
  color: #f4f4f4;
  font-size: clamp(21px, 5.9vw, 28px);
  font-weight: 950;
  line-height: 1.2;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 1000;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button::after {
  margin-left: 10px;
  content: "→";
  font-size: 14px;
  line-height: 1;
}

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

.button:active {
  transform: scale(0.97);
}

.button-hot {
  border: 1px solid var(--hot);
  color: #080808;
  background: var(--hot);
  box-shadow: var(--glow);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
}

.service-card,
.area-grid span,
.why-item,
.flow-list li,
.partner-card,
.legal-panel article,
.company-list div,
.network-panel {
  cursor: default;
}

.network-panel {
  width: min(100%, 290px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.66);
  box-shadow: none;
}

.network-panel p,
.network-panel span {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
}

.network-panel strong {
  display: block;
  margin: 9px 0 2px;
  color: var(--hot);
  font-size: 72px;
  font-weight: 1000;
  line-height: 0.86;
}

.signal-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-top: 14px;
}

.signal-bars i {
  height: 30px;
  background: linear-gradient(180deg, var(--hot), transparent);
  animation: pulse 1.7s ease-in-out infinite;
}

.signal-bars i:nth-child(2) { animation-delay: 0.12s; }
.signal-bars i:nth-child(3) { animation-delay: 0.24s; }
.signal-bars i:nth-child(4) { animation-delay: 0.36s; }
.signal-bars i:nth-child(5) { animation-delay: 0.48s; }

.ticker {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 28px;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--hot);
  background: #050505;
  font-size: 11px;
  font-weight: 1000;
  white-space: nowrap;
}

.ticker span {
  animation: ticker 18s linear infinite;
}

.section {
  min-height: 92svh;
  padding: 74px 0;
}

.manifesto {
  display: grid;
  align-items: end;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 107, 0, 0.18), transparent 15rem),
    #0d0d0d;
}

.manifesto-grid,
.why-grid,
.contact-grid {
  display: grid;
  gap: 26px;
}

.manifesto-grid > *,
.why-grid > *,
.contact-grid > *,
.section-heading > *,
.why-item > * {
  min-width: 0;
}

.manifesto h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(34px, 9.2vw, 64px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.balanced-title span,
.partner-title span {
  display: block;
}

.manifesto p:last-child,
.contact-copy p,
.service-card p,
.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.image-break {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: #050505;
}

.image-break img {
  width: 100%;
  height: 100%;
  min-height: 92svh;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.1) saturate(1.05);
}

.image-break::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.84));
}

.image-break div {
  position: absolute;
  right: 14px;
  bottom: 26px;
  left: 14px;
  z-index: 2;
}

.image-break span,
.image-break strong {
  display: block;
  font-weight: 1000;
  line-height: 0.86;
}

.image-break span {
  color: var(--hot);
  font-size: clamp(38px, 12vw, 72px);
}

.image-break strong {
  color: var(--white);
  font-size: clamp(40px, 12.4vw, 76px);
}

.section-heading {
  margin-bottom: 22px;
}

.service-grid {
  display: grid;
  gap: 12px;
}

.service-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 46svh;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: var(--radius);
  background: transparent;
}

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

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

.service-card span,
.why-item span,
.flow-list span {
  color: var(--hot);
  font-size: 12px;
  font-weight: 1000;
}

.service-card h3 {
  margin: 84px 0 12px;
  font-size: clamp(34px, 9.8vw, 56px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1;
}

.area-section {
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 107, 0, 0.2), transparent 17rem),
    #070707;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.area-grid span {
  position: relative;
  display: grid;
  min-height: 82px;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.025);
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 1000;
}

.area-grid span::before {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.55);
  box-shadow: none;
}

.why-section {
  display: grid;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.why-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.why-item h3 {
  margin: 0;
  font-size: clamp(28px, 7.8vw, 48px);
  font-weight: 1000;
  line-height: 1;
  overflow-wrap: break-word;
}

.flow-section {
  background: #0d0d0d;
}

.flow-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.flow-list li {
  position: relative;
  min-height: 104px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: clamp(25px, 7vw, 42px);
  font-weight: 1000;
  line-height: 1.02;
}

.flow-list li:not(:last-child)::after {
  position: absolute;
  right: 20px;
  bottom: -19px;
  z-index: 3;
  content: "↓";
  color: var(--hot);
  font-size: 26px;
  text-shadow: var(--glow);
}

.flow-list span {
  display: block;
  margin-bottom: 28px;
}

.company-section {
  display: grid;
  align-items: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 107, 0, 0.14), transparent 16rem),
    #090909;
}

.company-layout {
  display: grid;
  gap: 28px;
}

.company-list {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.company-list div {
  display: grid;
  gap: 7px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.company-list div:last-child {
  border-bottom: 0;
}

.company-list dt {
  color: var(--hot);
  font-size: 12px;
  font-weight: 1000;
}

.company-list dd {
  margin: 0;
  color: #f2f2f2;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

.company-list a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 0, 0.72);
  text-underline-offset: 4px;
}

.contact-section {
  min-height: 100svh;
  padding: 78px 0 calc(128px + env(safe-area-inset-bottom));
  background:
    linear-gradient(145deg, rgba(255, 107, 0, 0.16), transparent 18rem),
    #050505;
}

.contact-copy p {
  margin-top: 22px;
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.contact-channels a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 19px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 1000;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.contact-channels a::after {
  margin-left: 9px;
  content: "→";
  font-size: 13px;
}

.contact-channels a:active {
  transform: scale(0.97);
  background: rgba(255, 107, 0, 0.14);
}

.contact-channels a:first-child {
  border-color: var(--hot);
  color: var(--hot);
  box-shadow: var(--glow);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 107, 0, 0.34);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.82);
  box-shadow: var(--glow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 1000;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 15px;
  color: var(--white);
  background: #050505;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--hot);
  outline: 2px solid rgba(255, 107, 0, 0.28);
}

.contact-form textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--hot);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.5;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 calc(108px + env(safe-area-inset-bottom));
  color: var(--muted);
  background: #050505;
}

.footer-inner {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 950;
}

.footer-inner div,
.footer-links {
  display: grid;
  gap: 8px;
}

.footer-inner strong {
  color: var(--white);
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #d8d8d8;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.footer-links a::after {
  margin-left: 8px;
  color: var(--hot);
  content: "→";
}

.mobile-dock {
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 0, 0.55);
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.55);
  box-shadow: var(--glow);
  backdrop-filter: blur(14px);
}

.mobile-dock a {
  display: grid;
  min-height: 64px;
  place-items: center;
  background: rgba(8, 8, 8, 0.92);
  color: var(--white);
  font-size: 14px;
  font-weight: 1000;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.mobile-dock a:first-child {
  color: var(--hot);
}

.mobile-dock a:active {
  transform: scale(0.96);
  background: rgba(255, 107, 0, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.subpage {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 107, 0, 0.14), transparent 20rem),
    #050505;
}

.sub-hero {
  position: relative;
  display: grid;
  min-height: 62svh;
  align-items: end;
  overflow: hidden;
  padding: 112px 0 58px;
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.thanks-hero {
  min-height: 100svh;
}

.sub-hero-bg {
  position: absolute;
  inset: 0;
}

.sub-hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), #080808 92%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.28));
}

.sub-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1.08);
}

.sub-hero .container {
  position: relative;
  z-index: 1;
}

.sub-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(32px, 8.6vw, 66px);
  font-weight: 1000;
  line-height: 1.08;
  word-break: keep-all;
  overflow-wrap: normal;
}

.partner-title {
  max-width: 11em;
}

.sub-hero p:last-child,
.sub-hero .container > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-section,
.partner-section {
  padding: 64px 0 86px;
}

.legal-panel {
  display: grid;
  gap: 12px;
}

.legal-panel article {
  padding: 22px;
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
}

.legal-panel h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.25;
}

.legal-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.partner-hero .hero-actions {
  margin-top: 28px;
}

.partner-card-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.partner-card {
  display: grid;
  min-height: 96px;
  align-items: end;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: clamp(24px, 7vw, 36px);
  font-weight: 1000;
}

.partner-tone {
  border-top: 1px solid var(--line);
  background: #090909;
}

.partner-layout {
  display: grid;
  gap: 28px;
}

.compact-area span {
  min-height: 76px;
}

@keyframes imageDrift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-14px, -6px, 0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.26; transform: scaleY(0.62); transform-origin: bottom; }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-520px); }
}

@keyframes loaderExit {
  0%, 62% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

@keyframes logoIgnite {
  0% { opacity: 0; transform: scale(0.92); filter: drop-shadow(0 0 0 rgba(255, 107, 0, 0)); }
  34% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.38)) drop-shadow(0 0 34px rgba(255, 107, 0, 0.5)); }
  100% { opacity: 1; transform: scale(1.02); filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.24)) drop-shadow(0 0 24px rgba(255, 107, 0, 0.34)); }
}

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

  .intro-loader {
    display: none;
  }
}

@media (min-width: 760px) {
  .container {
    width: min(1180px, calc(100% - 56px));
  }

  .brand-mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    max-width: none;
    font-size: 10px;
  }

  .hero-actions {
    grid-template-columns: 190px 190px;
  }

  .hero-bg img {
    height: 100%;
    object-position: center right;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.7) 38%, rgba(5, 5, 5, 0.14) 76%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.18), #0a0a0a 94%);
  }

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

  .contact-channels {
    max-width: 360px;
  }
}

@media (min-width: 1024px) {
  .site-header {
    min-height: 72px;
    padding: 14px 42px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    width: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    min-height: auto;
    padding: 10px 0;
    border: 0;
    font-size: 12px;
  }

  .site-nav {
    gap: 22px;
  }

  .nav-contact {
    padding: 10px 16px !important;
    border: 1px solid var(--hot) !important;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: end;
    min-height: calc(100svh - 178px);
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(74px, 8vw, 118px);
  }

  .hero-sub {
    font-size: clamp(28px, 3vw, 36px);
  }

  .manifesto-grid,
  .why-grid,
  .contact-grid,
  .company-layout,
  .partner-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 52px;
  }

  .manifesto-grid {
    grid-template-columns: 180px minmax(0, 1.2fr) minmax(260px, 0.8fr);
  }

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

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
  }

  .service-card {
    min-height: 360px;
    border: 0;
    border-radius: 0;
  }

  .service-card h3 {
    font-size: clamp(28px, 3vw, 40px);
  }

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

  .flow-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
  }

  .flow-list li {
    min-height: 180px;
    border: 0;
    border-radius: 0;
    font-size: clamp(18px, 2vw, 28px);
  }

  .flow-list li:not(:last-child)::after {
    right: -14px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-90deg);
  }

  .company-list div {
    grid-template-columns: 150px 1fr;
    gap: 22px;
    padding: 20px 24px;
  }

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

  .partner-card-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
  }

  .partner-card {
    min-height: 230px;
    border: 0;
    border-radius: 0;
    font-size: clamp(20px, 2.2vw, 30px);
  }

  .footer-inner {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .footer-links {
    grid-auto-flow: column;
    gap: 18px;
  }

  .mobile-dock {
    display: none;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}
