/* No em dashes, no nonsense. */

/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(255,255,255,0.92);
  overflow-x: hidden;
}

/* Full-bleed hero with background */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
}

.bg {
  position: absolute;
  inset: 0;
  background-image: url("wallpaper.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}

/* Subtle dark vignette so text stays readable */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 50% 45%, rgba(0,0,0,0.15), rgba(0,0,0,0.55)),
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
  pointer-events: none;
}

/* Content wrapper */
.wrap {
  position: relative;
  width: min(1120px, 92vw);
  padding: 28px 0 18px;
}

/* Top strip */
.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.brand-logo {
  width: 92px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.45));
}

.topbar-strip {
  height: 46px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.topbar-text span {
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.78;
  white-space: nowrap;
}

/* Headline */
.headline {
  text-align: center;
  margin: 10px 0 26px;
}

.headline h1 {
  margin: 0;
  font-weight: 650;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

.headline .accent {
  color: #ff8a2b;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.headline .big {
  display: inline-block;
  margin-top: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.sub {
  margin: 12px 0 0;
  font-size: 18px;
  opacity: 0.82;
  text-shadow: 0 10px 20px rgba(0,0,0,0.55);
}

/* Card row */
.cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  justify-items: center;
}

/* OR label */
.or {
  font-weight: 800;
  letter-spacing: 0.2em;
  opacity: 0.75;
  text-shadow: 0 10px 25px rgba(0,0,0,0.55);
}

/* Glass card */
.glass-card {
  position: relative;
  width: min(520px, 44vw);
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  transform: translateZ(0);
  outline: none;
}

/* Actual glass slab */
.glass-inner {
  position: relative;
  border-radius: 22px;
  padding: 22px 26px 20px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  box-shadow:
    0 22px 60px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.22);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

/* Card-specific tint */
.glass-card.warm .glass-inner {
  background: linear-gradient(180deg, rgba(255,140,50,0.12), rgba(255,255,255,0.08));
}
.glass-card.cool .glass-inner {
  background: linear-gradient(180deg, rgba(120,200,255,0.18), rgba(255,255,255,0.10));
}

/* Logo slot */
.logo-slot {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 6px 0 6px;
  margin-bottom: 10px;
}

.logo-slot img {
  max-width: 76%;
  max-height: 140px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.45));
}

/* Copy */
.card-desc {
  margin: 10px 0 14px;
  text-align: center;
  opacity: 0.9;
  line-height: 1.35;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
  justify-content: center;
}

.bullets li {
  position: relative;
  padding-left: 28px;
  opacity: 0.92;
  font-weight: 600;
  text-shadow: 0 10px 18px rgba(0,0,0,0.40);
}

/* Orange check marks on left card */
.glass-card.warm .bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,140,50,0.18);
  border: 1px solid rgba(255,140,50,0.38);
  color: rgba(255,170,90,0.95);
  box-shadow: 0 10px 22px rgba(0,0,0,0.30);
}

/* Blue checks on right card */
.glass-card.cool .bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(120,200,255,0.20);
  border: 1px solid rgba(120,200,255,0.40);
  color: rgba(190,235,255,0.95);
  box-shadow: 0 10px 22px rgba(0,0,0,0.30);
}

/* CTA buttons */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.40),
    inset 0 1px 0 rgba(255,255,255,0.30);
  border: 1px solid rgba(255,255,255,0.18);
  user-select: none;
}

.cta.orange {
  background: linear-gradient(180deg, rgba(255,140,50,0.95), rgba(195,90,15,0.98));
}
.cta.gold {
  background: linear-gradient(180deg, rgba(255,210,125,0.98), rgba(195,150,70,0.98));
  color: rgba(15,24,35,0.92);
}

.arrow {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Shine layer */
.shine {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  pointer-events: none;
}

.shine::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  left: -70%;
  top: -70%;
  background: linear-gradient(
    45deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.10) 35%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.10) 65%,
    rgba(255,255,255,0.00) 100%
  );
  transform: rotate(10deg) translateX(-40%);
  opacity: 0.85;
  transition: transform 340ms ease, opacity 340ms ease;
}

/* Outer glow */
.glow {
  position: absolute;
  inset: -8px;
  border-radius: 26px;
  pointer-events: none;
  opacity: 0.0;
  transition: opacity 260ms ease;
  filter: blur(10px);
  z-index: -1;
}

.glass-card.warm .glow {
  background: radial-gradient(circle at 25% 55%, rgba(255,140,50,0.38), rgba(0,0,0,0));
}
.glass-card.cool .glow {
  background: radial-gradient(circle at 75% 55%, rgba(120,200,255,0.40), rgba(0,0,0,0));
}

