/* ─── Fonts ────────────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/sora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('/fonts/raleway-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('/fonts/raleway-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Tokens ────────────────────────────────────────────────────────────────── */

:root {
  /* Landing page dark theme */
  --deep:       #0f2027;
  --mid:        #203a43;
  --high:       #2c5364;
  --accent:     #5ba3b8;
  --accent-dim: rgba(91, 163, 184, 0.18);
  --text:       #e8f0f3;
  --text-soft:  rgba(232, 240, 243, 0.55);
  --surface:    rgba(255, 255, 255, 0.055);
  --border:     rgba(255, 255, 255, 0.09);
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;

  /* Legacy tokens (used by sub-pages) */
  --bg-deep: #0f2027;
  --bg-mid: #203a43;
  --bg-high: #2c5364;
  --bg-soft: #f5f5f5;
  --surface-alt: #eef2f3;
  --text-legacy: #0f1720;
  --text-soft-legacy: #38505a;
  --line: #c3c3c3;
  --brand: #2c5364;
  --brand-strong: #1c3b47;
  --success: #1f6e43;
  --warning: #8a4b15;
  --shadow: 0 10px 30px rgba(15, 32, 39, 0.12);
  --radius: 14px;
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #0f2027;
}

/* ─── Base ──────────────────────────────────────────────────────────────────── */

body {
  margin: 0;
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  color: #0f1720;
  line-height: 1.6;
  background: linear-gradient(170deg, var(--bg-soft) 0%, #dfe6e8 100%);
  min-height: 100svh;
}

body.page-home {
  font-family: 'Sora', 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.65;
  background: linear-gradient(160deg, var(--deep) 0%, var(--mid) 55%, var(--high) 100%);
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  min-height: 100svh;
  min-height: 100dvh;
  overflow-x: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

a {
  color: var(--brand-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus-visible {
  color: #12303a;
}

.page-home a {
  color: inherit;
  text-decoration: none;
}

/* ─── Background canvas ─────────────────────────────────────────────────────── */

.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
}

.bg-orb--a {
  width: 70vw;
  height: 70vw;
  top: -20%;
  left: -15%;
  background: radial-gradient(circle, #2c5364 0%, #203a43 55%, transparent 100%);
  animation: drift-a 18s ease-in-out infinite alternate;
}

.bg-orb--b {
  width: 55vw;
  height: 55vw;
  bottom: -15%;
  right: -10%;
  background: radial-gradient(circle, #203a43 0%, #0f2027 60%, transparent 100%);
  animation: drift-b 22s ease-in-out infinite alternate;
}

.bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  mix-blend-mode: overlay;
}

@keyframes drift-a {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(4%, 6%) scale(1.06); }
}

@keyframes drift-b {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-5%, -4%) scale(1.04); }
}

/* ─── Skip link ─────────────────────────────────────────────────────────────── */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--deep);
  color: var(--text);
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
}

/* ─── Header / Nav ──────────────────────────────────────────────────────────── */

.page-home .site-header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: none;
  color: var(--text);
}

.container {
  width: 100%;
  max-width: 1080px;
  padding-inline: clamp(1rem, 2.4vw, 1.5rem);
  margin-inline: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}

