:root {
  --bg: #f7f5ef;
  --surface: #ffffff;
  --ink: #15171c;
  --muted: #626873;
  --line: rgba(21, 23, 28, 0.14);
  --dark: #0d0f14;
  --dark-soft: #151923;
  --light: #f4efe4;
  --cyan: #34c6d3;
  --green: #85c95f;
  --amber: #efb750;
  --coral: #e66f55;
  --violet: #7b2cff;
  --blue: #2088f2;
  --max: 1160px;
  --header: 60px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  width: 100%;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 42px);
  color: var(--light);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(244, 239, 228, 0.08);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 15, 20, 0.9);
  border-color: rgba(244, 239, 228, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  line-height: 1;
}

.brand-mark {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-sub {
  color: rgba(244, 239, 228, 0.78);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(244, 239, 228, 0.76);
}

.site-nav .nav-cta {
  min-width: 164px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(90deg, #9335ff, #1c91ff);
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 239, 228, 0.18);
  border-radius: 6px;
  background: transparent;
  color: var(--light);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.section {
  padding: clamp(36px, 4.8vw, 54px) clamp(18px, 4vw, 42px);
}

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

.section-muted {
  background: #ebe8df;
  padding-top: 36px;
  padding-bottom: 38px;
}

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

.hero {
  position: relative;
  min-height: clamp(390px, 42vw, 520px);
  padding: var(--header) clamp(18px, 4vw, 42px) 36px;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.96) 0%, rgba(5, 6, 9, 0.78) 30%, rgba(5, 6, 9, 0.08) 66%, rgba(5, 6, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 6, 9, 0.12) 0%, rgba(5, 6, 9, 0) 48%, rgba(5, 6, 9, 0.66) 100%);
  pointer-events: none;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: block;
}

.hero-copy {
  max-width: 640px;
  padding-top: 2svh;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--violet);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading .eyebrow {
  color: var(--violet);
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--amber);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 650px;
  color: var(--light);
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(3rem, 5.9vw, 4.78rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h1 span:nth-child(2),
h1 span:nth-child(3) {
  display: inline;
}

h1 span:nth-child(2)::after {
  content: " ";
}

.hero-lead {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(244, 239, 228, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.85;
}

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

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 248px;
  min-height: 48px;
  margin-top: 26px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, #9734ff, #168cff);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 32px rgba(32, 136, 242, 0.24);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #101217;
  background: var(--amber);
  border-color: var(--amber);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd16b;
}

.button-ghost {
  color: var(--light);
  border-color: rgba(244, 239, 228, 0.24);
  background: rgba(244, 239, 228, 0.06);
}

.hero-panel {
  border: 1px solid rgba(244, 239, 228, 0.16);
  border-radius: 8px;
  background: rgba(13, 15, 20, 0.48);
  backdrop-filter: blur(14px);
  padding: 22px;
}

.hero-panel p {
  margin: 0 0 18px;
  color: rgba(244, 239, 228, 0.58);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-panel li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  border-top: 1px solid rgba(244, 239, 228, 0.12);
  color: var(--light);
  font-weight: 800;
}

.hero-panel span {
  color: var(--cyan);
  font-size: 0.82rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.section-heading h2,
.value-copy h2,
.company-copy h2,
.contact-copy h2,
#news h2,
#company h2,
#contact h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.28;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.value-copy p:not(.eyebrow),
.company-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

.section-dark .section-heading p,
.section-dark .company-copy p {
  color: rgba(244, 239, 228, 0.7);
}

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

#business {
  padding-top: 36px;
  padding-bottom: 50px;
}

#business .section-heading p {
  display: none;
}

.business-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 260px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 43%, rgba(255, 255, 255, 0.34) 100%),
    var(--business-art);
  background-position: center;
  background-size: cover;
}

.business-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.82));
}

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

.business-ip {
  --business-art: url("assets/images/project-ip-girl.webp");
}

.business-ai {
  --business-art: url("assets/images/project-chat-girl.webp");
}

.business-ad {
  --business-art: url("assets/images/project-ad-girl.webp");
}

.card-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--coral);
  font-weight: 900;
  line-height: 1;
}

.business-card h3 {
  margin: 14px 0 8px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.business-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.58;
}

