@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --black: #020407;
  --navy-950: #020509;
  --navy-900: #050b11;
  --navy-800: #0b1620;
  --blue-700: #2f8edb;
  --blue-500: #249af1;
  --blue-300: #78c4ff;
  --blue-100: #0b2235;
  --blue-50: #070d13;
  --white: #ffffff;
  --ink: #f4f8fb;
  --muted: #9aabb8;
  --line: rgba(120, 196, 255, 0.17);
  --surface: #080f16;
  --surface-raised: #0d1720;
  --accent: #249af1;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
input,
select,
textarea {
  font-family: "DM Sans", sans-serif;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.announcement {
  padding: 8px 20px;
  border-bottom: 1px solid rgba(36, 154, 241, 0.32);
  background: #030a10;
  color: var(--blue-300);
  text-align: center;
}

.announcement p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.announcement span {
  padding-inline: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(120, 196, 255, 0.14);
  background: rgba(2, 4, 7, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-symbol {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 183, 220, 0.28);
  border-radius: 13px;
  background: #02070b;
  box-shadow: 0 8px 22px rgba(7, 65, 99, 0.2);
}

.brand-symbol img {
  position: absolute;
  top: -9px;
  left: -21px;
  width: 90px;
  max-width: none;
  height: 90px;
}

.brand-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-words strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-words span {
  margin-top: 5px;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a,
.footer-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.service-card a:focus-visible,
.main-nav a:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid var(--blue-300);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.88rem;
}

.button-dark {
  border: 1px solid rgba(36, 154, 241, 0.7);
  background: rgba(36, 154, 241, 0.08);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.24);
  color: var(--white);
}

.button-dark:hover {
  background: rgba(36, 154, 241, 0.2);
}

.button-primary {
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(36, 154, 241, 0.25);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-300);
  box-shadow: 0 14px 34px rgba(36, 154, 241, 0.34);
  color: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 128px;
  background:
    radial-gradient(circle at 78% 23%, rgba(36, 154, 241, 0.2), transparent 28%),
    radial-gradient(circle at 6% 100%, rgba(36, 154, 241, 0.08), transparent 28%),
    linear-gradient(135deg, #010204 0%, #03080d 58%, #061421 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: -160px;
  right: -130px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(255, 255, 255, 0.025),
    0 0 0 150px rgba(255, 255, 255, 0.02);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-700);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 27px;
  height: 2px;
  background: currentColor;
}

.hero .eyebrow,
.eyebrow-light {
  color: var(--blue-300);
}

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

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
}

h1 {
  max-width: 730px;
  margin-bottom: 25px;
  font-size: clamp(3.5rem, 6.2vw, 5.9rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 em {
  color: var(--blue-300);
  font-style: normal;
}

.hero-intro {
  max-width: 640px;
  margin-bottom: 32px;
  color: #d5e6ed;
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--blue-300);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 32px 0 0;
  padding: 0;
  color: #bcd1db;
  font-size: 0.87rem;
  font-weight: 600;
  list-style: none;
}

.hero-points span {
  margin-right: 6px;
  color: var(--blue-300);
}

.hero-art {
  position: relative;
  min-height: 500px;
}

.logo-stage {
  position: absolute;
  inset: 0 4px 22px 24px;
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(121, 221, 240, 0.3);
  border-radius: 32px 32px 86px 32px;
  background: #02070b;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.38),
    0 0 80px rgba(35, 152, 237, 0.08),
    inset 0 0 0 8px rgba(255, 255, 255, 0.018);
  transform: rotate(2deg);
}

.logo-stage::before {
  position: absolute;
  inset: -25%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 145, 230, 0.13), transparent 62%);
  content: "";
  pointer-events: none;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results-card {
  position: absolute;
  right: -30px;
  bottom: 0;
  z-index: 5;
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 13px;
  padding: 17px 20px;
  border: 1px solid rgba(120, 196, 255, 0.28);
  border-radius: 14px;
  background: rgba(8, 15, 22, 0.95);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  color: var(--white);
}

.results-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 1.25rem;
}

.results-card p {
  display: flex;
  margin: 0;
  flex-direction: column;
  line-height: 1.3;
}

