:root {
  color-scheme: dark;
  --bg: #050a0d;
  --surface: #0b1318;
  --surface-2: #111b21;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f7f8fa;
  --muted: #aab4bd;
  --blue: #218fff;
  --purple: #9b4dff;
  --orange: #ff7318;
  --green: #58d680;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#secure-your-hub {
  scroll-margin-top: clamp(8rem, 18vh, 12rem);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% 12%, rgba(123, 67, 226, 0.13), transparent 25rem),
    radial-gradient(circle at 34% 3%, rgba(23, 136, 234, 0.1), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
video {
  font: inherit;
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
}

.brand-bar {
  width: min(93%, 620px);
  min-height: 94px;
  margin: 0 auto;
  padding: 18px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.brand-logo {
  width: 150px;
  height: auto;
}

.beta-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 21, 26, 0.68);
  color: #ced5db;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.beta-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px var(--orange);
}

@media (min-width: 761px) {
  .brand-bar {
    width: min(92%, 1370px);
    min-height: 120px;
    padding: 26px 0 6px;
  }

  .brand-logo {
    width: 210px;
  }

  .beta-pill {
    min-height: 40px;
    padding: 0 17px;
    font-size: 0.88rem;
  }
}

.hero {
  width: min(92%, 1370px);
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  padding: 28px 0 72px;
}

.hero-copy {
  position: relative;
  z-index: 10;
}

.eyebrow {
  margin: 0 0 18px;
  color: #7dc0ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-eyebrow {
  white-space: nowrap;
}

.hero-eyebrow-mobile {
  display: none;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(4.4rem, 7.6vw, 8.2rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
  font-weight: 840;
}

h1 span {
  padding-inline-end: 0.1em;
  color: transparent;
  background: linear-gradient(100deg, #fb55c6 3%, var(--purple) 38%, var(--blue) 76%, #6ee7ea);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.accent-heading span {
  padding-inline-end: 0.04em;
  color: transparent;
  background: linear-gradient(105deg, #d3a5ff 4%, #9d72ff 46%, #73c5ff 96%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-lead {
  max-width: 620px;
  margin: 34px 0 0;
  color: #c2cbd2;
  font-size: clamp(1.03rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero-lead strong {
  color: #ffffff;
}

.claim-form {
  max-width: 670px;
  margin-top: 35px;
}

.claim-form > label {
  display: block;
  margin: 0 0 11px 4px;
  color: #f3f5f6;
  font-size: 0.88rem;
  font-weight: 760;
}

.claim-control {
  min-height: 68px;
  padding: 7px 7px 7px 20px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 19px;
  background: rgba(15, 23, 28, 0.86);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.claim-control:focus-within {
  border-color: rgba(60, 158, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(33, 143, 255, 0.12);
}

.claim-control > span {
  flex: 0 0 auto;
  color: #6f7d88;
  font-size: 0.94rem;
}

.claim-control input {
  width: 100%;
  min-width: 80px;
  padding: 8px 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 1rem;
}

.claim-control input::placeholder {
  color: #67737c;
}

.claim-control button,
.cta-button {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(115deg, #168fe9, #6749ef);
  color: white;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(49, 107, 238, 0.25);
  transition: transform 180ms ease, filter 180ms ease;
}

.claim-control button:hover,
.cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.claim-control button:focus-visible,
.cta-button:focus-visible {
  outline: 3px solid rgba(115, 196, 255, 0.65);
  outline-offset: 3px;
}

.claim-note,
.claim-next,
.claim-status {
  min-height: 18px;
  margin: 10px 0 0 4px;
  color: #77858f;
  font-size: 0.78rem;
  line-height: 1.4;
}

.claim-next {
  max-width: 66ch;
  margin-top: 6px;
  color: #9ca8b1;
}

.claim-status {
  min-height: 0;
  color: #7de69e;
}

.claim-status.is-checking {
  color: #82c7ff;
}

.claim-status.is-success {
  color: #7de69e;
  font-weight: 600;
}

.claim-status.is-warning {
  color: #ffad76;
}

.claim-status.is-error {
  color: #ff8a8a;
}

.claim-control button[disabled],
.registration-submit[disabled] {
  cursor: wait;
  filter: saturate(0.55);
  opacity: 0.75;
}

.product-stage {
  min-height: 690px;
  position: relative;
  isolation: isolate;
  perspective: 1500px;
}

.product-stage::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 68%;
  left: 9%;
  top: 14%;
  z-index: -3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 48%;
  background: radial-gradient(circle at 52% 48%, rgba(89, 60, 185, 0.22), rgba(8, 14, 18, 0) 66%);
  filter: blur(1px);
}

.stage-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(58px);
  opacity: 0.52;
}

.glow-one {
  width: 250px;
  height: 250px;
  right: 4%;
  top: 8%;
  background: rgba(27, 135, 255, 0.34);
}

.glow-two {
  width: 290px;
  height: 290px;
  left: 8%;
  bottom: 10%;
  background: rgba(163, 50, 225, 0.27);
}

.phone {
  margin: 0;
  position: absolute;
  transform-origin: center bottom;
  filter: drop-shadow(0 35px 32px rgba(0, 0, 0, 0.42));
}

.phone picture,
.phone img {
  width: 100%;
  height: auto;
  display: block;
}

.phone-left {
  width: 38%;
  left: -1%;
  top: 22%;
  z-index: 1;
  transform: rotate(-8deg) translateZ(-40px);
  opacity: 0.74;
}

.phone-centre {
  width: 43%;
  left: 29%;
  top: 3%;
  z-index: 4;
  animation: phone-float 7s ease-in-out infinite;
}

.phone-right {
  width: 38%;
  right: -3%;
  top: 18%;
  z-index: 2;
  transform: rotate(8deg) translateZ(-40px);
  opacity: 0.8;
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.promise {
  width: min(92%, 1370px);
  margin: 0 auto;
  padding: 112px 0 92px;
  border-top: 1px solid var(--line);
}

.momentum {
  width: min(92%, 1370px);
  margin: 22px auto 94px;
  padding: clamp(30px, 4.5vw, 60px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 0, rgba(33, 143, 255, 0.18), transparent 30%),
    radial-gradient(circle at 92% 100%, rgba(155, 77, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(16, 26, 32, 0.96), rgba(8, 14, 18, 0.96));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07), 0 30px 90px rgba(0, 0, 0, 0.24);
}

.momentum::after {
  content: "";
  width: 330px;
  height: 330px;
  position: absolute;
  right: -175px;
  top: -190px;
  border: 64px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  pointer-events: none;
}

.momentum-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
}

.momentum-header h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.2vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.momentum-rate {
  margin: 0 0 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c7d0d6;
  font-size: 0.82rem;
  font-weight: 720;
}

.momentum-rate span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(88, 214, 128, 0.1), 0 0 18px rgba(88, 214, 128, 0.65);
  animation: activity-pulse 2.4s ease-in-out infinite;
}

.momentum-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.momentum-grid article {
  min-width: 0;
  padding: 35px 28px 3px 0;
}

.momentum-grid article + article {
  padding-left: clamp(22px, 3vw, 45px);
  border-left: 1px solid var(--line);
}

.stat-number {
  display: block;
  color: transparent;
  background: linear-gradient(105deg, #ffffff 10%, #a7d5ff 55%, #cba7ff);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
  font-variant-numeric: tabular-nums;
  font-weight: 860;
  line-height: 0.98;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.momentum-grid p {
  max-width: 25ch;
  margin: 15px 0 0;
  color: #aeb8c0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.momentum-updated {
  margin: 28px 0 0;
  color: #77858f;
  font-size: 0.76rem;
  line-height: 1.5;
}

@keyframes activity-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.why {
  width: min(92%, 1370px);
  margin: 0 auto;
  padding: 126px 0 118px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: start;
  column-gap: clamp(55px, 9vw, 145px);
  row-gap: 44px;
  border-top: 1px solid var(--line);
}

.why-statement h2 {
  margin: 0;
  font-size: clamp(3.4rem, 6.4vw, 7rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.why-statement h2 em {
  padding-inline-end: 0.1em;
  color: transparent;
  background: linear-gradient(100deg, #ff8e48, #fb55c6 38%, #9b4dff 76%, #218fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-style: normal;
}

.why-copy > p {
  margin: 0;
  color: #c5ced4;
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.72;
}

.uk-origin {
  margin-top: 35px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.uk-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 192, 255, 0.26);
  border-radius: 15px;
  background: rgba(33, 143, 255, 0.08);
  color: #9dcfff;
  font-size: 0.74rem;
  font-weight: 880;
  letter-spacing: 0.08em;
}

.uk-origin strong,
.uk-origin small {
  display: block;
}

.uk-origin strong {
  color: #f3f6f8;
  font-size: 0.94rem;
}

.uk-origin small {
  margin-top: 4px;
  color: #89969f;
  font-size: 0.78rem;
}

.protection-strip {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding: 25px;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 50%, rgba(33, 143, 255, 0.11), transparent 38%),
    rgba(255, 255, 255, 0.025);
}

.protection-intro .eyebrow {
  margin-bottom: 8px;
}

.protection-intro > p:last-child {
  max-width: 62ch;
  margin: 0;
  color: #aeb9c1;
  font-size: 1rem;
  line-height: 1.6;
}

.protection-pillars {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}

.protection-pillars li {
  min-height: 54px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(4, 10, 14, 0.48);
  color: #edf3f6;
  font-size: 0.94rem;
  font-weight: 730;
  line-height: 1.35;
}

.protection-pillars span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  border: 1px solid rgba(97, 226, 155, 0.34);
  border-radius: 50%;
  background: rgba(55, 191, 117, 0.12);
  color: #75e6a8;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.promise-heading {
  max-width: 980px;
  margin-bottom: 54px;
}

.promise h2,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.promo,
.faq {
  width: min(92%, 1370px);
  margin: 0 auto;
  padding: 104px 0 86px;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 850px;
}

.promo-heading {
  max-width: 1120px;
}

.promo-title-line {
  display: block;
}

.promo-title-line:first-child,
.keep-together {
  white-space: nowrap;
}

.promo-title-accent {
  padding-inline-end: 0.04em;
  color: transparent;
  background: linear-gradient(102deg, #d4a6ff 5%, #9b72ff 48%, #72c6ff 96%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.video-shell {
  aspect-ratio: 16 / 9;
  margin-top: 52px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 34px;
  background: #000;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.08);
}

.video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(71, 111, 255, 0.08), transparent 38%);
  pointer-events: none;
}

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-play {
  min-height: 76px;
  padding: 9px 27px 9px 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(8, 13, 17, 0.78);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
  transition: transform 180ms ease, background 180ms ease;
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.04);
  background: rgba(20, 28, 34, 0.94);
}

.video-play > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  font-size: 1.1rem;
}

.video-play strong {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.video-play[hidden] {
  display: none;
}

.video-summary {
  max-width: 850px;
  margin: 18px auto 0;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.video-summary summary {
  color: #d9e1e7;
  font-size: 0.9rem;
  font-weight: 760;
  cursor: pointer;
}

.video-summary p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(440px, 1fr);
  gap: clamp(45px, 8vw, 130px);
}

.faq-heading h2 {
  font-size: clamp(2.7rem, 4.5vw, 5rem);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  list-style: none;
  color: #f4f6f8;
  font-size: 1.22rem;
  font-weight: 740;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: #7dc0ff;
  font-size: 1.7rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 63ch;
  margin: -5px 52px 30px 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.faq-list details p strong {
  color: #eef2f5;
}

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

.promise-grid article {
  min-height: 210px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 60%),
    var(--surface);
}

.promise-grid article:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0, rgba(118, 67, 237, 0.17), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 60%),
    var(--surface);
}

.promise-grid article:nth-child(3) {
  background:
    radial-gradient(circle at 100% 0, rgba(35, 156, 110, 0.14), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 60%),
    var(--surface);
}

.promise-grid article:nth-child(4) {
  background:
    radial-gradient(circle at 100% 0, rgba(33, 143, 255, 0.15), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 60%),
    var(--surface);
}

.promise-grid article:nth-child(5) {
  background:
    radial-gradient(circle at 100% 0, rgba(88, 214, 128, 0.15), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 60%),
    var(--surface);
}

.promise-grid article:nth-child(6) {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 115, 24, 0.15), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 60%),
    var(--surface);
}

.feature-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border: 1px solid rgba(124, 194, 255, 0.34);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(33, 143, 255, 0.92), rgba(126, 75, 239, 0.92));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2);
}

