:root {
  --ink: #0a1a2b;
  --ink-dark: #07111d;
  --muted: #587086;
  --muted-dark: #587086;
  --paper: #f7fbff;
  --obsidian: #07111d;
  --graphite: #10233a;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(18, 19, 17, 0.12);
  --chrome: #d8d1bf;
  --steel: #9fb4c5;
  --acid: #1f97ff;
  --aqua: #87d7ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  --shadow-hover: 0 36px 110px rgba(0, 0, 0, 0.42);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 6%, rgba(31, 151, 255, 0.26), transparent 29rem),
    radial-gradient(circle at 78% 0%, rgba(135, 215, 255, 0.14), transparent 23rem),
    linear-gradient(135deg, #050b13 0%, #07111d 44%, #10233a 100%);
  color: #f7fbff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(135, 215, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(135, 215, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 82%);
  pointer-events: none;
}

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

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

.top-ticker {
  position: relative;
  z-index: 30;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 216, 77, 0.42);
  background:
    linear-gradient(90deg, #ffd84d 0%, #ffb21f 48%, #d71920 100%);
  color: #07111d;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
}

.top-ticker a {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-inline: 24px;
  text-align: center;
}

.top-ticker strong,
.top-ticker span {
  white-space: normal;
}

.top-ticker a > span:not(:first-of-type) {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(135, 215, 255, 0.18);
  background: rgba(5, 11, 19, 0.74);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px) saturate(1.35);
  animation: slide-down 780ms var(--ease) both;
}

.brand,
.main-nav,
.header-phone,
.hero-actions,
.proof-band,
.check-list,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 13px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 260ms var(--ease), color 260ms var(--ease);
}

.brand:hover {
  color: var(--acid);
  transform: translateY(-2px);
}

.brand-logo {
  width: 86px;
  height: 68px;
  object-fit: contain;
  padding: 0;
  border: 1px solid rgba(135, 215, 255, 0.24);
  border-radius: 14px;
  background: #07111d;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3), 0 0 32px rgba(31, 151, 255, 0.18);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease), box-shadow 320ms var(--ease);
}

.brand:hover .brand-logo {
  border-color: rgba(31, 151, 255, 0.74);
  box-shadow: 0 0 38px rgba(31, 151, 255, 0.28), 0 18px 42px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px) scale(1.04);
}

.main-nav {
  gap: 8px;
  color: rgba(247, 251, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 240ms var(--ease), background 240ms var(--ease);
}

.main-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, var(--acid), var(--aqua));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease);
}

.main-nav a:hover {
  background: rgba(31, 151, 255, 0.14);
  color: #fff;
}

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

.header-phone {
  min-height: 44px;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(135, 215, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: border-color 260ms var(--ease), box-shadow 260ms var(--ease), transform 260ms var(--ease);
}

.header-phone:hover {
  border-color: rgba(31, 151, 255, 0.78);
  box-shadow: 0 0 40px rgba(31, 151, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: auto clamp(18px, 4vw, 58px) 36px auto;
  z-index: 1;
  width: min(22vw, 280px);
  aspect-ratio: 1;
  border: 1px solid rgba(248, 243, 232, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 151, 255, 0.12), transparent 62%);
  content: "";
  animation: slow-spin 18s linear infinite;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 210px;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 29, 0.92) 64%, #07111d);
  content: "";
  pointer-events: none;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
  z-index: -3;
  filter: saturate(0.94) contrast(1.08) brightness(0.84);
  transform: scale(1.08);
  animation: hero-drift 1600ms var(--ease) both;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 11, 19, 0.96) 0%, rgba(7, 17, 29, 0.82) 46%, rgba(7, 17, 29, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 17, 29, 0.72), rgba(7, 17, 29, 0.08) 54%);
}

.hero-sheen {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.16) 32%, transparent 44%),
    linear-gradient(90deg, transparent, rgba(135, 215, 255, 0.12), transparent);
  opacity: 0.55;
  transform: translateX(-34%);
  animation: hero-sheen 5.8s ease-in-out 900ms infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(820px, 100%);
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 6vw, 82px) clamp(20px, 7vw, 88px);
  color: #fff;
}