.results-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.91rem;
}

.results-card span:last-child {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.water-drop {
  position: absolute;
  z-index: 4;
  width: 20px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 70% 30% 55% 45%;
  background: rgba(61, 204, 232, 0.4);
  transform: rotate(45deg);
}

.drop-one {
  top: 50px;
  right: -15px;
}

.drop-two {
  bottom: 125px;
  left: -2px;
  width: 13px;
  height: 18px;
}

.hero-wave {
  position: absolute;
  right: -5%;
  bottom: -83px;
  left: -5%;
  height: 125px;
  border-radius: 50% 50% 0 0;
  background: var(--black);
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
  grid-template-columns: 1.15fr 0.85fr;
}

.section-heading h2,
.story-copy h2,
.quote-copy h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 4px;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.service-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--blue-50);
  content: "";
}

.service-featured {
  border-color: rgba(36, 154, 241, 0.68);
  background:
    radial-gradient(circle at 100% 0, rgba(36, 154, 241, 0.14), transparent 38%),
    var(--surface-raised);
  color: var(--white);
}

.service-featured::after {
  background: rgba(47, 196, 225, 0.1);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #a8bbc5;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.service-icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 31px;
  place-items: center;
  border-radius: 15px;
  background: var(--blue-100);
}

.service-featured .service-icon {
  background: rgba(111, 221, 240, 0.13);
}

.mini-window {
  width: 29px;
  height: 34px;
  border: 2px solid var(--blue-500);
  border-radius: 3px;
  background:
    linear-gradient(90deg, transparent 46%, var(--blue-500) 46%, var(--blue-500) 54%, transparent 54%),
    linear-gradient(transparent 46%, var(--blue-500) 46%, var(--blue-500) 54%, transparent 54%);
}

.bubbles-icon span {
  position: absolute;
  border: 2px solid var(--blue-500);
  border-radius: 50%;
}

.bubbles-icon span:nth-child(1) {
  width: 23px;
  height: 23px;
}

.bubbles-icon span:nth-child(2) {
  top: 13px;
  right: 12px;
  width: 12px;
  height: 12px;
}

.bubbles-icon span:nth-child(3) {
  bottom: 11px;
  left: 14px;
  width: 9px;
  height: 9px;
}

.storefront-icon span {
  width: 34px;
  height: 29px;
  border: 2px solid var(--blue-700);
  border-top: 7px solid var(--blue-500);
  background:
    linear-gradient(90deg, transparent 63%, var(--blue-700) 63%, var(--blue-700) 68%, transparent 68%);
}

.track-icon {
  align-content: center;
  gap: 5px;
}

.track-icon span {
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--blue-500);
}

.track-icon span:nth-child(2) {
  width: 25px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 1.17rem;
  letter-spacing: -0.025em;
}

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

.service-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-featured p {
  color: #bdd0d9;
}

.service-card a {
  position: relative;
  z-index: 1;
  color: var(--blue-700);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.service-card a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.service-card a:hover span {
  transform: translateX(4px);
}

.service-featured a {
  color: var(--blue-300);
}

.method-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 15%, rgba(36, 154, 241, 0.13), transparent 28%),
    var(--surface);
}

.method-heading h2 {
  max-width: 720px;
}

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

.method-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(36, 154, 241, 0.09), transparent 48%),
    var(--surface-raised);
}

.method-card::after {
  position: absolute;
  right: -35px;
  bottom: -52px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(120, 196, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.method-number {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--blue-300);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.method-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.2rem;
}

.method-card p {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 0;
  color: #a9bec8;
  font-size: 0.91rem;
}

.story-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 30%, rgba(36, 154, 241, 0.12), transparent 22%),
    #010305;
  color: var(--white);
}

.story-grid {
  display: grid;
  align-items: center;
  gap: 100px;
  grid-template-columns: 0.9fr 1.1fr;
}

.story-visual {
  position: relative;
  min-height: 520px;
}

