:root {
  --black: #05070b;
  --ink: #101722;
  --slate: #5f6b7a;
  --white: #fff;
  --mist: #eef3f8;
  --blue: #d9232e;
  --cyan: #f0444e;
  --amber: #ffb347;
  --red: #d9232e;
  --font: "Inter", system-ui, sans-serif;
  --display: "Space Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(217, 35, 46, .24), transparent 34%),
    linear-gradient(135deg, #020305 0%, #111 52%, #05070b 100%);
  animation: splashExit .75s cubic-bezier(.7, 0, .2, 1) 6.6s forwards;
}
.intro-splash:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .55;
}
.intro-splash:after {
  content: "";
  position: absolute;
  width: min(66vw, 680px);
  height: min(66vw, 680px);
  border: 18px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(217, 35, 46, .45), 0 0 85px rgba(217, 35, 46, .24);
  opacity: .14;
}
.intro-stage {
  position: relative;
  z-index: 1;
  width: min(900px, 90vw);
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
}
.intro-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(18px) scale(.96);
}
.intro-frame strong {
  display: block;
  color: #fff;
  font: 900 clamp(120px, 22vw, 250px)/.78 var(--display);
  letter-spacing: -.09em;
  text-shadow: 0 0 42px rgba(217, 35, 46, .5);
}
.intro-frame span {
  display: block;
  margin-top: 22px;
  color: #f4f4f4;
  font: 800 clamp(22px, 4vw, 44px)/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.intro-frame em {
  display: block;
  margin-top: 42px;
  color: #d9232e;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.frame-1 { animation: frameFlash .86s ease both .15s; }
.frame-2 { animation: frameFlash .86s ease both 1.15s; }
.frame-3 { animation: frameFlash .86s ease both 2.15s; }
.frame-4 { animation: frameFlash .66s ease both 3.15s; }
.frame-5 { animation: frameFlash .86s ease both 3.95s; }
.frame-6 { animation: finalFlash 1.55s ease both 5.0s; }
.frame-6 strong { color: #fff; font-size: clamp(92px, 18vw, 205px); }
.frame-6 span { letter-spacing: .05em; }
@keyframes frameFlash {
  0% { opacity: 0; transform: translateY(18px) scale(.94); filter: blur(6px); }
  18%, 72% { opacity: 1; transform: none; filter: blur(0); }
  100% { opacity: 0; transform: translateY(-14px) scale(1.04); filter: blur(5px); }
}
@keyframes finalFlash {
  0% { opacity: 0; transform: scale(.9); filter: blur(7px); }
  18%, 100% { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes splashExit {
  to { opacity: 0; visibility: hidden; transform: translateY(-100%); }
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: 82px;
  padding: 0 clamp(22px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(5, 7, 11, .88), rgba(5, 7, 11, .08));
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), #ff5a63);
  color: #fff;
  font: 900 24px var(--display);
  box-shadow: 0 0 34px rgba(217, 35, 46, .34);
}
.brand strong { display: block; font: 800 18px/1 var(--display); letter-spacing: .08em; }
.brand small {
  display: block;
  color: #a8b4c4;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-header nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 700; }
.site-header nav a { color: #dce7f4; transition: .25s; }
.site-header nav a:hover { color: var(--cyan); }
.nav-cta { border: 1px solid rgba(217, 35, 46, .65); padding: 10px 16px; border-radius: 999px; }
.nav-toggle { display: none; background: none; border: 0; }
.nav-toggle span { display: block; width: 28px; height: 2px; margin: 6px; background: #fff; }

.hero {
  min-height: 920px;
  padding: 142px clamp(22px, 6vw, 90px) 190px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 700px) 1fr;
  align-items: center;
  gap: 50px;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 35, 46, .23), transparent 34%),
    radial-gradient(circle at 77% 20%, rgba(255, 255, 255, .1), transparent 32%),
    linear-gradient(130deg, #05070b 0%, #111 55%, #070707 100%);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}
.hero-copy { max-width: 700px; position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 900;
}
.hero h1, .section h2, .feature h2, .contact h2, .thanks-card h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6.1vw, 92px);
  line-height: .94;
  letter-spacing: -.065em;
}
.hero p {
  max-width: 640px;
  color: #c6d3e4;
  font-size: clamp(17px, 1.45vw, 21px);
  margin: 26px 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: .25s;
}
.button.primary { background: linear-gradient(135deg, var(--red), #ff5a63); color: #fff; }
.button.ghost { border: 1px solid rgba(255, 255, 255, .22); color: #fff; background: rgba(255, 255, 255, .06); }
.button:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(217, 35, 46, .24); }
.hero-video {
  position: absolute;
  right: 4vw;
  top: 145px;
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  min-height: 410px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 35, 46, .13), transparent 62%);
  z-index: -1;
}
.scan-grid {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(217, 35, 46, .28);
  background: repeating-conic-gradient(from 0deg, rgba(217, 35, 46, .16) 0 3deg, transparent 3deg 12deg);
  animation: spin 16s linear infinite;
}
.scan-grid:after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .24);
}
.pulse-ring { position: absolute; inset: 23%; border: 2px solid rgba(217, 35, 46, .34); border-radius: 50%; animation: pulse 2.4s ease-in-out infinite; }
.loss-card {
  position: absolute;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(8, 14, 24, .74);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}
.loss-card span { display: block; color: #99a8ba; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.loss-card strong { font: 800 22px var(--display); }
.card-one { left: -3%; top: 34%; animation: float 5s ease-in-out infinite; }
.card-two { right: -2%; bottom: 19%; animation: float 5s ease-in-out infinite reverse; }
.hero-stats {
  position: absolute;
  left: clamp(22px, 6vw, 90px);
  right: clamp(22px, 6vw, 90px);
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  overflow: hidden;
  backdrop-filter: blur(16px);
}
.hero-stats div { padding: 24px 26px; background: rgba(5, 7, 11, .52); }
.hero-stats strong { display: block; color: #fff; font: 900 clamp(32px, 4vw, 48px)/1 var(--display); }
.hero-stats span { color: #b6c2d1; font-size: 13px; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { transform: scale(1.14); opacity: .35; } }
@keyframes float { 50% { transform: translateY(-18px); } }

.marquee { overflow: hidden; border-block: 1px solid rgba(255, 255, 255, .12); background: #07101b; }
.marquee div {
  width: max-content;
  padding: 16px 0;
  color: #ffb8bd;
  font: 900 12px var(--display);
  letter-spacing: .22em;
  animation: marquee 25s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 110px clamp(22px, 6vw, 90px); }
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: start; }
.split h2, .section-heading h2, .feature h2, .contact h2 { font-size: clamp(42px, 6vw, 84px); line-height: .95; }
.split p { color: #c0c9d6; font-size: 19px; }
.section-heading { display: grid; grid-template-columns: .35fr 1fr; gap: 40px; margin-bottom: 50px; }
.intro-section { background: linear-gradient(180deg, #05070b, #0a1019); }

.services { background: var(--mist); color: var(--ink); }
.services .section-kicker, .faq .section-kicker { color: #1167ab; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.service-card {
  min-height: 410px;
  border-radius: 28px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(16, 23, 34, .08);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: .35s;
}
.service-card-primary {
  grid-column: span 2;
  min-height: 470px;
  background:
    radial-gradient(circle at 82% 12%, rgba(217, 35, 46, .28), transparent 30%),
    linear-gradient(135deg, #111 0%, #1b1b1b 58%, #2a0609 100%);
  color: #fff;
  border-color: rgba(217, 35, 46, .42);
  box-shadow: 0 30px 85px rgba(0, 0, 0, .2);
}
.service-card-primary:before {
  height: 260px;
  opacity: .28;
  background: radial-gradient(circle, rgba(217, 35, 46, .7), transparent 68%);
}
.service-card-primary span {
  color: #ff9aa1;
  font-size: 14px;
}
.service-card-primary h3 {
  font-size: clamp(38px, 5vw, 62px);
  max-width: 760px;
}
.service-card-primary p {
  color: #e8e8e8;
  max-width: 760px;
  font-size: 18px;
}
.service-card-primary a {
  color: #fff;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  padding: 12px 16px;
}
.service-tag {
  width: max-content;
  margin: 16px 0 0;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(217, 35, 46, .18);
  border: 1px solid rgba(217, 35, 46, .42);
  color: #ffb8bd !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}
.service-card:before {
  content: "";
  position: absolute;
  inset: auto -25% -35%;
  height: 180px;
  background: radial-gradient(circle, var(--red), transparent 66%);
  opacity: .13;
  transition: .35s;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 28px 70px rgba(20, 35, 54, .13); }
.service-card:hover:before { opacity: .28; }
.service-card span { color: #8893a0; font-weight: 900; }
.service-card h3 { margin: auto 0 14px; font: 900 29px/1.05 var(--display); letter-spacing: -.04em; }
.service-card p { color: #5a6472; }
.service-card a { margin-top: 18px; color: #005ea8; font-weight: 900; }

.feature {
  position: relative;
  overflow: hidden;
  padding: 120px clamp(22px, 6vw, 90px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #070b10, #141414 55%, #24080b);
  border-block: 1px solid rgba(255, 255, 255, .1);
}
.feature-orb { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(217, 35, 46, .28), transparent 64%); right: -160px; top: -140px; }
.feature-copy { position: relative; z-index: 2; }
.feature-copy p { color: #d3d8df; font-size: 19px; }
.feature-copy ul { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.feature-copy li:before { content: "▸"; color: var(--red); margin-right: 10px; }
.feature-visual {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, .96);
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
  transform: rotate(2deg);
}
.feature-visual:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(217, 35, 46, .18);
  border-radius: 26px;
  pointer-events: none;
}
.feature-visual img { border-radius: 22px; }

.team { background: #070b10; }
.team-grid, .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.team-card, .review-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035));
  border-radius: 26px;
}
.team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / .78;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(217, 35, 46, .24), rgba(255, 255, 255, .07));
  border: 1px solid rgba(255, 255, 255, .13);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder:empty:before {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #dff8ff;
  font: 900 54px var(--display);
  letter-spacing: -.04em;
}
.team-photo-placeholder:empty:after {
  content: "Add Cole's photo as assets/cole-moberley.jpg";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: #9fb0c4;
  font-size: 12px;
  text-align: center;
}
.team-card h3 { margin: 0 0 12px; font: 900 28px var(--display); }
.team-card p, .team-card small { color: #bdc7d6; }
.team-card small { display: block; margin-top: 18px; }

.reviews { background: #0c1320; }
.review-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 28px; }
.review-panel p { color: #bcc7d6; }
.review-card span { color: var(--amber); letter-spacing: .08em; }
.review-card p { font: 700 20px/1.4 var(--display); }
.review-card small { color: #aab5c4; }

.faq { background: var(--mist); color: var(--ink); }
.faq-list { max-width: 980px; margin-left: auto; }
.faq details { border-top: 1px solid rgba(16, 23, 34, .18); padding: 24px 0; }
.faq details:last-child { border-bottom: 1px solid rgba(16, 23, 34, .18); }
.faq summary { cursor: pointer; font: 900 25px var(--display); letter-spacing: -.03em; }
.faq p { max-width: 760px; color: #566170; }

.contact {
  padding: 120px clamp(22px, 6vw, 90px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
  background: radial-gradient(circle at top left, rgba(217, 35, 46, .2), transparent 36%), linear-gradient(135deg, #05070b, #111);
}
.contact-copy p { color: #c2ccda; font-size: 19px; }
.contact-methods, .hours { display: grid; gap: 10px; margin-top: 28px; }
.contact-methods a { color: #ff9aa1; font-weight: 900; }
.hours { color: #c3cedb; }
.hours strong { color: #fff; }
.forms { display: grid; grid-template-columns: 1.3fr .7fr; gap: 18px; }
.forms form {
  padding: 30px;
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .28);
}
.forms h3 { margin: 0 0 22px; font: 900 28px var(--display); }
.forms label {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}
.forms input, .forms select, .forms textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c8d0d8;
  padding: 10px 0;
  background: transparent;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
}
.forms textarea { border: 1px solid #c8d0d8; border-radius: 12px; padding: 12px; margin-top: 8px; }
.forms .full { grid-column: 1 / -1; }
.forms form:first-child { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.hidden { display: none; }
.form-note { margin: 0; color: #6f7884; font-size: 11px; text-transform: none; letter-spacing: 0; }
.subscribe-form { align-self: start; }
.subscribe-form button { border: 0; border-radius: 999px; padding: 12px 18px; background: var(--ink); color: #fff; font-weight: 900; }

footer {
  padding: 48px clamp(22px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  background: #020305;
  color: #c9d4e2;
}
footer strong { display: block; color: #fff; font: 900 24px var(--display); }
footer span { color: #8794a5; font-size: 12px; }
footer nav { display: flex; gap: 22px; font-size: 13px; font-weight: 700; }
footer p { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 20px; margin: 0; color: #768294; font-size: 12px; }

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  max-width: 560px;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 15px 18px;
  background: rgba(5, 7, 11, .88);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .4);
}
.cookie-banner p { margin: 0; color: #cbd5e1; font-size: 13px; }
.cookie-banner button { border: 0; border-radius: 999px; padding: 10px 16px; background: var(--cyan); font-weight: 900; }
.cookie-banner.is-hidden { display: none; }

.chatbot { position: fixed; right: 22px; bottom: 104px; z-index: 101; }
.chatbot-toggle {
  border: 0;
  border-radius: 999px;
  padding: 10px 10px 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), #ff5a63);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(217, 35, 46, .25);
  cursor: pointer;
}
.chatbot-toggle strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
}
.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(370px, calc(100vw - 44px));
  overflow: hidden;
  border-radius: 22px;
  background: #07101b;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .5);
  transform: translateY(12px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}
.chatbot.is-open .chatbot-panel { transform: none; opacity: 1; pointer-events: auto; }
.chatbot-panel header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, rgba(217, 35, 46, .16), rgba(255, 255, 255, .06));
}
.chatbot-panel header strong { display: block; font: 900 16px var(--display); }
.chatbot-panel header span { color: #9fb0c4; font-size: 12px; }
.chatbot-panel header button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.chatbot-messages { max-height: 250px; padding: 16px; overflow-y: auto; display: grid; gap: 10px; }
.chatbot-messages p { margin: 0; padding: 11px 13px; border-radius: 15px; font-size: 14px; }
.chatbot-messages .bot { background: rgba(255, 255, 255, .08); color: #dce7f4; border-top-left-radius: 4px; }
.chatbot-messages .user { background: var(--cyan); color: #06111e; justify-self: end; border-top-right-radius: 4px; }
.chatbot-prompts { padding: 0 16px 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.chatbot-prompts button {
  border: 1px solid rgba(217, 35, 46, .35);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, .05);
  color: #cceef5;
  font-size: 12px;
  cursor: pointer;
}
.chatbot form { display: grid; grid-template-columns: 1fr auto; border-top: 1px solid rgba(255, 255, 255, .12); }
.chatbot input { min-width: 0; border: 0; padding: 14px; background: #fff; color: var(--ink); outline: none; }
.chatbot form button { border: 0; padding: 0 16px; background: var(--red); color: #fff; font-weight: 900; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 20%, rgba(217, 35, 46, .2), transparent 32%), #05070b;
}
.thanks-card { max-width: 680px; padding: 40px; text-align: center; }
.thanks-card .brand-mark { margin: 0 auto 24px; }
.thanks-card h1 { font-size: clamp(44px, 8vw, 82px); }
.thanks-card p { color: #c4cede; font-size: 19px; }

@media (max-width: 980px) {
  .site-header nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #05070b;
    font-size: 30px;
    transform: translateX(100%);
    transition: .35s;
  }
  .site-header nav.open { transform: none; }
  .nav-toggle { display: block; z-index: 2; }
  .hero, .split, .section-heading, .feature, .review-panel, .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-bottom: 70px; align-items: center; }
  .hero-video { width: 90vw; height: 90vw; right: -20vw; opacity: .45; }
  .hero-stats { position: relative; left: auto; right: auto; bottom: auto; grid-template-columns: 1fr; margin-top: 24px; }
  .service-grid, .team-grid, .review-grid, .forms { grid-template-columns: 1fr; }
  .forms form:first-child { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .service-card-primary { grid-column: span 1; min-height: 390px; }
  footer { grid-template-columns: 1fr; }
  footer nav { flex-wrap: wrap; }
  .feature-visual { transform: none; }
}

@media (max-width: 620px) {
  .site-header { height: 74px; }
  .brand small { display: none; }
  .hero { padding-top: 125px; }
  .hero-copy { max-width: 100%; width: min(100%, 334px); }
  .hero h1 { font-size: 44px; line-height: .98; letter-spacing: -.05em; }
  .hero p { font-size: 16px; }
  .hero-video { right: -42vw; top: 165px; opacity: .28; }
  .loss-card { display: none; }
  .hero-stats div { padding: 20px; }
  .section, .feature, .contact { padding: 82px 22px; }
  .split h2, .section-heading h2, .feature h2, .contact h2 { font-size: 44px; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; display: block; max-width: none; }
  .cookie-banner button { margin-top: 10px; }
  .chatbot { right: 14px; bottom: 132px; }
  .intro-stage { min-height: 300px; }
  .intro-frame strong { font-size: clamp(94px, 28vw, 128px); }
  .intro-frame span { font-size: 18px; }
  .intro-frame em { margin-top: 30px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro-splash { animation-duration: .01s; animation-delay: .01s; }
  .intro-frame, .scan-grid, .pulse-ring, .loss-card, .marquee div { animation: none; }
  .intro-frame { opacity: 0; }
  .frame-6 { opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