.hero-logo {
  width: min(310px, 72vw);
  margin-bottom: 14px;
  padding: 0;
  border: 1px solid rgba(135, 215, 255, 0.22);
  border-radius: 22px;
  background: #07111d;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34), 0 0 56px rgba(31, 151, 255, 0.22);
  animation: rise-in 900ms var(--ease) both;
}

.hero-content::before {
  width: min(100%, 560px);
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--acid), rgba(135, 215, 255, 0.64), transparent);
  content: "";
  animation: line-draw 980ms var(--ease) 160ms both;
}

.hero-kicker,
.hero-title,
.hero-text,
.hero-ctas {
  animation: rise-in 900ms var(--ease) both;
}

.hero-title {
  animation-delay: 90ms;
}

.hero-text {
  animation-delay: 190ms;
}

.hero-ctas {
  animation-delay: 290ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: clamp(2.42rem, 4.6vw, 4.45rem);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5.4vw, 5.9rem);
  font-weight: 930;
  line-height: 0.91;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 22px;
  color: rgba(247, 251, 255, 0.78);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  isolation: isolate;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), background 280ms var(--ease), border-color 280ms var(--ease);
}

.button::after {
  position: absolute;
  inset: -50% -24%;
  z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.42), transparent 64%);
  content: "";
  transform: translateX(-100%) rotate(8deg);
  transition: transform 650ms var(--ease);
}

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

.button:hover::after {
  transform: translateX(96%) rotate(8deg);
}

.button.primary {
  background: linear-gradient(135deg, var(--acid), var(--aqua));
  color: #111411;
  box-shadow: 0 18px 42px rgba(31, 151, 255, 0.18), 0 18px 52px rgba(0, 0, 0, 0.3);
}

.button.primary:hover {
  box-shadow: 0 0 54px rgba(31, 151, 255, 0.3), 0 26px 72px rgba(0, 0, 0, 0.42);
}

.button.secondary {
  border: 1px solid rgba(247, 251, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  backdrop-filter: blur(18px);
}

.button.secondary:hover {
  border-color: rgba(31, 151, 255, 0.46);
  background: rgba(31, 151, 255, 0.16);
}

.proof-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: -54px auto 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(7, 17, 29, 0.92);
  color: #fff;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.25);
  overflow: hidden;
}

.proof-band::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
  transform: translateX(-100%);
  animation: proof-glint 7.2s ease-in-out 1.6s infinite;
  pointer-events: none;
}

.proof-item {
  position: relative;
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.03);
  transition: background 260ms var(--ease), transform 260ms var(--ease);
}

.proof-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-item:hover {
  background: rgba(31, 151, 255, 0.08);
  transform: translateY(-3px);
}

.proof-value {
  color: var(--acid);
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 950;
  line-height: 0.9;
}

.proof-label {
  color: rgba(248, 243, 232, 0.74);
  font-size: 0.94rem;
  font-weight: 850;
}

.section {
  position: relative;
  padding: clamp(82px, 11vw, 144px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

#benefits {
  background:
    radial-gradient(circle at 90% 20%, rgba(31, 151, 255, 0.13), transparent 26rem),
    linear-gradient(135deg, #07111d, #10233a);
  color: #fff;
}

#benefits > .reveal:first-child {
  position: sticky;
  top: 116px;
}

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

.benefit-grid article {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px) saturate(1.18);
  transition: transform 340ms var(--ease), box-shadow 340ms var(--ease), border-color 340ms var(--ease), background 340ms var(--ease);
}

.benefit-grid article::before {
  position: absolute;
  inset: auto 24px 22px auto;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(31, 151, 255, 0.36);
  border-radius: 50%;
  content: "";
  opacity: 0.62;
  transition: transform 340ms var(--ease), opacity 340ms var(--ease);
}

