:root {
  --navy-950: #021225;
  --navy-900: #031a33;
  --navy-800: #062a55;
  --navy-700: #0a3e74;
  --blue-400: #2e91e8;
  --gold-500: #f1b900;
  --gold-400: #ffd34f;
  --green-500: #25d366;
  --white: #ffffff;
  --text: #f4f7fb;
  --muted: #b9c6d6;
  --line: rgba(255, 255, 255, 0.14);
  --surface: rgba(7, 35, 67, 0.78);
  --surface-strong: rgba(8, 42, 81, 0.94);
  --shadow: 0 22px 60px rgba(0, 7, 18, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 15% 4%, rgba(23, 108, 188, 0.24), transparent 31rem),
    radial-gradient(circle at 92% 30%, rgba(241, 185, 0, 0.12), transparent 24rem),
    var(--navy-950);
  color: var(--text);
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background: linear-gradient(180deg, rgba(1, 15, 31, 0.25), rgba(1, 15, 31, 0.97) 53%);
  pointer-events: none;
}

body::after {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: -3;
  height: 42rem;
  content: "";
  background: url("assets/tech-hero-impact.jpg") center top / cover no-repeat;
  opacity: 0.19;
  filter: saturate(0.9);
  pointer-events: none;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  border-radius: 0.55rem;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.page-shell {
  width: min(100% - 2rem, 760px);
  margin: 0 auto;
  padding: 2.15rem 0 2rem;
}

.profile {
  text-align: center;
}

.brand {
  display: inline-flex;
  width: 9.5rem;
  height: 6.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 70px rgba(0, 7, 18, 0.45);
}

.brand img {
  width: 8rem;
  height: auto;
}

.eyebrow {
  margin: 1.45rem 0 0.55rem;
  color: var(--gold-400);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 730px;
  margin-right: auto;
  margin-bottom: 1rem;
  margin-left: auto;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.intro {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.98rem, 2.6vw, 1.08rem);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 1.65rem 0 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.05rem;
  background: rgba(3, 26, 51, 0.7);
  backdrop-filter: blur(12px);
}

.trust-strip div {
  min-width: 0;
  padding: 0.9rem 0.45rem;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--white);
  font-size: 0.95rem;
}

.trust-strip span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.65rem;
}

.primary-actions {
  display: grid;
  gap: 0.8rem;
}

.action-card {
  display: grid;
  grid-template-columns: 2.85rem 1fr auto;
  gap: 0.9rem;
  min-height: 5.5rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface-strong);
  box-shadow: 0 12px 35px rgba(0, 8, 20, 0.2);
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.action-card:hover,
.action-card:focus-visible {
  border-color: rgba(255, 211, 79, 0.75);
  background: #0a3768;
  transform: translateY(-2px);
}

.action-card--primary {
  border-color: rgba(37, 211, 102, 0.5);
  background: linear-gradient(115deg, rgba(22, 135, 69, 0.98), rgba(11, 103, 55, 0.98));
}

