:root {
  --ink: #0b1526;
  --ink-soft: #516077;
  --navy: #081426;
  --blue: #075fc7;
  --blue-bright: #0b79ea;
  --red: #e31b33;
  --line: #dce5f0;
  --canvas: #f5f8fc;
  --success: #14733b;
  --shadow: 0 24px 70px rgba(5, 20, 41, 0.14);
}

* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); }
a:hover { color: #034b9e; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.15s ease;
}

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(11, 21, 38, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px rgba(5, 20, 41, 0.04);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-lockup { flex: 0 0 auto; display: block; color: inherit; }

.wordmark-frame {
  position: relative;
  display: block;
  width: 228px;
  height: 54px;
  overflow: hidden;
}

.wordmark-frame img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.site-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar { display: none; }

.site-nav > a,
.nav-button {
  flex: 0 0 auto;
  padding: 9px 11px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #34445b;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-button:hover { background: #edf4fb; color: var(--blue); }

.site-nav .nav-sign-in {
  margin-left: 8px;
  padding-inline: 18px;
  background: var(--navy);
  color: #fff;
}

.site-nav .nav-sign-in:hover,
.site-nav .nav-sign-in[aria-current="page"] { background: var(--blue); color: #fff; }
.nav-logout { flex: 0 0 auto; margin: 0 0 0 4px; }
.nav-button { background: #eef2f7; }
.nav-button span { max-width: 110px; overflow: hidden; text-overflow: ellipsis; vertical-align: bottom; display: inline-block; }

.site-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 52px;
  flex: 1 0 auto;
}

.site-main.public-main { width: 100%; max-width: none; padding: 0; }

.flash-stack {
  position: relative;
  z-index: 10;
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
}

.site-main:not(.public-main) > .flash-stack { width: 100%; margin-top: 0; margin-bottom: 18px; }

.flash {
  margin-bottom: 10px;
  padding: 12px 15px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.94rem;
  font-weight: 600;
}

.flash.success { border-color: #a8dfbd; background: #e6f8ec; color: #136334; }
.flash.danger { border-color: #f2b8bd; background: #fff0f1; color: #9f1725; }
.flash.warning { border-color: #f2d18b; background: #fff8e5; color: #7d5310; }
.flash.info { border-color: #b8d6f6; background: #edf6ff; color: #15518d; }

.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(17, 112, 222, 0.24), transparent 27%),
    radial-gradient(circle at 74% 44%, rgba(227, 27, 51, 0.14), transparent 24%),
    linear-gradient(132deg, #07111f 0%, #0b1b31 58%, #102b4d 100%);
  color: #fff;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  min-height: 640px;
  margin: 0 auto;
  padding: 76px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #91c8ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red), var(--blue-bright));
}

.eyebrow-dark { color: #436587; }

.hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(3.15rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero-copy h1 span { display: block; color: #80bcff; }

.hero-lede {
  max-width: 550px;
  margin: 26px 0 0;
  color: #c6d5e8;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.benefit-list {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 18px;
  color: #dce9f8;
  font-size: 0.88rem;
  list-style: none;
}

.benefit-list li { display: flex; align-items: center; gap: 7px; }
.benefit-list li span { color: #62aefd; font-weight: 900; }
.hero-action { position: relative; padding-top: 124px; }

.icon-stage {
  position: absolute;
  top: -118px;
  right: -18px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 122, 229, 0.22), rgba(7, 20, 38, 0) 67%);
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.25));
}

.brand-icon-frame { position: relative; width: 78px; aspect-ratio: 1; overflow: hidden; }
.brand-icon-frame-large { width: 100%; }

.brand-icon-frame img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 136%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.shortener-card {
  position: relative;
  z-index: 2;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 32px 90px rgba(1, 10, 24, 0.36);
  color: var(--ink);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #53647a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(20, 115, 59, 0.1); }

.shortener-card h2 {
  margin: 17px 0 7px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.shortener-card > p { margin: 0; color: var(--ink-soft); }
.shorten-form { margin-top: 24px; }

label { display: block; margin: 0 0 7px; color: #26374c; font-size: 0.86rem; font-weight: 750; }

input,
select,
textarea {
  width: 100%;
  margin: 0 0 14px;
  padding: 11px 13px;
  border: 1px solid #bdcada;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus { outline: none; border-color: var(--blue-bright); box-shadow: 0 0 0 4px rgba(11, 121, 234, 0.13); }
input::placeholder { color: #8795a8; }
input[type="checkbox"] { width: auto; margin: 0 7px 0 0; padding: 0; }

.shorten-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.shorten-row input { min-width: 0; min-height: 52px; margin: 0; padding: 13px 14px; background: #f8fafc; }

button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 10px 15px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, #0968d5, #0755b5);
  box-shadow: 0 8px 22px rgba(7, 95, 199, 0.18);
  color: #fff;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

button:hover,
.btn:hover { transform: translateY(-1px); background: linear-gradient(135deg, #075fc7, #04458f); box-shadow: 0 10px 26px rgba(7, 95, 199, 0.25); color: #fff; }

button:focus-visible,
.btn:focus-visible,
a:focus-visible { outline: 3px solid rgba(11, 121, 234, 0.42); outline-offset: 3px; }

.shorten-row button { min-height: 52px; padding-inline: 18px; }
.field-help { display: block; margin-top: 9px; color: #6b7789; font-size: 0.78rem; }

.result-card {
  margin-top: 20px;
  padding: 14px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #b8ddc6;
  border-radius: 12px;
  background: #effaf3;
}

.result-label { display: block; color: #356149; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.result-link { display: block; margin-top: 3px; overflow-wrap: anywhere; color: #075e2f; font-weight: 800; }
.result-open { flex: 0 0 auto; font-size: 0.86rem; font-weight: 800; text-decoration: none; }

.service-strip { border-bottom: 1px solid var(--line); background: #fff; }

.service-strip-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-strip-inner > div { position: relative; min-height: 156px; padding: 34px 34px 30px 64px; border-right: 1px solid var(--line); }
.service-strip-inner > div:first-child { border-left: 1px solid var(--line); }
.service-strip-inner span { position: absolute; top: 37px; left: 24px; color: #7e91a9; font-size: 0.72rem; font-weight: 800; }
.service-strip-inner strong { display: block; color: #17263b; font-size: 1rem; }
.service-strip-inner p { margin: 5px 0 0; color: #6b7789; font-size: 0.9rem; }

.card { margin-bottom: 18px; padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 8px 28px rgba(7, 25, 50, 0.05); }
.card h2, .card h3 { margin-top: 0; }
.muted { color: #65758a; font-size: 0.9rem; }
.row { display: flex; gap: 16px; }
.row > div { flex: 1; }
.btn.secondary { background: #34465e; box-shadow: none; }
.btn.danger, button.danger { background: #b82132; box-shadow: none; }

table { width: 100%; display: block; overflow-x: auto; border-collapse: collapse; white-space: nowrap; }
thead, tbody { width: 100%; }
th, td { padding: 11px 10px; border-bottom: 1px solid #e6ecf3; text-align: left; vertical-align: top; }
th { color: #526279; font-size: 0.76rem; letter-spacing: 0.04em; text-transform: uppercase; }

.auth-page,
.error-page { background: linear-gradient(145deg, #eef4fa 0%, #f8fafc 54%, #eef3f8 100%); }

.auth-main,
.status-main {
  width: min(100%, 760px);
  padding: 64px 20px 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-main > .flash-stack,
.status-main > .flash-stack { width: min(100%, 480px); }

.auth-card {
  position: relative;
  width: min(100%, 440px);
  margin: 0 auto;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(189, 202, 218, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.auth-card-wide { width: min(100%, 500px); }
.auth-brand-mark { position: absolute; top: -14px; right: -12px; opacity: 0.18; transform: rotate(6deg); }
.auth-brand-mark .brand-icon-frame { width: 148px; }
.auth-card h1 { margin: 0; font-size: 2rem; letter-spacing: -0.035em; }
.auth-intro { margin: 8px 0 26px; color: #65758a; }
.button-full { width: 100%; min-height: 48px; margin-top: 4px; }
.otp-input { padding-block: 14px; text-align: center; font-size: 1.45rem; font-weight: 800; letter-spacing: 0.4em; }

.auth-home-link { display: inline-block; margin-top: 22px; color: #617188; font-size: 0.86rem; font-weight: 650; text-decoration: none; }
.auth-home-link:hover { color: var(--blue); }

.status-card { width: min(100%, 620px); margin: 0 auto; padding: 46px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); text-align: center; }
.status-code { color: var(--blue); font-size: 0.82rem; font-weight: 850; letter-spacing: 0.15em; }
.status-card h1 { margin: 10px 0 12px; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.05; letter-spacing: -0.05em; }
.status-card p { max-width: 480px; margin: 0 auto; color: #617188; }
.status-actions { margin-top: 28px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

.contact-content { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.contact-hero { background: #fff; }

.contact-hero-inner { padding: 86px 0 78px; }

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #42698e;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red), var(--blue-bright));
}

.contact-hero h1 {
  max-width: 950px;
  margin: 22px 0 24px;
  font-size: clamp(3.3rem, 7vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
}

.contact-hero p {
  max-width: 760px;
  margin: 0;
  color: #5d6f83;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.7;
}

.contact-section {
  padding: 30px 0 84px;
  background: linear-gradient(180deg, #fff 0%, #eef7ff 48%, #f8fbfe 100%);
}

.contact-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  padding: 44px;
  border: 1px solid #d9e7f3;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(11, 121, 234, 0.12), transparent 34%),
    linear-gradient(135deg, #eff8ff 0%, #f9fcff 54%, #eef5fb 100%);
  box-shadow: 0 28px 75px rgba(15, 49, 84, 0.11);
}

.contact-intro { align-self: start; position: sticky; top: 32px; padding: 10px 0; }

.contact-intro h2,
.paths-heading h2,
.contact-cta h2 {
  margin: 18px 0 20px;
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.contact-intro > p { margin: 0; color: #576b81; font-size: 1rem; line-height: 1.72; }

.contact-direct {
  margin-top: 30px;
  padding-top: 23px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid #cbdbe9;
}

.contact-direct span { margin-bottom: 4px; color: #6b7f94; font-size: 0.79rem; font-weight: 750; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-direct a { width: fit-content; color: #113c66; font-weight: 780; text-decoration: none; }
.contact-direct a:hover { color: var(--blue); }

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(189, 207, 224, 0.7);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 47, 79, 0.1);
}

.contact-field { min-width: 0; }
.contact-field-wide { grid-column: 1 / -1; }
.contact-field label { margin-bottom: 8px; color: #20364d; font-size: 0.87rem; }
.contact-field label > span:not(.optional) { color: var(--red); }
.contact-field .optional { margin-left: 5px; color: #8391a1; font-size: 0.72rem; font-weight: 650; }

.contact-field input,
.contact-field textarea {
  margin: 0;
  padding: 13px 14px;
  border: 2px solid #c9d6e3;
  border-radius: 11px;
  background: #fff;
}

.contact-field input { min-height: 52px; }
.contact-field textarea { min-height: 170px; resize: vertical; }
.contact-field textarea::placeholder { color: #8795a8; }

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

.contact-submit { display: flex; align-items: flex-start; gap: 22px; }
.contact-submit button { flex: 0 0 auto; min-height: 58px; padding-inline: 24px; border-radius: 13px; }
.contact-submit p { margin: 3px 0 0; color: #6c7c8e; font-size: 0.75rem; line-height: 1.55; }

.contact-paths { padding: 94px 0 104px; background: #f4f9fd; }
.paths-heading { max-width: 820px; margin-bottom: 42px; }
.paths-heading h2 { margin-bottom: 0; }

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

.company-card {
  min-width: 0;
  padding: 38px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e9f1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 50, 84, 0.07);
  color: inherit;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.company-card:hover { transform: translateY(-3px); border-color: #b9d3eb; box-shadow: 0 22px 54px rgba(17, 50, 84, 0.12); color: inherit; }

.company-logo { height: 92px; display: flex; align-items: center; }
.company-logo img { width: auto; max-width: 100%; max-height: 74px; }
.company-logo-it img { max-height: 84px; }
.company-logo-disc img { max-height: 65px; }
.company-logo-702it img { max-height: 96px; }
.company-logo-rebel img { max-height: 64px; }
.company-logo-bluebridge img { max-height: 68px; }

.company-card-featured {
  grid-column: 1 / -1;
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 54px;
}

.company-card-featured .company-logo {
  height: 150px;
  justify-content: center;
  padding: 22px 28px;
  border-radius: 18px;
  background: #f6f9fc;
}

.company-card-featured .company-logo img { max-width: min(100%, 430px); }
.company-card-featured .company-card-copy { min-height: 0; padding-top: 0; }
.company-card-featured .company-link { margin-top: 24px; padding-top: 0; }

.company-card-copy { min-height: 205px; padding-top: 26px; display: flex; flex-direction: column; color: #617287; line-height: 1.65; }
.company-card-copy strong { margin-bottom: 9px; color: #152b42; font-size: 1.28rem; line-height: 1.3; }
.company-link { margin-top: auto; padding-top: 26px; color: var(--blue); font-weight: 800; }

.contact-cta { padding: 90px 0; background: #fff; }

.contact-cta-inner {
  padding: 70px 34px;
  border: 1px solid #e4e8ee;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 60%, rgba(236, 54, 61, 0.17), transparent 32%),
    radial-gradient(circle at 38% 10%, rgba(250, 174, 31, 0.17), transparent 32%),
    radial-gradient(circle at 66% 90%, rgba(32, 173, 108, 0.15), transparent 32%),
    radial-gradient(circle at 94% 36%, rgba(33, 120, 224, 0.18), transparent 34%),
    #fbfdff;
  text-align: center;
}

.contact-cta h2 { margin-bottom: 12px; }
.contact-cta p { max-width: 720px; margin: 0 auto 30px; color: #5f7185; font-size: 1.05rem; }
.contact-cta .btn { min-height: 54px; padding-inline: 22px; border-radius: 12px; }

.site-footer { flex: 0 0 auto; padding: 70px 0 32px; background: #0d1e31; color: #b9c9d9; }
.footer-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.footer-grid {
  display: grid;
  min-height: 230px;
  grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
  gap: 50px;
  align-items: start;
}

.footer-identity p { max-width: 285px; margin: 20px 0 0; color: #9db0c2; font-size: 0.9rem; line-height: 1.65; }

.footer-brand-tile {
  width: 255px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  text-decoration: none;
}

.footer-brand-tile:hover { color: inherit; }

.footer-wordmark-frame { position: relative; display: block; width: 235px; height: 58px; overflow: hidden; }

.footer-wordmark-frame img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.footer-company-mark {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7790a8;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-company-mark > span { width: 8px; height: 8px; border-radius: 50%; background: #39b878; box-shadow: 0 0 0 4px rgba(57, 184, 120, 0.1); }

.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-nav strong { margin-bottom: 8px; color: #fff; font-size: 0.74rem; font-weight: 850; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-nav a { color: #b9c9d9; font-size: 0.88rem; line-height: 1.45; text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.footer-contact p { max-width: 230px; margin: 8px 0 0; color: #7890a7; font-size: 0.78rem; line-height: 1.6; }

.footer-bottom { margin-top: 55px; padding-top: 24px; border-top: 1px solid #294158; }

.copyright {
  margin: 0;
  color: #8ea3b7;
  font-size: 0.78rem;
}

@media (max-width: 920px) {
  .header-inner { align-items: stretch; flex-direction: column; gap: 0; padding: 8px 0 10px; }
  .brand-lockup { align-self: center; }
  .site-nav { justify-content: flex-start; width: 100%; padding-top: 4px; }
  .site-nav .nav-sign-in { margin-left: auto; }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; gap: 42px; padding: 70px 0 66px; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-lede { margin-left: auto; margin-right: auto; }
  .benefit-list { justify-content: center; }
  .hero-action { width: min(100%, 580px); margin: 0 auto; padding-top: 230px; }
  .icon-stage { top: 0; right: 50%; width: 320px; height: 320px; transform: translateX(50%); }
  .contact-form-shell { grid-template-columns: 1fr; gap: 34px; padding: 34px; }
  .contact-intro { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 54px; }
}

@media (max-width: 680px) {
  .wordmark-frame { width: 208px; height: 49px; }
  .site-nav > a, .nav-button { padding: 8px 9px; font-size: 0.82rem; }
  .nav-button span { display: none; }
  .hero-inner { width: min(100% - 28px, 560px); padding-top: 56px; }
  .hero-copy h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .hero-lede { font-size: 1rem; }
  .benefit-list { display: grid; justify-content: center; text-align: left; }
  .hero-action { padding-top: 180px; }
  .icon-stage { top: 0; width: 260px; height: 260px; }
  .shortener-card { padding: 23px 20px; border-radius: 18px; }
  .shorten-row { grid-template-columns: 1fr; }
  .shorten-row button { width: 100%; }
  .result-card { align-items: flex-start; flex-direction: column; }
  .service-strip-inner { width: 100%; grid-template-columns: 1fr; }
  .service-strip-inner > div { min-height: 116px; padding-top: 26px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-strip-inner > div:first-child { border-left: 0; }
  .service-strip-inner span { top: 29px; }
  .row { flex-direction: column; gap: 0; }
  .auth-main, .status-main { padding: 42px 14px 58px; }
  .auth-card { padding: 31px 24px; }
  .status-card { padding: 38px 24px; }
  .contact-content, .footer-shell { width: min(100% - 28px, 560px); }
  .contact-hero-inner { padding: 62px 0 58px; }
  .contact-hero h1 { font-size: clamp(2.85rem, 14vw, 4.15rem); }
  .contact-section { padding: 14px 0 62px; }
  .contact-form-shell { gap: 28px; padding: 24px 18px; border-radius: 20px; }
  .contact-form { grid-template-columns: 1fr; gap: 17px; padding: 23px 18px; }
  .contact-field-wide { grid-column: auto; }
  .contact-submit { flex-direction: column; gap: 12px; }
  .contact-submit button { width: 100%; }
  .contact-paths { padding: 70px 0 76px; }
  .company-grid { grid-template-columns: 1fr; }
  .company-card { padding: 28px 24px; }
  .company-card-copy { min-height: 190px; }
  .company-card-featured { grid-column: auto; min-height: 0; display: flex; gap: 0; }
  .company-card-featured .company-logo { width: 100%; height: 132px; }
  .company-card-featured .company-card-copy { min-height: 190px; padding-top: 26px; }
  .contact-cta { padding: 58px 0; }
  .contact-cta-inner { padding: 52px 20px; }
  .site-footer { padding-top: 54px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > :not(:first-child) { padding-top: 26px; border-top: 1px solid #294158; }
  .footer-bottom { margin-top: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