.benefit-grid article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(31, 151, 255, 0.16), transparent 42%);
  content: "";
  opacity: 0;
  transition: opacity 340ms var(--ease);
  pointer-events: none;
}

.benefit-grid article:hover {
  border-color: rgba(31, 151, 255, 0.46);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-hover);
  transform: translateY(-10px) rotateX(2deg);
}

.benefit-grid article:hover::before {
  opacity: 1;
  transform: scale(1.22);
}

.benefit-grid article:hover::after {
  opacity: 1;
}

.benefit-grid article h3,
.benefit-grid article p {
  position: relative;
  z-index: 1;
}

.benefit-grid p,
.quote-panel cite,
.fine-print,
.site-footer {
  color: var(--muted);
}

#benefits .benefit-grid p {
  color: rgba(247, 251, 255, 0.7);
}

#work {
  background:
    linear-gradient(180deg, #07111d, #f7fbff 16%, #f7fbff 100%);
  color: var(--ink-dark);
}

#work .eyebrow {
  color: #1467ac;
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(26px, 4vw, 46px);
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.78fr;
  grid-auto-rows: minmax(260px, auto);
  gap: 18px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(18, 19, 17, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 70px rgba(18, 19, 17, 0.14);
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease), border-color 360ms var(--ease);
}

.gallery figure:first-child {
  grid-row: span 2;
}

.gallery figure::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.gallery figure:hover {
  border-color: rgba(18, 19, 17, 0.28);
  box-shadow: 0 34px 96px rgba(18, 19, 17, 0.22);
  transform: translateY(-12px);
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 760ms var(--ease), filter 760ms var(--ease);
}

.gallery figure:first-child img {
  min-height: 700px;
}

.gallery figure:hover img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.06);
}

figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  background: rgba(9, 10, 9, 0.62);
  color: rgba(248, 243, 232, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.18);
}

figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.04rem;
}

.quote-panel {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 16% 18%, rgba(31, 151, 255, 0.18), transparent 18rem),
    linear-gradient(140deg, #10233a, #07111d);
  color: #fff;
}

.quote-panel blockquote {
  margin-bottom: 26px;
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  font-weight: 930;
  line-height: 1.02;
}

.quote-panel cite {
  font-style: normal;
  color: rgba(248, 243, 232, 0.64);
}

.estimate-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(32px, 6vw, 88px);
  padding: clamp(86px, 11vw, 150px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 18%, rgba(135, 215, 255, 0.2), transparent 28rem),
    linear-gradient(135deg, #0e253d, #07111d);
  color: #fff;
}

.landing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.94fr) minmax(340px, 1.06fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 114px);
  align-items: center;
  padding: clamp(62px, 8vw, 110px) clamp(20px, 7vw, 88px);
  isolation: isolate;
  overflow: hidden;
}

.landing-hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 29, 0.94));
  content: "";
  pointer-events: none;
}

.landing-copy,
.landing-form {
  position: relative;
  z-index: 2;
}

.landing-copy {
  max-width: 740px;
}

.landing-copy .hero-logo {
  width: min(245px, 64vw);
}

.landing-copy h1 {
  font-size: clamp(2.1rem, 3.7vw, 3.45rem);
  line-height: 0.98;
}

.landing-copy p {
  max-width: 680px;
  color: rgba(247, 251, 255, 0.76);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

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

.landing-form {
  align-self: center;
}

.estimate-copy p {
  color: rgba(247, 251, 255, 0.72);
}

.estimate-section::before {
  position: absolute;
  top: 0;
  right: clamp(20px, 5vw, 72px);
  left: clamp(20px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 151, 255, 0.52), transparent);
  content: "";
}

.estimate-copy {
  align-self: center;
}

.check-list {
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  padding: 9px 13px;
  border: 1px solid rgba(248, 243, 232, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}

.check-list li:hover {
  border-color: rgba(31, 151, 255, 0.44);
  background: rgba(31, 151, 255, 0.1);
  transform: translateY(-4px);
}

.estimate-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(248, 243, 232, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px) saturate(1.2);
  transition: transform 340ms var(--ease), box-shadow 340ms var(--ease), border-color 340ms var(--ease);
}