.feature-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.promise-grid h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
}

.promise-grid p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.sectors {
  width: min(92%, 1370px);
  margin: 22px auto 94px;
  padding: clamp(35px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 36px;
  background:
    radial-gradient(circle at 0 0, rgba(155, 77, 255, 0.18), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(33, 143, 255, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(16, 24, 30, 0.98), rgba(8, 14, 18, 0.98));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07), 0 30px 90px rgba(0, 0, 0, 0.24);
}

.sectors-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  align-items: start;
  gap: clamp(45px, 8vw, 120px);
}

.sectors-heading h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.064em;
}

.sectors-heading > p {
  margin: 0 0 7px;
  color: #bdc7ce;
  font-size: 1.05rem;
  line-height: 1.7;
}

.sectors-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sectors-grid article {
  min-height: 180px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.032);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.sector-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border: 1px solid rgba(125, 192, 255, 0.2);
  border-radius: 50%;
  background: rgba(33, 143, 255, 0.08);
  color: #8fc8ff;
  font-size: 0.65rem;
  font-weight: 880;
  letter-spacing: 0.06em;
}

.sector-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.sectors-grid article:nth-child(2n) .sector-mark {
  border-color: rgba(183, 119, 255, 0.22);
  background: rgba(155, 77, 255, 0.08);
  color: #c9a1ff;
}

.sectors-grid article:nth-child(4n) .sector-mark {
  border-color: rgba(255, 144, 74, 0.22);
  background: rgba(255, 115, 24, 0.08);
  color: #ffac75;
}

.sectors-grid h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.sectors-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.use-cases {
  width: min(92%, 1370px);
  margin: 0 auto;
  padding: 112px 0 96px;
  border-top: 1px solid var(--line);
}

.use-cases-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: clamp(45px, 8vw, 120px);
}

.use-cases-heading h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.064em;
}

.use-cases-summary > p {
  max-width: 570px;
  margin: 0 0 7px;
  color: #bdc7ce;
  font-size: 1.05rem;
  line-height: 1.7;
}

.use-cases-cta {
  width: fit-content;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(118, 190, 255, 0.24);
  border-radius: 999px;
  background: rgba(33, 143, 255, 0.07);
  color: #dceeff;
  font-size: 0.9rem;
  font-weight: 780;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.use-cases-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(118, 190, 255, 0.5);
  background: rgba(33, 143, 255, 0.13);
}

.use-cases-cta:focus-visible {
  outline: 3px solid rgba(115, 196, 255, 0.65);
  outline-offset: 3px;
}