.tag-list {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list li {
  padding: 0 0 0 14px;
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #242833;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.38;
}

.tag-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.business-card .tag-list {
  display: grid;
  gap: 4px;
}

.business-ip .card-number,
.business-ip .tag-list li {
  color: #7333d2;
}

.business-ai .card-number,
.business-ai .tag-list li {
  color: #1766ae;
}

.business-ad .card-number,
.business-ad .tag-list li {
  color: #107966;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.45fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.value-copy {
  position: static;
}

.value-copy p {
  margin-top: 14px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.flow-step {
  --flow-color: var(--coral);
  position: relative;
  min-height: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  color: var(--flow-color);
}

.flow-step:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 28px;
  right: -20px;
  color: var(--flow-color);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.flow-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 28px rgba(16, 18, 24, 0.08);
}

.flow-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.flow-index {
  display: block;
  margin-bottom: 5px;
  color: var(--flow-color);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.flow-step h3 {
  margin: 0 0 7px;
  color: var(--flow-color);
  font-size: 0.86rem;
  line-height: 1.45;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.flow-step:nth-child(2) {
  --flow-color: #1f67b2;
}

.flow-step:nth-child(3) {
  --flow-color: #1676a8;
}

.flow-step:nth-child(4) {
  --flow-color: #188270;
}

.flow-step:nth-child(5) {
  --flow-color: #7a3ee5;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.project-item {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: 0 22px 48px rgba(13, 15, 20, 0.16);
}

.project-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 15, 20, 0.02) 0%, rgba(13, 15, 20, 0.24) 42%, rgba(13, 15, 20, 0.95) 100%),
    linear-gradient(90deg, rgba(13, 15, 20, 0.58), rgba(13, 15, 20, 0));
}

.project-item picture,
.project-item img {
  display: block;
  width: 100%;
  height: 100%;
}

.project-item img {
  min-height: 200px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.project-item:hover img,
.project-item:focus-within img {
  transform: scale(1.045);
}

.project-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 16px;
  color: var(--light);
}

.project-body span {
  color: var(--amber);
  font-size: 0.66rem;
  font-weight: 900;
}

.project-body h3 {
  margin: 7px 0 6px;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  line-height: 1.28;
}

.project-body p {
  margin: 0;
  color: rgba(244, 239, 228, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.55;
}

.info-lead {
  max-width: 52em;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

.info-news {
  background:
    linear-gradient(140deg, rgba(255, 253, 245, 0.98), rgba(255, 246, 220, 0.82)),
    radial-gradient(circle at 100% 8%, rgba(239, 183, 80, 0.18), transparent 36%);
}

.info-company {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.76)),
    radial-gradient(circle at 100% 8%, rgba(32, 136, 242, 0.1), transparent 32%);
}

.info-contact {
  color: var(--light);
  background:
    linear-gradient(145deg, rgba(12, 14, 20, 0.96), rgba(20, 24, 34, 0.96)),
    radial-gradient(circle at 90% 0%, rgba(32, 136, 242, 0.35), transparent 36%);
}

.info-contact h2,
.info-contact p,
.info-contact .form-group label {
  color: var(--light);
}

.info-contact p {
  color: rgba(244, 239, 228, 0.72);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.75rem;
}

.company-table th,
.company-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  line-height: 1.6;
  vertical-align: top;
}

.company-table th {
  white-space: nowrap;
  color: var(--ink);
  font-weight: 700;
  width: 6em;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: 0;
}

.business-list {
  margin: 0;
  padding-left: 1.4em;
  line-height: 1.8;
}

.compact-contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid rgba(21, 23, 28, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.78rem;
  font-family: inherit;
  line-height: 1.45;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(32, 136, 242, 0.14);
}

.form-group textarea {
  resize: vertical;
  min-height: 92px;
}

.form-submit {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9335ff, #1c91ff);
  color: #ffffff;
  border: none;
  font-size: 0.82rem;
  font-weight: 900;
  font-family: inherit;
  letter-spacing: 0;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.form-submit:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.contact-status {
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 8px;
}

.contact-success {
  background: #e6f4ea;
  color: #1e6b3a;
}

.contact-error {
  background: #fce8e6;
  color: #a50e0e;
}

.news-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  border-top: 0;
}

.news-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(21, 23, 28, 0.1);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.7;
}

.news-item-featured {
  padding: 16px 14px;
  border: 1px solid rgba(123, 44, 255, 0.18);
  border-radius: 8px;
  background: rgba(123, 44, 255, 0.05);
}

.news-list time {
  color: var(--violet);
  font-weight: 900;
}

.news-list span {
  color: var(--ink);
}

.small-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 128px;
  min-height: 32px;
  margin-top: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(21, 23, 28, 0.28);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.company-profile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
}