.story-visual::before {
  position: absolute;
  inset: 25px 30px 0 0;
  border: 1px solid rgba(121, 221, 240, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
    repeating-linear-gradient(90deg, transparent 0, transparent 118px, rgba(255, 255, 255, 0.05) 119px, rgba(255, 255, 255, 0.05) 120px),
    repeating-linear-gradient(0deg, transparent 0, transparent 118px, rgba(255, 255, 255, 0.05) 119px, rgba(255, 255, 255, 0.05) 120px);
  content: "";
  transform: rotate(-3deg);
}

.story-card {
  position: absolute;
  top: 92px;
  right: 78px;
  left: 38px;
  z-index: 2;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(8, 15, 22, 0.94);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.story-kicker {
  color: var(--blue-300);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-card strong {
  display: block;
  margin: 21px 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.story-card p {
  margin-bottom: 0;
  color: #b9d0da;
}

.story-badge {
  position: absolute;
  right: 0;
  bottom: 28px;
  z-index: 3;
  display: flex;
  width: 155px;
  height: 155px;
  align-items: center;
  justify-content: center;
  border: 7px solid var(--navy-950);
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  flex-direction: column;
  text-align: center;
  transform: rotate(6deg);
}

.story-badge > span {
  margin-bottom: 3px;
  font-size: 1.3rem;
}

.story-badge strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.87rem;
}

.story-badge small {
  font-size: 0.65rem;
}

.story-copy h2,
.quote-copy h2 {
  color: var(--white);
}

.story-lead {
  max-width: 640px;
  margin: 25px 0 38px;
  color: #bad0da;
  font-size: 1.08rem;
}

.value-list {
  display: grid;
  gap: 0;
}

.value-list article {
  display: grid;
  gap: 18px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 38px 1fr;
}

.value-list article > span {
  color: var(--blue-300);
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
}

.value-list h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.value-list p {
  margin-bottom: 0;
  color: #99b2be;
  font-size: 0.88rem;
}

.process-section {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.process-heading {
  margin-bottom: 64px;
}

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

.process-list li {
  position: relative;
  padding-right: 65px;
}

.step-number {
  display: grid;
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin-bottom: 25px;
  place-items: center;
  border: 6px solid var(--blue-50);
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 1px var(--blue-500);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.step-line {
  position: absolute;
  top: 25px;
  left: 46px;
  width: calc(100% - 38px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-300) 0, var(--blue-300) 7px, transparent 7px, transparent 13px);
}

.process-list h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.08rem;
}

.process-list p {
  max-width: 300px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-section {
  padding: 112px 0;
  background: var(--black);
}

.quote-panel {
  display: grid;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 100%, rgba(36, 154, 241, 0.15), transparent 28%),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  grid-template-columns: 0.9fr 1.1fr;
}

.quote-copy {
  padding: 70px 60px;
}

.quote-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 25px 0 38px;
  color: #bad0da;
}

.contact-placeholder {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-placeholder p {
  display: flex;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-placeholder span {
  color: #8aa7b4;
  font-size: 0.78rem;
}

.contact-placeholder strong {
  color: var(--white);
  font-size: 0.78rem;
}

.contact-placeholder a {
  color: var(--white);
  text-decoration-color: rgba(120, 196, 255, 0.52);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

.contact-placeholder a:hover,
.contact-placeholder a:focus-visible {
  color: var(--blue-300);
}

.contact-placeholder a:focus-visible {
  outline: 2px solid var(--blue-300);
  outline-offset: 4px;
}

.quote-card {
  margin: 18px;
  padding: 47px;
  border-radius: 18px;
  border: 1px solid rgba(120, 196, 255, 0.16);
  background: var(--surface-raised);
}

.form-label {
  margin-bottom: 6px;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-card h3 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.field-row {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
}

.quote-card label {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 700;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(120, 196, 255, 0.22);
  border-radius: 9px;
  background: #050a0f;
  color: var(--ink);
  color-scheme: dark;
  font-size: 0.86rem;
  outline: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.quote-card input,
.quote-card select {
  height: 48px;
  padding: 0 13px;
}

.quote-card textarea {
  min-height: 108px;
  padding: 12px 13px;
  resize: vertical;
}

.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(23, 183, 220, 0.14);
}

.quote-card ::placeholder {
  color: #94a7b1;
}

.button-full {
  width: 100%;
  margin-top: 2px;
}

.button-full:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
  text-align: center;
}

.form-status {
  min-height: 1.4em;
  margin: 7px 0 0;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.form-status[data-state="success"] {
  color: #75e0b0;
}

.form-status[data-state="error"] {
  color: #ffaaa3;
}

.site-footer {
  padding: 68px 0 22px;
  border-top: 1px solid var(--line);
  background: #010305;
  color: var(--white);
}

.footer-inner {
  display: grid;
  align-items: center;
  gap: 35px;
  padding-bottom: 45px;
  grid-template-columns: 1fr 1.2fr auto;
}

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

.footer-inner > p {
  margin: 0;
  color: #8fa9b5;
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #d7e6eb;
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #6f8b98;
  font-size: 0.72rem;
}

@media (max-width: 1050px) {
  .hero-grid {
    gap: 38px;
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-art {
    min-height: 430px;
  }

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

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

  .story-grid {
    gap: 55px;
  }

  .quote-copy {
    padding: 58px 42px;
  }

  .quote-card {
    padding: 40px 34px;
  }
}

@media (max-width: 820px) {
  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-grid,
  .story-grid,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-art {
    width: min(100%, 570px);
    min-height: 500px;
    margin: 0 auto;
  }

  .section,
  .quote-section {
    padding: 86px 0;
  }

  .section-heading {
    gap: 20px;
    grid-template-columns: 1fr;
  }

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

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

  .method-number {
    margin-bottom: 36px;
  }

  .story-visual {
    max-width: 570px;
  }

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

  .process-list li {
    display: grid;
    padding-right: 0;
    column-gap: 20px;
    grid-template-columns: 52px 1fr;
  }

  .step-number {
    margin: 0;
    grid-row: 1 / 3;
  }

  .step-line {
    top: 49px;
    bottom: -40px;
    left: 25px;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(0deg, var(--blue-300) 0, var(--blue-300) 7px, transparent 7px, transparent 13px);
  }

  .process-list h3 {
    margin: 4px 0 5px;
  }

  .quote-copy {
    padding-bottom: 32px;
  }

  .quote-card {
    margin-top: 0;
  }

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

  .footer-inner > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

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

  .announcement {
    padding-inline: 12px;
  }

  .announcement p {
    font-size: 0.66rem;
  }

  .announcement span {
    padding-inline: 4px;
  }

  .header-inner {
    min-height: 70px;
  }

  .header-inner .button {
    display: none;
  }

  .brand-symbol {
    width: 43px;
    height: 43px;
  }

  .brand-symbol img {
    top: -8px;
    left: -19px;
    width: 81px;
    height: 81px;
  }

  .hero {
    padding: 55px 0 95px;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 4.4rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .text-link {
    text-align: center;
  }

  .hero-points {
    gap: 8px 14px;
    font-size: 0.8rem;
  }

  .hero-art {
    min-height: 380px;
    margin-top: 12px;
  }

  .logo-stage {
    inset: 0 3px 22px;
    border-radius: 24px 24px 64px 24px;
  }

  .results-card {
    right: -2px;
    min-width: 190px;
    padding: 13px 15px;
  }

  .hero-wave {
    bottom: -97px;
  }

  .section,
  .quote-section {
    padding: 70px 0;
  }

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

  .section-heading h2,
  .story-copy h2,
  .quote-copy h2 {
    font-size: 2.5rem;
  }

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

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

  .story-grid {
    gap: 45px;
  }

  .story-visual {
    min-height: 430px;
  }

  .story-visual::before {
    right: 10px;
  }

  .story-card {
    top: 68px;
    right: 22px;
    left: 18px;
    padding: 30px;
  }

  .story-badge {
    right: -2px;
    bottom: 13px;
    width: 130px;
    height: 130px;
  }

  .quote-panel {
    width: 100%;
    border-radius: 0;
  }

  .quote-copy {
    padding: 53px 28px 30px;
  }

  .quote-card {
    margin: 12px;
    padding: 30px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-placeholder p {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-inner > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