.site-wordmark {
  display: inline-flex;
  align-items: center;
  font-family: 'Raleway', 'Sora', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.page-home .site-wordmark {
  color: #fff;
}

body:not(.page-home) .site-wordmark {
  color: #fff;
}

body:not(.page-home) .site-wordmark:hover,
body:not(.page-home) .site-wordmark:focus-visible,
.page-home .site-wordmark:hover,
.page-home .site-wordmark:focus-visible {
  color: var(--accent);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #0f1720;
  text-decoration: none;
}

.brand-lockup img {
  width: 84px;
  height: auto;
  max-height: 84px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-lockup span {
  font-family: 'Raleway', 'Sora', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 18ch;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  color: var(--brand-strong);
}

.page-home .main-nav a {
  color: var(--text-soft);
}

.page-home .main-nav a:hover,
.page-home .main-nav a:focus-visible,
.page-home .main-nav a[aria-current="page"] {
  background: var(--surface);
  color: #fff;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: #e5ecef;
  color: #102d37;
}

body:not(.page-home) .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #d8e0e2;
  background: rgba(245, 245, 245, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body:not(.page-home) {
  font-family: 'Sora', 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: linear-gradient(160deg, var(--deep) 0%, var(--mid) 55%, var(--high) 100%);
  min-height: 100dvh;
}

body:not(.page-home) a {
  color: var(--accent);
}

body:not(.page-home) .site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(15, 32, 39, 0.72);
}

body:not(.page-home) .brand-lockup {
  color: #fff;
}

body:not(.page-home) .brand-lockup span {
  color: var(--text-soft);
}

body:not(.page-home) .main-nav a {
  color: var(--text-soft);
}

body:not(.page-home) .main-nav a:hover,
body:not(.page-home) .main-nav a:focus-visible,
body:not(.page-home) .main-nav a[aria-current="page"] {
  background: var(--surface);
  color: #fff;
}

.nav-inner {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  background: var(--surface);
}

/* ─── Main hero ─────────────────────────────────────────────────────────────── */

.page-home main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-home .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 8vh, 5rem) 1.5rem clamp(2rem, 6vh, 4rem);
  max-width: 640px;
  width: 100%;
}

/* Logo */

.hero-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: clamp(280px, 30vw, 350px);
  height: auto;
  object-fit: contain;
  animation: logo-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  filter: drop-shadow(0 0 40px rgba(91, 163, 184, 0.25));
}

.hero-logo-glow {
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 83, 100, 0.6) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes logo-rise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes glow-pulse {
  from { opacity: 0.7; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1.05); }
}

/* Eyebrow */

.hero-origin {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  animation: fade-up 0.7s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Heading */

.hero-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
  animation: fade-up 0.7s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Sub */

.hero-sub {
  font-size: clamp(0.9375rem, 1.8vw, 1.05rem);
  font-weight: 300;
  color: var(--text-soft);
  max-width: 480px;
  margin-bottom: 2rem;
  animation: fade-up 0.7s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* CTA row */

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fade-up 0.7s 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

main.container {
  padding-block: 1rem 0;
}

main.container .hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.25rem;
  width: 100%;
  max-width: 100%;
  padding: 1.4rem 0 0.6rem;
}

body:not(.page-home) .hero {
  color: var(--text);
}

body:not(.page-home) h1,
body:not(.page-home) h2,
body:not(.page-home) h3,
body:not(.page-home) strong {
  color: #fff;
}

body:not(.page-home) p,
body:not(.page-home) li,
body:not(.page-home) td,
body:not(.page-home) th,
body:not(.page-home) .small {
  color: var(--text-soft);
}

body:not(.page-home) .eyebrow {
  color: var(--accent);
}

body:not(.page-home) .btn-secondary {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--border);
}

body:not(.page-home) .btn-secondary:hover,
body:not(.page-home) .btn-secondary:focus-visible {
  color: #fff;
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.25);
}

body:not(.page-home) .card {
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 1rem 0;
  box-shadow: 0 8px 28px rgba(8, 20, 25, 0.22);
}

body:not(.page-home) .jump-links a {
  background: var(--surface);
  border: 1px solid var(--border);
  color: #fff;
}

body:not(.page-home) table {
  background: rgba(15, 32, 39, 0.42);
  border: 1px solid var(--border);
}

body:not(.page-home) th {
  background: rgba(91, 163, 184, 0.2);
}

body:not(.page-home) th,
body:not(.page-home) td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body:not(.page-home) details {
  border: 1px solid var(--border);
  background: var(--surface);
}

body:not(.page-home) summary {
  color: #fff;
}

body:not(.page-home) .note {
  border-left: 4px solid #c98850;
  background: rgba(138, 75, 21, 0.2);
}

body:not(.page-home) .success {
  border-left: 4px solid #4ea673;
  background: rgba(31, 110, 67, 0.18);
}