.use-cases-cta span {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.use-cases-cta:hover span {
  transform: translateX(3px);
}

.verification,
.subscriptions {
  width: min(92%, 1370px);
  margin: 0 auto;
}

.verification {
  padding: 112px 0 48px;
  border-top: 1px solid var(--line);
}

.verification-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.72fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
  padding: clamp(36px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 0, rgba(155, 77, 255, 0.2), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(33, 143, 255, 0.17), transparent 38%),
    linear-gradient(145deg, rgba(16, 24, 30, 0.99), rgba(7, 13, 17, 0.99));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07), 0 34px 100px rgba(0, 0, 0, 0.28);
}

.verification-copy {
  position: relative;
  z-index: 2;
}

.verification-copy h2,
.subscriptions-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.064em;
}

.verification-lead {
  max-width: 62ch;
  margin: 27px 0 0;
  color: #c3ccd3;
  font-size: 1.08rem;
  line-height: 1.7;
}

.verification-benefits {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
  list-style: none;
}

.verification-benefits li,
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e6ebef;
  font-size: 0.97rem;
  line-height: 1.48;
}

.verification-benefits li > span,
.plan-features li > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(88, 214, 128, 0.13);
  color: #72e79a;
  font-size: 0.72rem;
  font-weight: 900;
}

.verification-offer {
  max-width: 720px;
  margin-top: 31px;
  padding-top: 25px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.verification-offer small {
  display: block;
  margin-bottom: 5px;
  color: #9fcfff;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verification-offer strong {
  color: #fff;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.verification-offer strong span {
  color: #aeb9c1;
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0;
}

.verification-offer > p {
  max-width: 45ch;
  margin: 0;
  color: #98a5ae;
  font-size: 0.88rem;
  line-height: 1.55;
}

.verification-actions {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subscription-button {
  min-height: 50px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  color: #fff;
  font-size: 0.91rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.subscription-button:focus-visible,
.subscription-tab:focus-visible {
  outline: 3px solid rgba(115, 196, 255, 0.65);
  outline-offset: 3px;
}

.subscription-button-primary {
  background: linear-gradient(110deg, var(--blue), #6748f2);
  box-shadow: 0 13px 34px rgba(45, 108, 235, 0.22);
}

.subscription-button-secondary {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.045);
}

.verification-passport-wrap {
  position: relative;
  z-index: 2;
}

.verification-passport-wrap::before {
  content: "";
  width: 125%;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 148, 255, 0.2), rgba(145, 72, 241, 0.08) 43%, transparent 68%);
  filter: blur(12px);
}

.verification-passport {
  width: min(100%, 490px);
  margin-left: auto;
  padding: 28px;
  position: relative;
  border: 1px solid rgba(142, 204, 255, 0.28);
  border-radius: 27px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 45%),
    rgba(7, 14, 19, 0.93);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.09);
  transform: rotate(1.2deg);
}

.passport-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #8897a2;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.passport-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b8f3cd;
}

.passport-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58d680;
  box-shadow: 0 0 12px rgba(88, 214, 128, 0.8);
}