/* Hover + focus */
.glass-card:hover .glass-inner,
.glass-card:focus-visible .glass-inner {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.12);
}

.glass-card:hover .glow,
.glass-card:focus-visible .glow {
  opacity: 1;
}

.glass-card:hover .shine::before,
.glass-card:focus-visible .shine::before {
  transform: rotate(10deg) translateX(55%);
  opacity: 1;
}

/* Footer */
.footnote {
  margin-top: 18px;
  text-align: center;
  opacity: 0.55;
}

/* Responsive */
@media (max-width: 980px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .or {
    order: 2;
  }
  .glass-card {
    width: min(640px, 92vw);
  }
  .topbar {
    grid-template-columns: auto 1fr;
  }
  .topbar-text {
    grid-column: 1 / -1;
    text-align: center;
  }
  .topbar-strip {
    display: none;
  }
}
/* top strip */
.topbar{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}

.topbar-text{
  margin-left:auto;
}

/* make the bar look like a glass rail, not an input field */
.topbar-strip{
  width: 560px;
  max-width: 52vw;
  height: 40px;
  border-radius: 12px;
  position: relative;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 10px 26px rgba(0,0,0,0.28);
}

/* fade the right edge so it blends into the bg */
.topbar-strip::after{
  content:"";
  position:absolute;
  top:-1px; bottom:-1px;
  right:-1px;
  width: 120px;
  border-radius: 0 12px 12px 0;

  background: linear-gradient(to right,
    rgba(0,0,0,0),
    rgba(0,0,0,0.55)
  );

  pointer-events:none;
  opacity: 0.75;
}

/* add a soft highlight sweep line */
.topbar-strip::before{
  content:"";
  position:absolute;
  left:10px; right:30px;
  top:8px;
  height: 1px;
  background: linear-gradient(to right,
    rgba(255,255,255,0),
    rgba(255,255,255,0.25),
    rgba(255,255,255,0)
  );
  opacity: 0.8;
  pointer-events:none;
}
/* Top bar */
.topbar{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}

.brand-logo{
  width:92px;
  height:auto;
  display:block;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.45));
}

/* Glass rail with text inside */
.topbar-strip{
  position:relative;
  height:44px;
  width:min(720px, 68vw);
  border-radius:12px;

  display:flex;
  align-items:center;
  padding:0 18px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 10px 26px rgba(0,0,0,0.28);
}

/* Fade-out on the right so it blends */
.topbar-strip::after{
  content:"";
  position:absolute;
  top:-1px; bottom:-1px;
  right:-1px;
  width:140px;
  border-radius:0 12px 12px 0;

  background: linear-gradient(to right,
    rgba(0,0,0,0),
    rgba(0,0,0,0.55)
  );
  pointer-events:none;
  opacity:0.75;
}

/* subtle highlight line, makes it feel like glass */
.topbar-strip::before{
  content:"";
  position:absolute;
  left:16px; right:60px;
  top:10px;
  height:1px;
  background: linear-gradient(to right,
    rgba(255,255,255,0),
    rgba(255,255,255,0.22),
    rgba(255,255,255,0)
  );
  opacity:0.9;
  pointer-events:none;
}

/* Text inside rail */
.strip-text{
  font-size:14px;
  letter-spacing:0.32em;
  text-transform:uppercase;
  opacity:0.82;
  white-space:nowrap;
  text-shadow: 0 10px 22px rgba(0,0,0,0.55);
}
/* Top bar container */
.topbar{
  display:flex;
  justify-content:center;
  margin-bottom:18px;
}

/* Centered logo + rail unit */
.topbar-center{
  display:flex;
  align-items:center;
  gap:18px;
}

/* Logo */
.brand-logo{
  width:92px;
  height:auto;
  display:block;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.45));
}

/* Glass rail */
.topbar-strip{
  position:relative;
  height:44px;
  width:min(720px, 68vw);
  border-radius:12px;

  display:flex;
  align-items:center;
  padding:0 18px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 10px 26px rgba(0,0,0,0.28);
}

/* Fade right edge */
.topbar-strip::after{
  content:"";
  position:absolute;
  top:-1px; bottom:-1px;
  right:-1px;
  width:140px;
  border-radius:0 12px 12px 0;
  background: linear-gradient(to right,
    rgba(0,0,0,0),
    rgba(0,0,0,0.55)
  );
  opacity:0.75;
  pointer-events:none;
}

/* Highlight line */
.topbar-strip::before{
  content