.estimate-form::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  content: "";
  pointer-events: none;
}

.estimate-form:hover {
  border-color: rgba(31, 151, 255, 0.34);
  box-shadow: 0 0 58px rgba(31, 151, 255, 0.12), var(--shadow-hover);
  transform: translateY(-6px);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(248, 243, 232, 0.86);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(248, 243, 232, 0.2);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(8, 9, 8, 0.56);
  color: #fff;
  font: inherit;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease), background 220ms var(--ease);
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(248, 243, 232, 0.42);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 151, 255, 0.2);
  border-color: rgba(31, 151, 255, 0.7);
  background: rgba(8, 9, 8, 0.72);
  box-shadow: 0 0 36px rgba(31, 151, 255, 0.12);
  transform: translateY(-1px);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--acid);
  font-weight: 850;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.form-status:not(:empty) {
  animation: status-pop 420ms var(--ease) both;
}

.form-note {
  margin: -2px 0 0;
  color: rgba(247, 251, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: none;
}

.thanks-section {
  display: flex;
  min-height: calc(100vh - 76px);
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 10vw, 130px) clamp(20px, 7vw, 88px);
  background:
    radial-gradient(circle at 22% 18%, rgba(31, 151, 255, 0.2), transparent 28rem),
    linear-gradient(135deg, #07111d, #10233a);
  color: #fff;
}

.thanks-section p {
  max-width: 620px;
  color: rgba(247, 251, 255, 0.76);
  font-size: 1.15rem;
}

.fine-print {
  padding: 24px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(248, 243, 232, 0.12);
  background: #07111d;
  color: rgba(248, 243, 232, 0.58);
  font-size: 0.86rem;
}

.fine-print p {
  max-width: 980px;
  margin-bottom: 0;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(248, 243, 232, 0.1);
  background: #07111d;
  color: rgba(248, 243, 232, 0.58);
  font-size: 0.95rem;
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 950;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 118px;
  height: 72px;
  object-fit: contain;
  padding: 0;
  border: 1px solid rgba(135, 215, 255, 0.18);
  border-radius: 14px;
  background: #07111d;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 820ms var(--ease), transform 820ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    filter: saturate(0.72) contrast(1.08) brightness(0.92);
    transform: scale(1.14);
  }

  to {
    filter: saturate(0.94) contrast(1.08) brightness(0.84);
    transform: scale(1.08);
  }
}

@keyframes hero-sheen {
  0%,
  42% {
    opacity: 0;
    transform: translateX(-42%);
  }

  58% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateX(52%);
  }
}

@keyframes line-draw {
  from {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
  }

  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes proof-glint {
  0%,
  34% {
    transform: translateX(-100%);
  }

  58%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes status-pop {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .split,
  .landing-hero,
  .estimate-section {
    grid-template-columns: 1fr;
  }

  #benefits > .reveal:first-child {
    position: static;
  }

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

  .gallery figure:first-child {
    grid-row: auto;
  }

  .gallery figure:first-child img,
  .gallery img {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand span:last-child {
    max-width: 132px;
    line-height: 1.08;
  }

  .header-phone {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 740px;
  }

  .hero::before {
    width: 150px;
    right: -48px;
    bottom: 82px;
  }

  .hero-content {
    min-height: 740px;
    padding-top: 64px;
    padding-bottom: 86px;
  }

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

  .top-ticker {
    font-size: 0.74rem;
  }

  .top-ticker a {
    min-height: 34px;
    flex-wrap: wrap;
    gap: 4px 8px;
    padding: 8px 14px;
  }

  .landing-hero {
    padding-top: 54px;
  }

  .proof-band {
    grid-template-columns: 1fr;
    margin-top: -34px;
  }

  .proof-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .benefit-grid,
  .estimate-form {
    grid-template-columns: 1fr;
  }

  .gallery figure:first-child img,
  .gallery img {
    min-height: 340px;
  }

  figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}

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

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