.passport-identity {
  margin: 28px 0 25px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.passport-shield {
  width: 64px;
  height: 70px;
  display: grid;
  place-items: center;
  flex: 0 0 64px;
  border-radius: 30px 30px 38px 38px;
  background: linear-gradient(145deg, #8145f5, #208fff 68%, #55d2e9);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 950;
  box-shadow: 0 15px 38px rgba(50, 132, 255, 0.3), inset 0 1px rgba(255, 255, 255, 0.25);
}

.passport-identity small {
  color: #8fbfe8;
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.passport-identity h3 {
  margin: 5px 0 0;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.passport-checks {
  margin: 0;
}

.passport-checks > div {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.passport-checks dt {
  color: #c5cdd3;
  font-size: 0.91rem;
}

.passport-checks dd {
  margin: 0;
  color: #6fe595;
  font-size: 0.9rem;
  font-weight: 900;
}

.verification-passport > p {
  margin: 22px 0 0;
  color: #7f8d97;
  font-size: 0.76rem;
  line-height: 1.55;
}

.subscriptions {
  padding: 96px 0 112px;
}

.subscriptions-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(45px, 8vw, 120px);
}

.subscriptions-heading > p {
  max-width: 570px;
  margin: 0 0 7px;
  color: #bdc7ce;
  font-size: 1.05rem;
  line-height: 1.7;
}

.subscription-switcher {
  width: fit-content;
  margin: 49px auto 30px;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(118px, 1fr));
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(11, 19, 24, 0.86);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.subscription-tab {
  min-height: 47px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: #99a6af;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.subscription-tab:hover {
  color: #fff;
}

.subscription-tab.is-active {
  background: linear-gradient(110deg, rgba(33, 143, 255, 0.95), rgba(113, 67, 238, 0.95));
  color: #fff;
  box-shadow: 0 10px 27px rgba(59, 91, 224, 0.25), inset 0 1px rgba(255, 255, 255, 0.17);
}

.subscription-panel[hidden] {
  display: none;
}

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

.plan-card {
  min-height: 530px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 27px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 58%),
    var(--surface);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
}

.plan-card-featured {
  border-color: rgba(107, 174, 255, 0.37);
  background:
    radial-gradient(circle at 100% 0, rgba(146, 72, 242, 0.22), transparent 41%),
    radial-gradient(circle at 0 100%, rgba(33, 143, 255, 0.14), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 58%),
    var(--surface);
}

.plan-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.plan-card-topline > span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-card-topline small {
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(120, 192, 255, 0.2);
  border-radius: 999px;
  background: rgba(33, 143, 255, 0.08);
  color: #abd5fb;
  font-size: 0.68rem;
  font-weight: 760;
}

.plan-card h3 {
  max-width: 18ch;
  margin: 25px 0 0;
  font-size: clamp(1.75rem, 2.8vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.plan-price {
  margin: 25px 0 0;
  color: #fff;
  font-size: 2.3rem;
  font-weight: 850;
  letter-spacing: -0.055em;
}

.plan-price span {
  color: #94a1aa;
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: 0;
}

.plan-price-text {
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.plan-price-text span {
  display: block;
  margin-top: 5px;
}

.plan-summary {
  max-width: 55ch;
  margin: 16px 0 0;
  color: #aeb9c1;
  font-size: 0.98rem;
  line-height: 1.62;
}

.plan-features {
  margin: 25px 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.plan-verification {
  margin-top: auto;
  margin-bottom: 19px;
  padding: 14px 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(155, 105, 255, 0.16);
  border-radius: 14px;
  background: rgba(124, 75, 238, 0.07);
}

.plan-verification strong {
  color: #cfb7ff;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-verification span {
  color: #9eabb4;
  font-size: 0.78rem;
  line-height: 1.42;
  text-align: right;
}

.plan-card-wide {
  min-height: 450px;
  padding: clamp(31px, 4.5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
  gap: clamp(45px, 8vw, 115px);
  align-items: center;
}

.plan-card-wide .plan-verification {
  max-width: 620px;
  margin-top: 26px;
  margin-bottom: 0;
}

.plan-card-detail {
  display: flex;
  flex-direction: column;
}

.plan-card-detail .plan-features {
  margin-top: 0;
}

.plan-card-detail .subscription-button {
  align-self: flex-start;
  margin-top: 10px;
}

.plan-card-family {
  background:
    radial-gradient(circle at 0 0, rgba(155, 77, 255, 0.19), transparent 39%),
    radial-gradient(circle at 100% 100%, rgba(33, 143, 255, 0.12), transparent 42%),
    var(--surface);
}

.plan-card-business {
  background:
    radial-gradient(circle at 0 0, rgba(33, 143, 255, 0.18), transparent 39%),
    radial-gradient(circle at 100% 100%, rgba(88, 214, 128, 0.1), transparent 42%),
    var(--surface);
}

.subscription-note {
  max-width: 78ch;
  margin: 25px auto 0;
  color: #7f8d97;
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.subscription-note a {
  color: #8dc9ff;
  text-underline-offset: 3px;
}

.case-study-shell {
  margin-top: 52px;
}

.case-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.case-tab {
  min-height: 158px;
  padding: 22px 54px 22px 22px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.028);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.case-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 194, 255, 0.28);
}

.case-tab:focus-visible {
  outline: 3px solid rgba(115, 196, 255, 0.65);
  outline-offset: 3px;
}

.case-tab.is-active {
  border-color: rgba(113, 188, 255, 0.42);
  background:
    radial-gradient(circle at 100% 0, rgba(126, 71, 239, 0.18), transparent 48%),
    rgba(18, 29, 36, 0.92);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 18px 55px rgba(0, 0, 0, 0.2);
}

.case-tab-kicker,
.case-panel-intro > p:first-child {
  color: #83c8ff;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-tab-arrow {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: #a9b5bd;
  font-size: 1rem;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.case-tab:hover .case-tab-arrow {
  color: #fff;
  transform: translateX(2px);
}

.case-tab.is-active .case-tab-arrow {
  background: linear-gradient(135deg, #218fff, #7e4bef);
  color: #fff;
  transform: rotate(90deg);
}

.case-tab > strong {
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.case-tab > small {
  max-width: 36ch;
  color: #8e9ba4;
  font-size: 0.88rem;
  line-height: 1.48;
}

.case-panels {
  margin-top: 14px;
}

.case-panel {
  padding: clamp(28px, 4.5vw, 58px);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  column-gap: clamp(40px, 7vw, 100px);
  row-gap: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0 0, rgba(33, 143, 255, 0.16), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(155, 77, 255, 0.15), transparent 36%),
    linear-gradient(145deg, rgba(15, 24, 30, 0.98), rgba(7, 13, 17, 0.98));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 30px 90px rgba(0, 0, 0, 0.24);
}

.case-panel[hidden] {
  display: none;
}

.case-panel:not([hidden]) {
  animation: case-panel-reveal 220ms ease both;
}

@keyframes case-panel-reveal {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

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

.case-panel-intro > p:first-child {
  margin: 0 0 13px;
}

.case-panel-intro h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.case-panel-intro > p:last-child {
  max-width: 54ch;
  margin: 21px 0 0;
  color: #aeb9c1;
  font-size: 1rem;
  line-height: 1.65;
}

.case-details {
  display: grid;
  gap: 0;
}

.case-details > div {
  padding: 17px 0 17px 42px;
  position: relative;
  border-top: 1px solid var(--line);
}

.case-details > div::before {
  content: "✓";
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  position: absolute;
  left: 0;
  top: 17px;
  border: 1px solid rgba(86, 214, 131, 0.24);
  border-radius: 50%;
  background: rgba(86, 214, 131, 0.09);
  color: #76e29a;
  font-size: 0.85rem;
  font-weight: 900;
}

.case-details > div:last-child {
  border-bottom: 1px solid var(--line);
}

.case-details strong {
  color: #f4f7f9;
  font-size: 1rem;
}

.case-details p {
  margin: 6px 0 0;
  color: #939fa8;
  font-size: 0.94rem;
  line-height: 1.55;
}

.case-outcome {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(88, 214, 128, 0.18);
  border-radius: 15px;
  background: rgba(88, 214, 128, 0.055);
  color: #a8b4ac;
  font-size: 0.9rem;
  line-height: 1.55;
}

.case-outcome strong {
  color: #8fe5aa;
}

.case-note {
  grid-column: 1 / -1;
  margin: -18px 2px 0;
  color: #75838c;
  font-size: 0.75rem;
  line-height: 1.5;
}

.contact {
  width: min(92%, 1370px);
  margin: 0 auto;
  padding: 110px 0 96px;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(520px, 1.25fr);
  align-items: start;
  gap: clamp(50px, 8vw, 130px);
  border-top: 1px solid var(--line);
}

.contact-heading {
  max-width: 560px;
}

.contact-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.contact-heading > p:not(.eyebrow):not(.contact-direct) {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.contact-direct {
  margin: 24px 0 0;
  color: #8e9ba4;
  font-size: 0.92rem;
}

.contact-direct a {
  color: #8fc9ff;
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  position: relative;
  display: grid;
  gap: 19px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(122, 68, 239, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(17, 27, 33, 0.96), rgba(9, 15, 19, 0.96));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 28px 80px rgba(0, 0, 0, 0.22);
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field > span {
  color: #dce2e6;
  font-size: 0.9rem;
  font-weight: 760;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  outline: 0;
  background: rgba(3, 9, 12, 0.74);
  color: #fff;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-field input,
.contact-field select {
  min-height: 54px;
  padding: 0 15px;
}

.contact-field textarea {
  min-height: 150px;
  padding: 14px 15px;
  line-height: 1.55;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(57, 156, 255, 0.76);
  box-shadow: 0 0 0 3px rgba(33, 143, 255, 0.12);
}

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

.contact-privacy {
  margin: -2px 0 0;
  color: #83919a;
  font-size: 0.86rem;
  line-height: 1.5;
}

.contact-submit {
  min-height: 56px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(115deg, #168fe9, #6749ef);
  color: #fff;
  font-size: 1rem;
  font-weight: 820;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(49, 107, 238, 0.22);
  transition: transform 180ms ease, filter 180ms ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.contact-submit:focus-visible {
  outline: 3px solid rgba(115, 196, 255, 0.65);
  outline-offset: 3px;
}

.contact-submit[disabled] {
  cursor: wait;
  filter: saturate(0.55);
  opacity: 0.75;
}

.contact-status {
  min-height: 21px;
  margin: -6px 0 0;
  color: #8fe5aa;
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-status.is-error {
  color: #ffad76;
}

.final-cta {
  width: min(92%, 1370px);
  min-height: 390px;
  margin: 70px auto 80px;
  padding: clamp(35px, 6vw, 82px);
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 36px;
  background:
    radial-gradient(circle at 85% 20%, rgba(44, 145, 255, 0.36), transparent 32%),
    radial-gradient(circle at 62% 100%, rgba(154, 68, 237, 0.43), transparent 42%),
    linear-gradient(130deg, #10181d, #090e12 70%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.09);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 12, 15, 0.98) 0%, rgba(7, 12, 15, 0.88) 43%, rgba(7, 12, 15, 0.08) 76%);
  pointer-events: none;
}

.final-cta::after {
  content: "";
  width: 280px;
  height: 280px;
  position: absolute;
  right: -80px;
  top: -90px;
  border: 55px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.final-cta > * {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(2.4rem, 4vw, 4.35rem);
}

.final-cta-copy {
  width: 64%;
}

.cta-button {
  min-height: 58px;
  margin-top: 36px;
  padding: 0 24px;
}

.final-cta > .final-cta-image {
  width: 48%;
  height: 112%;
  margin: 0;
  position: absolute;
  right: -2%;
  bottom: -12%;
  z-index: 0;
  pointer-events: none;
}

.final-cta-image picture,
.final-cta-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.final-cta-image img {
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(0.92) contrast(1.04);
}

.registration-dialog {
  width: min(94vw, 620px);
  max-height: min(92vh, 820px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: rgba(9, 15, 19, 0.98);
  color: var(--text);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.72), inset 0 1px rgba(255, 255, 255, 0.06);
}

.registration-dialog::backdrop {
  background: rgba(1, 4, 7, 0.82);
  backdrop-filter: blur(13px);
}

.fundraising-dialog {
  width: min(94vw, 1020px);
  max-height: min(92vh, 840px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(133, 176, 255, 0.25);
  border-radius: 32px;
  background: #081117;
  color: var(--text);
  box-shadow: 0 42px 140px rgba(0, 0, 0, 0.78), inset 0 1px rgba(255, 255, 255, 0.08);
}

.fundraising-dialog::backdrop {
  background: rgba(1, 4, 7, 0.8);
  backdrop-filter: blur(16px) saturate(0.8);
}

.fundraising-card {
  padding: clamp(34px, 6vw, 62px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(126, 75, 239, 0.24), transparent 30%),
    radial-gradient(circle at 2% 100%, rgba(33, 143, 255, 0.17), transparent 34%),
    linear-gradient(145deg, rgba(17, 29, 36, 0.98), rgba(7, 13, 17, 0.99));
}

.fundraising-content {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.fundraising-visual {
  display: none;
}

@media (min-width: 761px) {
  .fundraising-card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
    align-items: stretch;
    gap: clamp(12px, 2vw, 30px);
  }

  .fundraising-visual {
    min-height: 520px;
    margin: -24px -48px -62px -44px;
    display: block;
    align-self: end;
    position: relative;
    z-index: 1;
    background-image: url("./assets/hubly-investor-binoculars.webp");
    background-repeat: no-repeat;
    background-position: 42% 30%;
    background-size: 148% auto;
    pointer-events: none;
  }

  .fundraising-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(10, 18, 23, 0.98) 0%, rgba(10, 18, 23, 0.78) 11%, rgba(10, 18, 23, 0) 36%),
      linear-gradient(0deg, rgba(8, 15, 20, 0.98) 0%, rgba(8, 15, 20, 0.74) 11%, rgba(8, 15, 20, 0) 31%);
  }
}

.fundraising-card::before {
  content: "";
  height: 3px;
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(90deg, #fb55c6, #8f4fff 48%, #218fff 76%, #65e2e6);
}

.fundraising-card::after {
  content: "";
  width: 240px;
  height: 240px;
  position: absolute;
  right: -118px;
  bottom: -135px;
  border: 1px solid rgba(116, 193, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(126, 75, 239, 0.035), 0 0 0 68px rgba(33, 143, 255, 0.025);
  pointer-events: none;
}

.fundraising-brandline {
  min-height: 35px;
  margin: 0 56px 38px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.fundraising-brandline img {
  width: 118px;
  height: auto;
}

.fundraising-brandline span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #c7d0d7;
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.02em;
}

.fundraising-eyebrow {
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
  color: #80c9ff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fundraising-card h2 {
  max-width: 560px;
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.fundraising-card h2 span {
  padding-inline-end: 0.06em;
  color: transparent;
  background: linear-gradient(105deg, #d69cff, #8d61ff 48%, #59bdff 94%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.fundraising-description {
  max-width: 61ch;
  margin: 26px 0 0;
  position: relative;
  z-index: 1;
  color: #b6c1c9;
  font-size: 1.05rem;
  line-height: 1.67;
}

.fundraising-proof {
  width: fit-content;
  margin-top: 26px;
  padding: 11px 15px 11px 11px;
  display: flex;
  align-items: center;
  gap: 11px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(95, 224, 154, 0.22);
  border-radius: 15px;
  background: rgba(53, 190, 116, 0.075);
}

.fundraising-proof-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, #62dd8b, #24aa70);
  color: #03110a;
  font-weight: 950;
}

.fundraising-proof strong,
.fundraising-proof small {
  display: block;
}

.fundraising-proof strong {
  color: #eff8f3;
  font-size: 0.9rem;
}

.fundraising-proof small {
  margin-top: 2px;
  color: #8da99a;
  font-size: 0.74rem;
}

.fundraising-actions {
  margin-top: 31px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.fundraising-primary {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 15px;
  background: linear-gradient(110deg, #208ff4, #7048ef);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 820;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(49, 111, 229, 0.24), inset 0 1px rgba(255, 255, 255, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.fundraising-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(49, 111, 229, 0.31), inset 0 1px rgba(255, 255, 255, 0.22);
}

.fundraising-secondary {
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #aeb9c1;
  font-size: 0.9rem;
  font-weight: 720;
  cursor: pointer;
}

.fundraising-secondary:hover {
  color: #fff;
}

.fundraising-note {
  max-width: 70ch;
  margin: 24px 0 0;
  position: relative;
  z-index: 1;
  color: #65747d;
  font-size: 0.75rem;
  line-height: 1.5;
}

.fundraising-snooze {
  min-height: 40px;
  margin: 8px 0 -8px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #7f8d96;
  font-size: 0.78rem;
  font-weight: 680;
  text-decoration: underline;
  text-decoration-color: rgba(127, 141, 150, 0.46);
  text-underline-offset: 4px;
  cursor: pointer;
}

.fundraising-snooze:hover,
.fundraising-snooze:focus-visible {
  color: #d9e0e5;
  text-decoration-color: currentColor;
}

.policy-dialog {
  width: min(96vw, 900px);
  max-height: min(92vh, 900px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: rgba(9, 15, 19, 0.99);
  color: var(--text);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.72), inset 0 1px rgba(255, 255, 255, 0.06);
}

.policy-dialog::backdrop {
  background: rgba(1, 4, 7, 0.82);
  backdrop-filter: blur(13px);
}

.policy-card {
  padding: clamp(34px, 5vw, 58px);
  position: relative;
  background:
    radial-gradient(circle at 100% 0, rgba(116, 65, 235, 0.14), transparent 28%),
    radial-gradient(circle at 0 100%, rgba(33, 143, 255, 0.08), transparent 30%);
}

.policy-card > h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.policy-updated {
  margin: 12px 0 28px;
  color: #7d8992;
  font-size: 0.86rem;
}

.policy-copy {
  display: grid;
  gap: 28px;
}

.policy-copy h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.policy-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.policy-copy a,
.inline-policy-link {
  color: #7dc0ff;
}

.inline-policy-link {
  padding: 0;
  border: 0;
  background: none;
  font-size: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-dialog {
  width: min(94vw, 720px);
}

.cookie-options {
  display: grid;
  gap: 10px;
  margin: 25px 0;
}

.cookie-option {
  min-height: 82px;
  padding: 16px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option strong {
  margin-bottom: 5px;
  font-size: 1rem;
}

.cookie-option small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cookie-option input {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  accent-color: var(--blue);
}

.cookie-option.is-required {
  cursor: default;
}

.cookie-banner {
  width: min(calc(100% - 32px), 520px);
  padding: 20px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 16px;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(9, 15, 19, 0.96);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(20px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  font-size: 1rem;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cookie-actions button {
  min-height: 46px;
  padding: 0 17px;
  border-radius: 11px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 770;
  cursor: pointer;
}

.cookie-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.cookie-primary {
  grid-column: auto;
  grid-row: auto;
  border: 0;
  background: linear-gradient(115deg, #168fe9, #6749ef);
}

.dialog-card {
  min-height: 100%;
  padding: clamp(26px, 5vw, 46px);
  position: relative;
  background:
    radial-gradient(circle at 100% 0, rgba(116, 65, 235, 0.16), transparent 30%),
    radial-gradient(circle at 0 100%, rgba(33, 143, 255, 0.1), transparent 32%);
}

.dialog-close {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: #dbe1e5;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-close:hover {
  background: rgba(255, 255, 255, 0.09);
}

.dialog-eyebrow {
  margin: 0 0 10px;
  color: #75dc97;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.registration-content > h2,
.registration-success h2 {
  margin: 0;
  font-size: clamp(2.1rem, 7vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.dialog-intro {
  max-width: 48ch;
  margin: 16px 0 25px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hub-summary {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.hub-summary-name {
  margin-bottom: 17px;
}

.hub-summary-name span,
.hub-summary-label,
.email-label {
  display: block;
  margin-bottom: 7px;
  color: #81909a;
  font-size: 0.75rem;
  font-weight: 760;
}

.hub-summary-name strong {
  display: block;
  font-size: 1.1rem;
}

.generated-handle {
  display: block;
  color: #f2f6f8;
  font-size: 1.02rem;
}

.email-input:focus {
  border-color: rgba(57, 156, 255, 0.76);
  box-shadow: 0 0 0 3px rgba(33, 143, 255, 0.12);
}

.hub-summary > small {
  display: block;
  margin: 8px 2px 0;
  color: #71808a;
}

.safety-result {
  margin: 13px 0 24px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(88, 214, 128, 0.2);
  border-radius: 14px;
  background: rgba(88, 214, 128, 0.07);
}

.safety-result-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #041109;
  font-weight: 950;
}

.safety-result strong,
.safety-result small {
  display: block;
}

.safety-result strong {
  font-size: 0.82rem;
}

.safety-result small {
  margin-top: 2px;
  color: #95a49d;
  font-size: 0.7rem;
}

.email-input {
  width: 100%;
  min-height: 53px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  outline: 0;
  background: rgba(2, 7, 10, 0.72);
  color: #fff;
}

.email-input::placeholder {
  color: #66737c;
}

.privacy-note {
  margin: 8px 2px 17px;
  color: #71808a;
  font-size: 0.7rem;
  line-height: 1.4;
}

.organisation-email-note {
  margin: 8px 0 2px;
  padding: 12px 13px;
  border: 1px solid rgba(73, 168, 255, 0.22);
  border-radius: 12px;
  background: rgba(73, 168, 255, 0.07);
  color: #8997a0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.organisation-email-note strong {
  color: var(--text);
}

.policy-consent {
  margin: -2px 2px 17px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #8997a0;
  font-size: 0.72rem;
  line-height: 1.45;
}

.policy-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.policy-consent a,
.cookie-notice-link a {
  color: #7dc0ff;
  text-underline-offset: 2px;
}

.cookie-notice-link {
  margin: -7px 0 20px;
  color: var(--muted);
  font-size: 0.86rem;
}

.registration-submit,
.registration-success button {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(115deg, #168fe9, #6749ef);
  color: #fff;
  font-weight: 820;
  cursor: pointer;
}

.registration-status {
  min-height: 20px;
  margin: 10px 2px 0;
  color: #ffad76;
  font-size: 0.76rem;
  line-height: 1.4;
}

.registration-success {
  padding: 45px 0 15px;
  text-align: center;
}

.success-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, #62de87, #209c6a);
  color: #03110a;
  font-size: 1.8rem;
  font-weight: 950;
  box-shadow: 0 15px 45px rgba(39, 182, 112, 0.25);
}

.registration-success .dialog-eyebrow {
  margin-bottom: 12px;
}

.registration-success p:not(.dialog-eyebrow) {
  max-width: 40ch;
  margin: 17px auto 25px;
  color: var(--muted);
  line-height: 1.55;
}

.registration-verify {
  padding: 45px 0 15px;
  text-align: center;
}

.verify-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, #168fe9, #6749ef);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 950;
  box-shadow: 0 15px 45px rgba(33, 143, 255, 0.22);
}

.registration-verify .dialog-eyebrow {
  margin-bottom: 12px;
}

.registration-verify p:not(.dialog-eyebrow) {
  max-width: 44ch;
  margin: 17px auto 25px;
  color: var(--muted);
  line-height: 1.55;
}

.verify-actions {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  justify-content: center;
}

#verify-retry {
  border: 0;
  border-radius: 13px;
  background: linear-gradient(115deg, #168fe9, #6749ef);
  color: #fff;
  min-height: 54px;
  font-weight: 820;
  cursor: pointer;
}

.verify-close {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  min-height: 48px;
  cursor: pointer;
}

footer {
  width: min(92%, 1370px);
  margin: 0 auto;
  padding: 32px 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

footer img {
  width: 118px;
  height: auto;
}

footer p {
  margin: 0;
  color: #73808a;
  font-size: 0.78rem;
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 9px;
}

.footer-meta nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
}

.footer-meta button,
.footer-meta a {
  min-height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: none;
  color: #8f9ba4;
  font-size: 0.76rem;
  text-decoration: none;
  cursor: pointer;
}

.footer-meta button:hover,
.footer-meta a:hover {
  color: #fff;
}

.subscription-note strong {
  color: var(--text);
}

@media (max-width: 1060px) {
  .promo-title-line:first-child {
    white-space: normal;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-top: 10px;
  }

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

  .product-stage {
    grid-row: 1;
    min-height: 660px;
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .hero-copy {
    grid-row: 2;
    text-align: center;
    margin: 0 auto;
  }

  .hero-lead,
  .claim-form {
    margin-left: auto;
    margin-right: auto;
  }

  .claim-form > label {
    text-align: left;
  }

  .why {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .why-copy {
    max-width: 760px;
  }

  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sectors-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .use-cases-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .verification-shell {
    grid-template-columns: 1fr;
  }

  .verification-passport {
    margin: 0 auto;
  }

  .subscriptions-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plan-card-wide {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .case-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .sectors-heading > p {
    max-width: 680px;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-heading {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .hero-eyebrow {
    white-space: normal;
  }

  .hero-eyebrow-desktop {
    display: none;
  }

  .hero-eyebrow-mobile {
    display: inline;
  }

  .page-shell {
    padding-top: calc(94px + env(safe-area-inset-top));
  }

  .brand-bar {
    width: min(93%, 620px);
    min-height: calc(94px + env(safe-area-inset-top));
    margin: 0;
    padding: calc(18px + env(safe-area-inset-top)) 0 8px;
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 90;
    transform: translateX(-50%);
    border: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition:
      width 220ms ease,
      min-height 220ms ease,
      padding 220ms ease,
      top 220ms ease,
      transform 220ms ease,
      opacity 180ms ease,
      border-color 220ms ease,
      border-radius 220ms ease,
      background-color 220ms ease,
      box-shadow 220ms ease;
    will-change: transform, opacity;
  }

  .brand-bar.is-scrolled {
    width: min(calc(100% - 24px), 620px);
    min-height: 64px;
    padding: 8px 14px;
    top: calc(8px + env(safe-area-inset-top));
    border-color: rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(8, 15, 20, 0.82);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
  }

  .brand-bar.is-hidden {
    transform: translate(-50%, -140%);
    opacity: 0;
    pointer-events: none;
  }

  .brand-logo {
    width: 150px;
    transition: width 220ms ease;
  }

  .brand-bar.is-scrolled .brand-logo {
    width: 132px;
  }

  .beta-pill {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
    line-height: 1.2;
    transition: min-height 220ms ease, padding 220ms ease, font-size 220ms ease;
  }

  .brand-bar.is-scrolled .beta-pill {
    min-height: 32px;
    padding: 0 10px;
    gap: 8px;
    font-size: 0.76rem;
  }

  .hero {
    width: min(93%, 620px);
    min-height: auto;
    padding: 0 0 52px;
    row-gap: 0;
  }

  .product-stage {
    width: 100%;
    grid-row: 3;
    min-height: 500px;
    margin: 20px auto 0;
  }

  .phone-left {
    width: 42%;
    left: -7%;
    top: 21%;
  }

  .phone-centre {
    width: 48%;
    left: 26%;
  }

  .phone-right {
    width: 42%;
    right: -7%;
    top: 20%;
  }

  .hero-copy {
    display: contents;
    width: 100%;
  }

  .hero-copy > .eyebrow {
    width: 100%;
    grid-row: 1;
    text-align: center;
  }

  .hero-copy > h1 {
    width: 100%;
    max-width: 620px;
    grid-row: 2;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero-copy > .hero-lead {
    width: 100%;
    grid-row: 4;
    text-align: center;
  }

  .hero-copy > .claim-form {
    width: 100%;
    grid-row: 5;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 0.8rem;
  }

  h1 {
    font-size: clamp(3.7rem, 15.5vw, 5.15rem);
  }

  .hero-lead {
    margin-top: 26px;
    max-width: 35ch;
    color: #d2d9de;
    font-size: clamp(1.2rem, 4.9vw, 1.35rem);
    line-height: 1.62;
  }

  .claim-form {
    margin-top: 29px;
  }

  .claim-form > label {
    margin-bottom: 14px;
    font-size: 1.1rem;
    font-weight: 800;
  }

  .claim-control {
    min-height: auto;
    padding: 7px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .claim-control input {
    min-height: 48px;
  }

  .claim-control button {
    min-height: 52px;
    grid-column: 1 / -1;
    width: 100%;
    font-size: 1rem;
  }

  .claim-note,
  .claim-status {
    color: #9aa7b0;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .claim-next {
    margin-top: 8px;
    color: #b3bec6;
    font-size: 1rem;
    line-height: 1.55;
  }

  .promise {
    width: min(93%, 620px);
    padding: 72px 0 64px;
  }

  .sectors {
    width: min(93%, 620px);
    margin: 8px auto 64px;
    padding: 32px 24px;
    border-radius: 26px;
  }

  .sectors-heading h2 {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .sectors-heading > p {
    font-size: 1rem;
  }

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

  .sectors-grid article {
    min-height: 150px;
    padding: 22px;
  }

  .sector-mark {
    margin-bottom: 0;
    font-size: 0.8rem;
  }

  .sectors-grid h3 {
    margin: 0;
  }

  .use-cases {
    width: min(93%, 620px);
    padding: 72px 0 64px;
  }

  .verification,
  .subscriptions {
    width: min(93%, 620px);
  }

  .verification {
    padding: 72px 0 38px;
  }

  .verification-shell {
    gap: 38px;
    padding: 32px 24px;
    border-radius: 26px;
  }

  .verification-copy h2,
  .subscriptions-heading h2 {
    font-size: clamp(2.5rem, 10.8vw, 3.85rem);
    line-height: 1;
  }

  .verification-lead,
  .subscriptions-heading > p,
  .plan-summary,
  .verification-benefits li,
  .plan-features li {
    font-size: 1.09375rem;
  }

  .verification-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .verification-offer {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .verification-offer > p {
    font-size: 0.95rem;
  }

  .verification-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .subscription-button {
    width: 100%;
    min-height: 54px;
    padding: 0 15px;
    font-size: 1rem;
  }

  .verification-passport {
    padding: 23px;
    border-radius: 23px;
    transform: none;
  }

  .passport-identity {
    margin-top: 24px;
  }

  .passport-checks dt {
    font-size: 1rem;
  }

  .verification-passport > p {
    font-size: 0.88rem;
  }

  .subscriptions {
    padding: 64px 0 78px;
  }

  .subscription-switcher {
    width: 100%;
    margin: 34px auto 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .subscription-tab {
    min-height: 50px;
    padding: 0 8px;
    font-size: 0.9rem;
  }

  .subscription-panel-personal {
    grid-template-columns: 1fr;
  }

  .plan-card,
  .plan-card-wide {
    min-height: 0;
    padding: 25px;
    border-radius: 24px;
  }

  .plan-card-wide {
    gap: 25px;
  }

  .plan-card h3 {
    max-width: 20ch;
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .plan-price {
    font-size: 2.15rem;
  }

  .plan-price-text {
    font-size: 1.5rem;
  }

  .plan-verification,
  .plan-card-wide .plan-verification {
    margin-top: 23px;
    display: grid;
    gap: 7px;
  }

  .plan-verification strong {
    font-size: 0.8rem;
  }

  .plan-verification span {
    font-size: 0.93rem;
    text-align: left;
  }

  .plan-card-detail .subscription-button {
    align-self: stretch;
  }

  .subscription-note {
    font-size: 0.9rem;
  }

  .use-cases-heading h2 {
    font-size: clamp(2.5rem, 10.8vw, 3.85rem);
    line-height: 1;
  }

  .use-cases-summary > p {
    font-size: 1.09375rem;
    line-height: 1.65;
  }

  .use-cases-cta {
    min-height: 50px;
    margin-top: 20px;
    padding: 0 18px;
    font-size: 1rem;
  }

  .case-study-shell {
    margin-top: 34px;
  }

  .case-tabs {
    margin-right: calc(50% - 50vw);
    padding: 0 max(3.5vw, calc((100vw - 620px) / 2)) 10px 0;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    scroll-snap-type: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: auto;
    touch-action: pan-x pan-y;
  }

  .case-tabs::-webkit-scrollbar {
    display: none;
  }

  .case-tab {
    min-height: 164px;
    padding: 20px 52px 20px 20px;
    flex: 0 0 min(78vw, 312px);
    gap: 7px;
    scroll-snap-align: none;
    transition: none;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-user-select: none;
    user-select: none;
  }

  .case-tab:hover {
    transform: translateZ(0);
  }

  .case-tab-kicker {
    font-size: 0.8rem;
  }

  .case-tab > strong {
    font-size: 1.25rem;
  }

  .case-tab > small {
    display: block;
    font-size: 1rem;
    line-height: 1.48;
  }

  .case-tab-arrow {
    width: 34px;
    height: 34px;
    top: 18px;
    right: 16px;
  }

  .case-panels {
    margin-top: 10px;
  }

  .case-panel {
    padding: 26px 23px;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 26px;
    border-radius: 24px;
  }

  .case-panel-intro > p:first-child {
    font-size: 0.8rem;
  }

  .case-panel-intro h3 {
    font-size: clamp(2.15rem, 10.5vw, 3.25rem);
  }

  .case-panel-intro > p:last-child,
  .case-details p {
    font-size: 1.09375rem;
    line-height: 1.65;
  }

  .case-details strong {
    font-size: 1.08rem;
  }

  .case-outcome {
    padding: 17px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .case-note {
    margin-top: -14px;
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .why {
    width: min(93%, 620px);
    padding: 72px 0 64px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .why-statement h2 {
    font-size: clamp(3.4rem, 16vw, 5.8rem);
  }

  .why-copy > p {
    font-size: 1.09375rem;
    line-height: 1.7;
  }

  .protection-strip {
    margin-top: 4px;
    padding: 22px;
    grid-template-columns: 1fr;
    gap: 22px;
    border-radius: 20px;
  }

  .protection-intro > p:last-child {
    font-size: 1.09375rem;
    line-height: 1.65;
  }

  .protection-pillars {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .protection-pillars li {
    min-height: 58px;
    padding: 13px 15px;
    font-size: 1rem;
  }

  .protection-pillars span {
    font-size: 0.95rem;
  }

  .uk-origin {
    margin-top: 27px;
    padding-top: 22px;
  }

  .uk-mark {
    font-size: 0.8rem;
  }

  .uk-origin strong {
    font-size: 1rem;
  }

  .uk-origin small {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .momentum {
    width: min(93%, 620px);
    margin: 8px auto 64px;
    padding: 31px 24px;
    border-radius: 25px;
  }

  .momentum-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
  }

  .momentum-header h2 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .momentum-rate {
    align-items: flex-start;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .momentum-rate span {
    margin-top: 5px;
  }

  .momentum-grid {
    margin-top: 31px;
    grid-template-columns: 1fr;
  }

  .momentum-grid article {
    padding: 27px 0;
  }

  .momentum-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stat-number {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .momentum-grid p {
    font-size: 1rem;
  }

  .promo,
  .faq {
    width: min(93%, 620px);
    padding: 72px 0 64px;
  }

  .section-heading > p:last-child {
    font-size: 1.09375rem;
  }

  .video-shell {
    margin-top: 34px;
    border-radius: 22px;
  }

  .video-play {
    min-height: 62px;
    padding-right: 21px;
  }

  .video-play > span {
    width: 46px;
    height: 46px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-list summary {
    min-height: 86px;
    font-size: 1.15rem;
    line-height: 1.4;
  }

  .faq-list details p {
    margin-right: 34px;
    font-size: 1.02rem;
    line-height: 1.72;
  }

  .contact {
    width: min(93%, 620px);
    padding: 72px 0 64px;
    gap: 30px;
  }

  .contact-heading h2 {
    font-size: clamp(2.5rem, 10.8vw, 3.85rem);
    line-height: 1;
  }

  .contact-heading > p:not(.eyebrow):not(.contact-direct) {
    margin-top: 21px;
    font-size: 1.09375rem;
  }

  .contact-direct {
    font-size: 1rem;
  }

  .contact-form {
    padding: 24px;
    border-radius: 23px;
  }

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

  .contact-field > span {
    font-size: 0.95rem;
  }

  .contact-privacy,
  .contact-status {
    font-size: 0.9rem;
  }

  .promise-heading {
    margin-bottom: 34px;
  }

  .promise h2 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

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

  .promise-grid article {
    min-height: 180px;
    padding: 24px;
  }

  .feature-number {
    margin-bottom: 0;
    font-size: 1.05rem;
  }

  .promise-grid h3 {
    margin: 0;
  }

  .final-cta {
    width: min(93%, 620px);
    min-height: 0;
    margin: 8px auto 58px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "copy";
    align-items: stretch;
    justify-content: stretch;
    border-radius: 26px;
  }

  .final-cta::before,
  .final-cta::after {
    display: none;
  }

  .final-cta-copy {
    grid-area: copy;
    width: 100%;
    padding: 32px 26px 38px;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background:
      radial-gradient(circle at 100% 0, rgba(110, 66, 239, 0.22), transparent 42%),
      linear-gradient(145deg, rgba(12, 20, 25, 0.99), rgba(7, 12, 15, 0.99));
  }

  .final-cta > .final-cta-image {
    grid-area: image;
    width: 100%;
    height: clamp(370px, 106vw, 560px);
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
    z-index: 1;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 36%, rgba(50, 155, 255, 0.25), transparent 38%),
      radial-gradient(circle at 72% 88%, rgba(139, 67, 234, 0.3), transparent 45%),
      #090f13;
  }

  .final-cta-image img {
    object-position: center bottom;
    filter: saturate(1) contrast(1.06) brightness(1.08);
  }

  .final-cta h2 {
    font-size: clamp(2.5rem, 10.5vw, 4rem);
  }

  .registration-dialog {
    width: 100%;
    max-width: none;
    max-height: 92vh;
    margin: auto 0 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 25px 25px 0 0;
  }

  .fundraising-dialog {
    width: calc(100% - 28px);
    max-width: 430px;
    max-height: calc(100vh - 36px);
    max-height: calc(100dvh - 36px);
    margin: auto;
    border: 1px solid rgba(133, 176, 255, 0.25);
    border-radius: 24px;
  }

  .fundraising-card {
    padding: 24px 20px 20px;
  }

  .fundraising-brandline {
    min-height: 30px;
    margin: 0 44px 18px 0;
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  .fundraising-brandline img {
    width: 88px;
  }

  .fundraising-brandline span {
    padding: 6px 7px 6px 12px;
    font-size: 0.72rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .fundraising-dialog .dialog-close {
    width: 38px;
    height: 38px;
    top: 23px;
    right: 18px;
    font-size: 1.4rem;
  }

  .fundraising-eyebrow {
    margin-bottom: 8px;
    font-size: 0.75rem;
  }

  .fundraising-card h2 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
    line-height: 0.98;
  }

  .fundraising-description {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .fundraising-proof {
    margin-top: 16px;
    padding: 8px 11px 8px 8px;
    gap: 9px;
  }

  .fundraising-proof-icon {
    width: 28px;
    height: 28px;
    border-radius: 9px;
  }

  .fundraising-proof strong {
    font-size: 0.86rem;
  }

  .fundraising-proof small {
    font-size: 0.75rem;
  }

  .fundraising-actions {
    margin-top: 18px;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .fundraising-primary,
  .fundraising-secondary {
    width: 100%;
    min-height: 48px;
    font-size: 0.92rem;
  }

  .fundraising-note {
    margin-top: 14px;
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .fundraising-snooze {
    width: 100%;
    min-height: 42px;
    margin: 6px 0 -4px;
    font-size: 0.75rem;
    text-align: center;
  }

  .policy-dialog {
    width: 100%;
    max-width: none;
    max-height: 92vh;
    margin: auto 0 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 25px 25px 0 0;
  }

  .policy-card {
    padding: 36px 24px 32px;
  }

  .dialog-card {
    padding: 33px 20px 28px;
  }

  .policy-updated {
    font-size: 0.92rem;
  }

  .cookie-option small {
    font-size: 0.92rem;
  }

  .cookie-banner p,
  .cookie-actions button {
    font-size: 0.95rem;
  }

  .dialog-eyebrow {
    font-size: 0.82rem;
  }

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

  .hub-summary-name span,
  .hub-summary-label,
  .email-label {
    font-size: 0.88rem;
  }

  .hub-summary > small {
    font-size: 0.88rem;
  }

  .safety-result strong {
    font-size: 0.9rem;
  }

  .safety-result small {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .privacy-note {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .organisation-email-note {
    font-size: 0.875rem;
  }

  .policy-consent {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .registration-status {
    font-size: 0.88rem;
  }

  .cta-button {
    font-size: 1rem;
  }

  footer {
    width: min(93%, 620px);
    gap: 20px;
  }

  footer p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .footer-meta {
    align-items: flex-end;
    flex-direction: column;
    gap: 9px;
  }

  .footer-meta button,
  .footer-meta a {
    min-height: 44px;
    font-size: 0.9rem;
  }

  .cookie-banner {
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-primary {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .momentum-header h2,
  .promise h2,
  .section-heading h2,
  .sectors-heading h2,
  .final-cta h2 {
    font-size: clamp(2.5rem, 10.8vw, 3.85rem);
    line-height: 1;
  }

  .why-statement h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
    line-height: 0.94;
  }
}

@media (max-width: 480px) {
  #secure-your-hub {
    scroll-margin-top: 7rem;
  }

  .brand-logo {
    width: 132px;
  }

  .brand-bar.is-scrolled .brand-logo {
    width: 120px;
  }

  .beta-pill {
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .product-stage {
    min-height: 420px;
  }

  footer {
    width: calc(100% - 32px);
    margin-right: 16px;
    margin-left: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  footer img {
    display: block;
    margin: 0;
  }

  footer p {
    max-width: none;
    text-align: left;
  }

  .footer-meta {
    width: 100%;
    align-items: flex-start;
  }

  .footer-meta nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 16px;
    row-gap: 0;
  }

  .footer-meta button {
    min-height: 44px;
  }

  .video-play {
    min-height: 50px;
    padding: 7px;
  }

  .video-play > span {
    width: 38px;
    height: 38px;
    font-size: 0.86rem;
  }

  .video-play strong {
    display: none;
  }

  .cookie-banner {
    bottom: max(10px, env(safe-area-inset-bottom));
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .cookie-primary {
    grid-column: auto;
    grid-row: auto;
    order: -1;
  }

  .cookie-actions button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .fundraising-brandline {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .fundraising-brandline img {
    width: 82px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
