:root {
  --navy: #0b1f33;
  --navy-2: #12324d;
  --blue: #176b87;
  --teal: #2fa7a0;
  --mint: #bfe8dc;
  --ice: #eef8f7;
  --white: #ffffff;
  --ink: #132033;
  --muted: #5c6b7a;
  --line: #dce7ea;
  --shadow: 0 24px 70px rgba(11, 31, 51, 0.12);
  --shadow-soft: 0 14px 38px rgba(11, 31, 51, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 104px 0; }
.alt-section { background: linear-gradient(180deg, #f7fbfb 0%, #eef7f6 100%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(220,231,234,.8);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: 0 10px 22px rgba(11,31,51,.18);
}
.brand-mark svg { width: 30px; fill: var(--mint); }
.brand-text { display: grid; line-height: 1.08; }
.brand-text strong { font-size: 1.06rem; letter-spacing: -.02em; }
.brand-text small { margin-top: 4px; color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; gap: 28px; color: #304155; font-size: .94rem; font-weight: 650; }
.primary-nav a { position: relative; }
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--teal);
  transition: right .2s ease;
}
.primary-nav a:hover::after { right: 0; }
.nav-cta { color: var(--white); background: var(--navy); padding: 11px 16px; border-radius: 999px; }
.nav-cta:hover { background: var(--blue); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 7px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px 0; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 18%, rgba(47,167,160,.18), transparent 27%),
    radial-gradient(circle at 12% 80%, rgba(23,107,135,.12), transparent 30%),
    linear-gradient(180deg, #fbfefe 0%, #f4fbfa 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(11,31,51,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,51,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 68px; align-items: center; min-height: 650px; }
.eyebrow { display: inline-block; color: var(--blue); font-weight: 800; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.13; letter-spacing: -.035em; }
h1 { margin-top: 18px; font-size: clamp(2.8rem, 6vw, 5.4rem); max-width: 12ch; color: var(--navy); }
h1 span { color: var(--blue); }
.hero-lead { max-width: 660px; margin: 25px 0 0; color: var(--muted); font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 49px; padding: 0 21px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); box-shadow: 0 14px 28px rgba(23,107,135,.23); }
.button-primary:hover { box-shadow: 0 18px 36px rgba(23,107,135,.29); }
.button-secondary { background: rgba(255,255,255,.76); color: var(--navy); border-color: var(--line); }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; padding-top: 25px; border-top: 1px solid var(--line); }
.hero-points div { display: grid; gap: 3px; }
.hero-points strong { color: var(--navy); }
.hero-points span { color: var(--muted); font-size: .86rem; }