.company-profile div {
  padding: 10px 11px;
  border: 1px solid rgba(21, 23, 28, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.company-profile .profile-wide {
  grid-column: 1 / -1;
}

.company-profile dt {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.company-profile dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.5;
}

.company-tags,
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.company-tags span,
.contact-points li {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
}

.company-tags span {
  color: #165c99;
  background: rgba(32, 136, 242, 0.1);
}

.contact-points li {
  color: rgba(244, 239, 228, 0.88);
  border: 1px solid rgba(244, 239, 228, 0.14);
  background: rgba(244, 239, 228, 0.06);
}

.info-contact .form-group input,
.info-contact .form-group textarea {
  border-color: rgba(244, 239, 228, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--light);
}

.info-contact .form-group input:focus,
.info-contact .form-group textarea:focus {
  border-color: rgba(32, 136, 242, 0.86);
  background: rgba(255, 255, 255, 0.12);
}

.company-section {
  position: relative;
  overflow: hidden;
}

.company-section::before {
  content: "AKUSEL";
  position: absolute;
  right: -4vw;
  bottom: -5vw;
  color: rgba(244, 239, 228, 0.045);
  font-size: clamp(6rem, 20vw, 18rem);
  font-weight: 900;
  line-height: 0.8;
}

.company-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
}

.company-facts {
  margin: 0;
  border: 1px solid rgba(244, 239, 228, 0.14);
  border-radius: 8px;
  background: rgba(244, 239, 228, 0.05);
}

.company-facts div {
  padding: 24px;
  border-bottom: 1px solid rgba(244, 239, 228, 0.12);
}

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

.company-facts dt {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  color: var(--light);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1.14fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.contact-form {
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: #343942;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 23, 28, 0.18);
  border-radius: 6px;
  background: #fbfaf7;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(230, 111, 85, 0.13);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form button {
  width: 100%;
}

.site-footer {
  padding: 56px clamp(18px, 4vw, 44px) 26px;
  background: #111318;
  color: var(--light);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 82px);
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(244, 239, 228, 0.62);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer-links h2 {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  line-height: 1.4;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  color: rgba(244, 239, 228, 0.68);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--light);
}

.copyright {
  width: min(100%, var(--max));
  margin: 38px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 228, 0.12);
  font-size: 0.8rem;
}

.response-page {
  min-height: 100svh;
  background:
    linear-gradient(120deg, rgba(52, 198, 211, 0.12), transparent 36%),
    linear-gradient(300deg, rgba(239, 183, 80, 0.14), transparent 34%),
    var(--dark);
  color: var(--light);
}

.response {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.response-box {
  width: min(100%, 680px);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(244, 239, 228, 0.16);
  border-radius: 8px;
  background: rgba(13, 15, 20, 0.72);
}

.response-brand {
  margin-bottom: 42px;
}

.response-box h1 {
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  line-height: 1.05;
}

.response-box p:not(.eyebrow) {
  color: rgba(244, 239, 228, 0.72);
  margin: 20px 0 28px;
}

.error-list {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.error-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 239, 228, 0.14);
  color: rgba(244, 239, 228, 0.78);
}

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

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

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

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: grid;
    gap: 0;
    padding: 14px clamp(18px, 4vw, 44px) 22px;
    background: rgba(13, 15, 20, 0.96);
    border-bottom: 1px solid rgba(244, 239, 228, 0.12);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(244, 239, 228, 0.08);
    font-size: 0.96rem;
  }

  .site-nav .nav-cta {
    width: fit-content;
    min-width: 190px;
    margin-top: 10px;
    padding: 12px 18px;
    border-bottom: 0;
  }

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

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .hero-inner,
  .value-layout,
  .news-layout,
  .company-layout,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 12svh;
  }

  .hero-panel {
    max-width: 520px;
  }

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

  .business-card {
    min-height: 0;
  }

  .flow {
    grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  }

  .flow-step::after {
    display: none;
  }

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

  .value-copy {
    position: static;
  }

  .company-facts {
    max-width: 620px;
  }

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

  .info-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --header: 66px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: clamp(690px, 86svh, 780px);
    padding-inline: 16px;
    padding-bottom: 26px;
  }

  .hero-copy {
    width: 100%;
    max-width: min(calc(100vw - 32px), 360px);
    padding-top: 4svh;
  }

  .hero-media img {
    object-position: 62% center;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 12vw, 3.15rem);
    line-height: 0.94;
  }

  h1 span,
  h1 span:nth-child(2),
  h1 span:nth-child(3) {
    display: block;
  }

  h1 span:nth-child(2)::after {
    content: "";
  }

  .hero-lead {
    width: 100%;
    max-width: 100%;
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
  }

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

  .section-heading,
  .value-copy,
  .company-copy,
  .contact-copy {
    max-width: min(100%, 360px);
  }

  .section {
    padding: 68px 16px;
  }

  .business-card,
  .contact-form {
    padding: 22px;
  }

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

  .flow-step {
    min-height: 0;
    align-items: flex-start;
    text-align: left;
  }

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

  .flow-icon svg {
    width: 32px;
    height: 32px;
  }

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

  .project-item,
  .project-item img {
    min-height: 230px;
  }

  .info-section {
    padding: 24px 16px 32px;
  }

  .info-grid {
    gap: 10px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .info-card {
    min-height: 0;
    padding: 22px 16px;
    border: 1px solid rgba(21, 23, 28, 0.12);
    border-radius: 10px;
  }

  .info-card:last-child {
    border-bottom: 1px solid rgba(21, 23, 28, 0.12);
  }

  .company-profile {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .company-profile div {
    padding: 10px 12px;
  }

  .contact-points {
    gap: 7px;
  }

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

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

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

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