:root {
  --navy: #0a1020;
  --navy-soft: #121a2e;
  --blue: #4f7cff;
  --blue-bright: #7d9dff;
  --ice: #f4f7fb;
  --white: #ffffff;
  --ink: #12192a;
  --muted: #5f6878;
  --line: #dfe4ec;
  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(10, 16, 32, 0.12);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
  border-radius: 6px;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  border-color: rgba(18, 25, 42, 0.08);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px rgba(10, 16, 32, 0.06);
  backdrop-filter: blur(16px) saturate(140%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 730;
  letter-spacing: -0.02em;
}

.brand-logo {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.brand-logo img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.scrolled .brand-logo,
.site-footer .brand-logo {
  border-color: var(--line);
  box-shadow: 0 5px 18px rgba(10, 16, 32, 0.08);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.9rem;
  font-weight: 560;
}

.main-nav a {
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.main-nav a:hover {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.scrolled .header-cta {
  border-color: var(--line);
}

.scrolled .header-cta:hover {
  border-color: var(--navy);
  background: var(--ice);
}

.header-cta svg,
.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.header-cta:hover svg,
.button:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 158px 0 92px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    var(--navy);
  background-size: 72px 72px;
}

.hero::after {
  position: absolute;
  bottom: -180px;
  left: 50%;
  width: 880px;
  height: 380px;
  border: 1px solid rgba(125, 157, 255, 0.18);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.hero-glow {
  position: absolute;
  top: -180px;
  right: -80px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.2), rgba(79, 124, 255, 0) 67%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
  gap: clamp(58px, 8vw, 104px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 25px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--blue);
}

.eyebrow-light {
  color: #b8c8ff;
}

.hero h1 {
  max-width: 770px;
  margin: 24px 0 0;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 690;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--blue-bright);
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #b8c0cf;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 670;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(79, 124, 255, 0.25);
}

.button-primary:hover {
  background: #628bff;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 62px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
  color: #bec5d2;
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-facts li {
  display: flex;
  gap: 8px;
}

.hero-facts span {
  color: var(--blue-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.73rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.hero-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 3px;
  background: var(--blue);
  content: "";
}

.panel-topline,
.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9ca6b7;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.availability {
  display: flex;
  align-items: center;
  gap: 7px;
}

.availability i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #66d19e;
  box-shadow: 0 0 0 4px rgba(102, 209, 158, 0.1);
}

.panel-statement {
  min-height: 192px;
  padding: 48px 0 38px;
}

.panel-index {
  color: var(--blue-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
}

.panel-statement p {
  max-width: 330px;
  margin: 16px 0 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 610;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.capability-list {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.capability-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.capability-row > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.capability-number {
  color: var(--blue-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
}

.capability-row strong {
  font-size: 0.95rem;
  font-weight: 620;
}

.capability-row p {
  margin: 0;
  color: #9fa8b8;
  font-size: 0.78rem;
}

.panel-footer {
  gap: 12px;
  padding-top: 22px;
  font-size: 0.62rem;
}

.section {
  padding: 122px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.approach h2,
.contact h2 {
  margin: 18px 0 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 680;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.section-heading p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

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

.service-card-featured {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.service-card-featured:hover {
  border-color: var(--blue);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-id {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.service-card-featured .service-id {
  color: var(--blue-bright);
}

.service-icon {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.service-card h3 {
  margin: 72px 0 0;
  font-size: 1.65rem;
  font-weight: 670;
  letter-spacing: -0.035em;
}

.service-card p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card-featured p {
  color: #afb7c7;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: #465064;
  font-size: 0.86rem;
}

.service-card-featured ul {
  border-color: rgba(255, 255, 255, 0.12);
  color: #c5cbd6;
}

.service-card li::before {
  margin-right: 9px;
  color: var(--blue);
  content: "—";
}

.approach {
  color: var(--white);
  background: var(--navy);
}

.approach-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 11vw, 150px);
}

.approach-intro {
  align-self: start;
}

.approach-intro p {
  max-width: 440px;
  margin: 26px 0 0;
  color: #aeb6c6;
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 31px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.94rem;
  font-weight: 640;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list > li > span {
  padding-top: 6px;
  color: var(--blue-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
}

.process-list h3 {
  margin: 0;
  font-size: 1.38rem;
  font-weight: 640;
  letter-spacing: -0.025em;
}

.process-list p {
  margin: 8px 0 0;
  color: #aeb6c6;
  font-size: 0.95rem;
}

.contact {
  padding: 30px 0;
  background: var(--ice);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: 80px;
  align-items: end;
  padding: clamp(48px, 7vw, 82px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--blue);
}

.contact h2 {
  max-width: 720px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.contact-action p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
}

.button-light {
  width: 100%;
  color: var(--navy);
  background: var(--white);
}

.button-light:hover {
  background: var(--ice);
}

.site-footer {
  padding: 88px 0 28px;
  background: var(--ice);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 1fr 0.7fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand p {
  max-width: 360px;
  margin: 22px 0 0;
  color: var(--muted);
}

.footer-column h2 {
  margin: 0 0 16px;
  color: #8992a2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: #3e485a;
  font-size: 0.92rem;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #818a9a;
  font-size: 0.78rem;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

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

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

  .section-heading,
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .approach-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-shell {
    min-height: 70px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    padding-inline: 13px;
    font-size: 0.8rem;
  }

  .header-cta svg {
    display: none;
  }

  .hero {
    padding: 128px 0 72px;
    background-size: 52px 52px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .panel-statement {
    min-height: auto;
  }

  .panel-footer {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .section {
    padding: 86px 0;
  }

  .service-card {
    min-height: 420px;
    padding: 25px;
  }

  .service-card h3 {
    margin-top: 56px;
  }

  .contact-shell {
    width: calc(100% - 20px);
    padding: 42px 24px;
    border-radius: 22px;
  }

  .button-light {
    justify-content: space-between;
    font-size: 0.84rem;
  }

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

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

@media (max-width: 430px) {
  .brand > span:last-child {
    max-width: 92px;
    line-height: 1.1;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .capability-row p {
    padding-left: 34px;
  }
}

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

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

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

/* Legal pages */
.legal-hero {
  padding: 168px 0 86px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    var(--navy);
  background-size: 72px 72px;
}

.legal-hero-inner {
  max-width: 800px;
}

.legal-hero h1 {
  margin: 22px 0 0;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 690;
  letter-spacing: -0.058em;
  line-height: 1;
}

.legal-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #b8c0cf;
  font-size: 1.08rem;
}

.legal-content-section {
  padding: 88px 0 118px;
  background: var(--ice);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 780px);
  gap: clamp(46px, 8vw, 104px);
  align-items: start;
  justify-content: center;
}

.legal-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.legal-sidebar-label {
  margin-bottom: 15px;
  color: #8b94a4;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-sidebar a {
  padding: 9px 0;
  color: #657084;
  font-size: 0.9rem;
  font-weight: 550;
}

.legal-sidebar a:hover,
.legal-sidebar a.active {
  color: var(--blue);
}

.legal-document {
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(10, 16, 32, 0.07);
}

.legal-document section + section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.legal-section-number {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.08em;
}

.legal-document h2 {
  margin: 0 0 20px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.legal-document h3 {
  margin: 30px 0 8px;
  color: #344055;
  font-size: 1.02rem;
  font-weight: 680;
}

.legal-document h4 {
  margin: 24px 0 7px;
  color: #344055;
  font-size: 0.95rem;
  font-weight: 680;
}

.legal-document p,
.legal-document address,
.legal-document li {
  color: #535e70;
  font-size: 1rem;
  line-height: 1.76;
}

.legal-document p,
.legal-document address {
  margin: 0 0 16px;
}

.legal-document address {
  font-style: normal;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 20px;
  padding-left: 22px;
}

.legal-document a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(79, 124, 255, 0.35);
  text-underline-offset: 3px;
}

.legal-document a:hover {
  text-decoration-color: var(--blue);
}

.legal-document strong {
  color: var(--ink);
}

.legal-document .uppercase-notice {
  padding: 20px;
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  background: var(--ice);
  color: #364156;
  font-size: 0.9rem;
  font-weight: 650;
}

.legal-footer {
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
    grid-template-columns: repeat(3, auto);
    gap: 16px;
    overflow-x: auto;
  }

  .legal-sidebar-label {
    display: none;
  }
}

@media (max-width: 560px) {
  .legal-hero {
    padding: 132px 0 64px;
    background-size: 52px 52px;
  }

  .legal-content-section {
    padding: 46px 0 78px;
  }

  .legal-sidebar {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .legal-document section + section {
    margin-top: 38px;
    padding-top: 38px;
  }
}

/* Informational cookie notice */
.cookie-notice {
  position: fixed;
  z-index: 500;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(560px, calc(100% - 44px));
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: var(--white);
  background: rgba(10, 16, 32, 0.96);
  box-shadow: 0 24px 70px rgba(4, 8, 18, 0.32);
  opacity: 0;
  transform: translateY(18px);
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-notice.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-notice-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(125, 157, 255, 0.45);
  border-radius: 10px;
  color: var(--blue-bright);
  background: rgba(79, 124, 255, 0.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9rem;
  font-weight: 700;
}

.cookie-notice-copy strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.94rem;
}

.cookie-notice-copy p {
  margin: 0;
  color: #b8c0cf;
  font-size: 0.82rem;
  line-height: 1.55;
}

.cookie-notice-copy a {
  display: inline-block;
  margin-top: 7px;
  color: var(--blue-bright);
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-notice-button {
  min-height: 38px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
}

.cookie-notice-button:hover {
  background: #eaf0ff;
}

.cookie-notice-button:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
}

@media (max-width: 620px) {
  .cookie-notice {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: auto 1fr;
    padding: 17px;
  }

  .cookie-notice-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}