.hero-visual { position: relative; min-height: 520px; }
.visual-card-main {
  position: absolute;
  inset: 36px 18px 36px 48px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 19%, rgba(191,232,220,.45), transparent 30%),
    linear-gradient(145deg, #0b1f33 0%, #123f55 54%, #176b87 100%);
  box-shadow: 0 38px 80px rgba(11,31,51,.27);
}
.visual-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .35;
}
.material-wave { position: absolute; border-radius: 50%; filter: blur(.2px); border: 2px solid rgba(191,232,220,.65); }
.wave-one { width: 460px; height: 230px; left: -72px; top: 133px; transform: rotate(-18deg); }
.wave-two { width: 390px; height: 180px; right: -102px; top: 205px; transform: rotate(24deg); border-color: rgba(255,255,255,.42); }
.molecule { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 9px rgba(191,232,220,.12), 0 0 40px rgba(191,232,220,.55); }
.molecule::before, .molecule::after { content: ""; position: absolute; height: 2px; width: 95px; left: 8px; top: 8px; transform-origin: left center; background: linear-gradient(90deg, var(--mint), transparent); }
.molecule::after { transform: rotate(65deg); }
.molecule-a { top: 97px; left: 104px; }
.molecule-b { top: 205px; right: 106px; }
.molecule-b::before { transform: rotate(155deg); }
.molecule-b::after { transform: rotate(230deg); }
.molecule-c { bottom: 115px; left: 168px; }
.molecule-c::before { transform: rotate(-36deg); }
.molecule-c::after { transform: rotate(25deg); }
.visual-label { position: absolute; left: 34px; right: 34px; bottom: 30px; display: grid; gap: 5px; color: var(--white); }
.visual-label span { color: var(--mint); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; }
.visual-label strong { font-size: 1.16rem; }
.float-card { position: absolute; display: flex; align-items: center; gap: 12px; min-width: 255px; padding: 15px 16px; border: 1px solid rgba(220,231,234,.85); border-radius: 16px; background: rgba(255,255,255,.91); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.float-card-one { right: -10px; top: 21px; }
.float-card-two { left: 4px; bottom: 8px; }
.float-card .dot { flex: 0 0 12px; width: 12px; height: 12px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 6px rgba(47,167,160,.12); }
.float-card div { display: grid; }
.float-card strong { font-size: .93rem; }
.float-card small { color: var(--muted); font-size: .75rem; }

.trust-strip { background: var(--navy); color: #d8e7ec; }
.trust-content { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-content span { padding: 21px 20px; text-align: center; font-size: .86rem; font-weight: 700; border-right: 1px solid rgba(255,255,255,.11); }
.trust-content span:last-child { border-right: 0; }

.section-heading { max-width: 810px; margin-bottom: 46px; }
.section-heading.compact { margin-bottom: 36px; }
.section-heading h2, .capability-copy h2, .about-copy h2, .contact-copy h2 { margin-top: 14px; color: var(--navy); font-size: clamp(2.1rem, 4vw, 3.6rem); }
.section-heading p, .capability-copy > p, .about-copy p, .contact-copy > p { color: var(--muted); font-size: 1.04rem; }
.card-grid { display: grid; gap: 20px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 32px rgba(11,31,51,.045); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: #b8d7d8; }
.icon-box { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 21px; border-radius: 13px; background: var(--ice); color: var(--blue); font-weight: 900; font-size: .8rem; }
.service-card h3 { color: var(--navy); font-size: 1.26rem; }
.service-card p { color: var(--muted); font-size: .94rem; }
.service-card ul { list-style: none; margin: 18px 0 0; padding: 17px 0 0; border-top: 1px solid var(--line); }
.service-card li { position: relative; margin: 7px 0; padding-left: 18px; color: #405064; font-size: .86rem; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }

.split-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.check-grid span { position: relative; padding: 14px 14px 14px 43px; border: 1px solid rgba(23,107,135,.13); border-radius: 13px; background: rgba(255,255,255,.67); color: #35475a; font-size: .89rem; }
.check-grid span::before { content: "✓"; position: absolute; left: 14px; top: 12px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: #d9f2ec; color: var(--blue); font-size: .75rem; font-weight: 900; }
.data-panel { padding: 30px; border-radius: 28px; background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.data-header { display: grid; gap: 4px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.14); }
.data-header span { color: var(--mint); text-transform: uppercase; letter-spacing: .13em; font-size: .74rem; font-weight: 800; }
.data-header strong { font-size: 1.35rem; }
.workflow-step { display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.workflow-step:last-child { border-bottom: 0; }
.workflow-step > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: rgba(191,232,220,.12); color: var(--mint); font-weight: 900; }
.workflow-step div { display: grid; gap: 2px; }
.workflow-step small { color: #b9cad3; }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.industry-card { padding: 24px; border-radius: 19px; background: linear-gradient(160deg, #f8fbfb 0%, #eef7f6 100%); border: 1px solid #e0ecec; }
.industry-card > span { display: inline-grid; place-items: center; width: 34px; height: 34px; margin-bottom: 18px; border-radius: 10px; color: var(--white); background: var(--blue); font-weight: 900; font-size: .8rem; }
.industry-card h3 { font-size: 1.12rem; color: var(--navy); }
.industry-card p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }

.about-section { background: var(--navy); color: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 68px; }
.about-copy h2 { color: var(--white); }
.about-copy p { color: #c6d5dd; }
.about-quote { position: relative; padding: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); }
.about-quote::before { content: "“"; position: absolute; top: -20px; left: 26px; color: var(--mint); font-size: 6rem; line-height: 1; opacity: .7; }
.about-quote p { position: relative; margin: 0; font-size: 1.28rem; line-height: 1.55; }
.about-quote span { display: block; margin-top: 22px; color: var(--mint); font-size: .83rem; text-transform: uppercase; letter-spacing: .12em; }

.contact-section { background: #f3f9f8; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-note { display: grid; gap: 5px; margin-top: 28px; padding: 18px; border-left: 4px solid var(--teal); background: var(--white); border-radius: 0 12px 12px 0; }
.contact-note span { color: var(--muted); font-size: .9rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-soft); }
.form-row { display: grid; gap: 7px; }
.form-row:nth-child(4), .form-row:nth-child(5) { grid-column: 1 / -1; }
.form-row label { font-size: .83rem; font-weight: 800; color: #33465a; }
.form-row input, .form-row select, .form-row textarea { width: 100%; border: 1px solid #cad9df; border-radius: 11px; background: #fbfdfd; color: var(--ink); padding: 12px 13px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(47,167,160,.13); }
.form-row textarea { resize: vertical; }
.full-width, .form-status, .form-help { grid-column: 1 / -1; }
.form-status { min-height: 1.2em; margin: 0; color: var(--blue); font-size: .87rem; font-weight: 700; }
.form-help { margin: -4px 0 0; color: var(--muted); font-size: .76rem; }
.form-help code { color: var(--blue); }

.site-footer { background: #071727; color: #c4d2da; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 50px; padding-bottom: 40px; }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand .brand-text small { color: #98abb7; }
.footer-grid > div:first-child p { max-width: 440px; color: #98abb7; }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links strong { color: var(--white); margin-bottom: 6px; }
.footer-links a, .footer-links span { color: #9fb0bb; font-size: .9rem; }
.footer-links a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #8fa2af; font-size: .82rem; }
.footer-bottom a:hover { color: var(--mint); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .section-pad { padding: 82px 0; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 77px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-soft);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 13px; }
  .primary-nav a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 5px; }
  .hero-grid, .split-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 22px; }
  .hero-visual { min-height: 480px; }
  .services-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-content { grid-template-columns: repeat(2, 1fr); }
  .trust-content span:nth-child(2) { border-right: 0; }
  .trust-content span:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.11); }
  .footer-grid { grid-template-columns: 1.25fr .75fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 66px 0; }
  .brand-text small { letter-spacing: .08em; }
  h1 { font-size: clamp(2.5rem, 13vw, 4.1rem); }
  .hero-grid { min-height: auto; }
  .hero-points { grid-template-columns: 1fr; gap: 12px; }
  .hero-visual { min-height: 410px; }
  .visual-card-main { inset: 36px 0 36px 18px; }
  .float-card { min-width: 224px; max-width: 92%; }
  .float-card-one { right: 2px; }
  .float-card-two { left: 0; }
  .services-grid, .industry-grid, .check-grid, .contact-form { grid-template-columns: 1fr; }
  .form-row, .form-row:nth-child(4), .form-row:nth-child(5), .full-width, .form-status, .form-help { grid-column: auto; }
  .trust-content { grid-template-columns: 1fr; }
  .trust-content span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .trust-content span:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

.alt-section { background: linear-gradient(180deg, #fbfdfd 0%, #f4faf9 100%); }
.equipment-section { background: #ffffff; }
.equipment-grid { grid-template-columns: repeat(3, 1fr); }
.equipment-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(11,31,51,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.equipment-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: #b8d7d8; }
.equipment-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #eef4f5;
}
.equipment-copy { padding: 20px 22px 24px; }
.equipment-copy h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.15rem; }
.equipment-copy p { margin: 0; color: var(--muted); font-size: .92rem; }

.team-section { background: #eef5f6; }
.subsection-heading { margin: 42px 0 18px; }
.subsection-heading h3 {
  margin: 0;
  font-size: 1.38rem;
  color: var(--navy);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.subsection-heading h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}
.org-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.org-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid #d7e6e7;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(11,31,51,.04);
}
.org-card h4, .person-copy h4 { margin: 0 0 7px; color: var(--navy); }
.org-card p, .person-copy p { margin: 0; color: var(--muted); font-size: .9rem; }
.org-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  letter-spacing: .04em;
  font-size: 1.08rem;
}
.org-uqtr { background: #0c355f; }
.org-uqac { background: #0a8695; }
.org-tmu { background: #78b33c; }

.people-grid { display: grid; gap: 22px; }
.core-people-grid { grid-template-columns: repeat(2, 1fr); }
.collab-people-grid { grid-template-columns: repeat(2, 1fr); }
.person-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid #d7e6e7;
  border-radius: 20px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 12px 28px rgba(11,31,51,.05);
}
.person-photo {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  background: #dbe8ed;
}
.person-role {
  display: inline-block;
  margin-bottom: 10px !important;
  color: var(--blue) !important;
  font-size: .86rem !important;
  font-weight: 800;
  letter-spacing: .02em;
}
.compact-person-card .person-photo { width: 96px; height: 96px; border-radius: 16px; }
.team-note {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
  background: rgba(255,255,255,.92);
  color: var(--muted);
}
.team-note strong { color: var(--navy); }

@media (max-width: 980px) {
  .equipment-grid, .org-grid { grid-template-columns: repeat(2, 1fr); }
  .core-people-grid, .collab-people-grid { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .equipment-grid, .org-grid { grid-template-columns: 1fr; }
  .person-card { grid-template-columns: 1fr; text-align: center; }
  .person-photo { margin: 0 auto; }
  .subsection-heading { margin-top: 36px; }
}

/* Official company branding and founder portraits */
.company-brand { flex: 0 0 auto; line-height: 0; }
.company-logo {
  width: 174px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}
.footer-company-logo {
  width: 190px;
  max-height: 58px;
  padding: 5px 8px;
  border-radius: 9px;
  background: #ffffff;
}
.core-people-grid .person-card { grid-template-columns: 154px 1fr; }
.core-people-grid .person-photo {
  width: 144px;
  height: 156px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center 30%;
}
.equipment-card img[src$="ice-push-off-test.jpg"] { object-position: center; }

@media (max-width: 1100px) {
  .company-logo { width: 152px; max-height: 46px; }
  .primary-nav { gap: 20px; }
}

@media (max-width: 650px) {
  .company-logo { width: 132px; max-height: 42px; }
  .footer-company-logo { width: 172px; max-height: 54px; }
  .core-people-grid .person-card { grid-template-columns: 1fr; }
  .core-people-grid .person-photo { margin: 0 auto; width: 154px; height: 168px; }
}


/* Corporate registration verification */
.registration-panel {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 48px;
  padding: 30px;
  border: 1px solid rgba(191,232,220,.28);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}
.registration-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal), #63d5c7);
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(191,232,220,.09);
}
.registration-copy h3 {
  margin: 8px 0 8px;
  color: var(--white);
  font-size: 1.55rem;
}
.registration-copy > p { margin: 0; color: #c6d5dd; }
.registration-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 18px;
}
.registration-details div {
  display: grid;
  gap: 5px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}
.registration-details span {
  color: #9fb6c2;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 800;
}
.registration-details strong {
  color: var(--white);
  font-size: .98rem;
  letter-spacing: .015em;
  overflow-wrap: anywhere;
}
.registration-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(191,232,220,.4);
  text-underline-offset: 4px;
}
.registration-link:hover { color: #ffffff; }

@media (max-width: 650px) {
  .registration-panel { grid-template-columns: 1fr; padding: 24px; }
  .registration-details { grid-template-columns: 1fr; }
}