body:not(.page-home) .site-footer {
  border-top: 1px solid var(--border);
  background: transparent;
}

body:not(.page-home) .site-footer .small {
  color: var(--text-soft);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--high) 0%, var(--accent) 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(44, 83, 100, 0.5);
}

.cta-primary:hover,
.cta-primary:focus-visible {
  opacity: 0.88;
  transform: translateY(-1px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.cta-secondary:hover,
.cta-secondary:focus-visible {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--surface);
}

/* ─── Cards ─────────────────────────────────────────────────────────────────── */

.cards-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 980px;
  padding-inline: 1rem;
  margin: 0 auto clamp(3rem, 6vh, 5rem);
  border-radius: var(--radius-lg);
  animation: fade-up 0.7s 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cards-section .card {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.2s;
}

.cards-section .card:hover {
  background: rgba(255, 255, 255, 0.09);
}

.card-icon {
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
}

.card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}

.card-link:hover {
  opacity: 0.75;
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */

.page-home .site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  background: none;
  margin-top: 0;
  color: var(--text);
}

.page-home .site-footer a {
  color: var(--text-soft);
}

.footer-text {
  font-size: 0.8rem;
  color: var(--text-soft);
  font-weight: 300;
}

/* ─── Animations ────────────────────────────────────────────────────────────── */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 860px) {
  .cards-section {
    grid-template-columns: 1fr;
    max-width: 620px;
    border-radius: var(--radius-md);
  }
}

@media (max-width: 680px) {
  .page-home .site-header {
    padding: 1rem 0 0.8rem;
  }

  .page-home .nav-wrap {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0.6rem;
    justify-items: start;
  }

  .page-home .main-nav {
    width: 100%;
    justify-content: flex-start;
    margin-left: -0.75rem;
  }
}

@media (max-width: 500px) {
  .site-header {
    padding: 1rem 1.25rem;
  }

  .page-home .hero {
    padding-top: 2rem;
  }

  .cards-section {
    max-width: 100%;
  }

  .cards-section .card:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-strong);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0.68rem 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-strong);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #102d37;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--brand-strong);
  border-color: var(--brand-strong);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(44, 83, 100, 0.08);
}

main section {
  margin-block: 1.15rem;
}

.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.jump-links a {
  display: inline-block;
  background: var(--surface-alt);
  border: 1px solid #d2d9db;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  text-decoration: none;
  font-size: 0.92rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

th,
td {
  text-align: left;
  padding: 0.68rem;
  border-bottom: 1px solid #dde3e5;
  vertical-align: top;
}

th {
  background: #e8eef0;
}

.note {
  border-left: 4px solid var(--warning);
  background: #fff7f0;
  padding: 0.8rem;
  border-radius: 8px;
}

.success {
  border-left: 4px solid var(--success);
  background: #f3fbf6;
  padding: 0.8rem;
  border-radius: 8px;
}

details {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  background: #fff;
}

details + details {
  margin-top: 0.55rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.site-footer {
  background: linear-gradient(130deg, var(--bg-deep), var(--bg-mid));
  color: #fff;
  padding: 1.6rem 0;
  margin-top: 2rem;
}

.site-footer a {
  color: #fff;
}

.small {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact-section {
  max-width: 760px;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(15, 32, 39, 0.45);
  color: #fff;
  padding: 0.65rem 0.7rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(91, 163, 184, 0.45);
  outline-offset: 1px;
  border-color: var(--accent);
}

.contact-form button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

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

.contact-note {
  margin-top: 0.6rem;
}

.site-footer .small {
  color: #d2dee3;
}

@media (max-width: 700px) {
  .site-header {
    position: static;
  }

  .site-wordmark {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
  }

  .brand-lockup img {
    width: 66px;
    max-height: 66px;
  }

  .brand-lockup span {
    font-size: 0.84rem;
    max-width: none;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }

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

  th,
  td {
    padding: 0.54rem;
    font-size: 0.94rem;
  }
}