.action-card--primary:hover,
.action-card--primary:focus-visible {
  border-color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(115deg, #1a9954, #0b7840);
}

.action-icon {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.78rem;
  background: rgba(255, 255, 255, 0.1);
}

.action-icon svg {
  width: 1.25rem;
  fill: currentColor;
}

.action-copy strong,
.action-copy small {
  display: block;
}

.action-copy strong {
  font-size: 0.98rem;
}

.action-copy small {
  margin-top: 0.12rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.action-arrow {
  font-size: 1.35rem;
}

.international-access {
  margin-top: 1.15rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(3, 26, 51, 0.72);
  backdrop-filter: blur(12px);
}

.international-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.international-heading p,
.international-heading h2 {
  margin: 0;
}

.international-heading p {
  color: var(--gold-400);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.international-heading h2 {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

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

.language-access {
  display: grid;
  grid-template-columns: 2.25rem 1fr auto;
  gap: 0.65rem;
  align-items: center;
  min-width: 0;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: rgba(8, 47, 91, 0.78);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.language-access:hover,
.language-access:focus-visible {
  border-color: rgba(255, 211, 79, 0.75);
  background: rgba(10, 62, 116, 0.96);
  transform: translateY(-2px);
}

.language-code {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-400);
  font-size: 0.7rem;
  font-weight: 800;
}

.language-copy strong,
.language-copy small {
  display: block;
}

.language-copy strong {
  font-size: 0.82rem;
}

.language-copy small {
  margin-top: 0.08rem;
  color: var(--muted);
  font-size: 0.64rem;
}

.language-arrow {
  color: var(--muted);
}

.solutions {
  padding-top: 3.3rem;
}

.section-heading p {
  margin-bottom: 0.35rem;
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.proof h2,
.closing h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

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

.solution-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  min-height: 7rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: var(--surface);
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.solution-card:hover,
.solution-card:focus-visible {
  border-color: rgba(46, 145, 232, 0.75);
  background: rgba(9, 55, 104, 0.92);
  transform: translateY(-2px);
}

.solution-card--featured {
  grid-column: 1 / -1;
  min-height: auto;
  border-color: rgba(241, 185, 0, 0.42);
  background: linear-gradient(120deg, rgba(10, 62, 116, 0.96), rgba(6, 42, 85, 0.88));
}

.solution-number {
  color: var(--gold-400);
  font-size: 0.7rem;
  font-weight: 800;
}

.solution-card strong,
.solution-card small {
  display: block;
}

.solution-card strong {
  font-size: 0.9rem;
}

.solution-card small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.solution-arrow {
  color: var(--muted);
}

.proof,
.closing {
  margin-top: 3.3rem;
  padding: clamp(1.25rem, 5vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(8, 47, 91, 0.92), rgba(3, 26, 51, 0.96));
  box-shadow: var(--shadow);
}

.proof .eyebrow,
.closing .eyebrow {
  margin-top: 0;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.proof-list span {
  position: relative;
  padding: 0.7rem 0.7rem 0.7rem 2rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.proof-list span::before {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--gold-500);
  content: "";
  transform: translateY(-50%);
  box-shadow: 0 0 0 0.28rem rgba(241, 185, 0, 0.12);
}

.closing {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 15%, rgba(241, 185, 0, 0.2), transparent 14rem),
    linear-gradient(145deg, #082f5b, #031a33);
  text-align: center;
}

.closing h2 {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.closing > p:not(.eyebrow) {
  max-width: 600px;
  margin-right: auto;
  margin-bottom: 1.35rem;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.82rem 1.2rem;
  border-radius: 0.85rem;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button--gold {
  background: linear-gradient(115deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  box-shadow: 0 14px 32px rgba(241, 185, 0, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(241, 185, 0, 0.26);
}

.site-footer {
  padding: 2rem 0 0;
  color: var(--muted);
  text-align: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.social-links a,
.share-button {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.72rem;
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible,
.share-button:hover,
.share-button:focus-visible {
  border-color: var(--gold-500);
  color: var(--gold-400);
}

.site-footer p,
.site-footer small {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.68rem;
}

.tracking-notice {
  margin-top: 0.9rem;
  opacity: 0.7;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 20;
  width: fit-content;
  max-width: calc(100% - 2rem);
  margin: auto;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.75rem;
  background: #0a3768;
  box-shadow: var(--shadow);
  color: var(--white);
  font-size: 0.78rem;
}

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

@media (max-width: 580px) {
  .page-shell {
    width: min(100% - 1.15rem, 760px);
    padding-top: 1.25rem;
  }

  .brand {
    width: 8.2rem;
    height: 5.3rem;
  }

  .brand img {
    width: 7rem;
  }

  h1 {
    font-size: clamp(1.78rem, 9vw, 2.45rem);
  }

  .trust-strip div {
    padding: 0.7rem 0.25rem;
  }

  .trust-strip strong {
    font-size: 0.78rem;
  }

  .trust-strip span {
    font-size: 0.56rem;
  }

  .solution-grid,
  .proof-list {
    grid-template-columns: 1fr;
  }

  .solution-card--featured {
    grid-column: auto;
  }

  .action-card {
    grid-template-columns: 2.65rem 1fr auto;
    padding: 0.8rem;
  }

  .action-icon {
    width: 2.65rem;
    height: 2.65rem;
  }

  .international-heading {
    display: block;
  }

  .international-heading h2 {
    margin-top: 0.2rem;
  }
}

@media (max-width: 430px) {
  .language-access-grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
