@font-face {
  font-family: "Aktiv Grotesk Extended";
  src: url("/assets/AktivGroteskEx-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk Extended";
  src: url("/assets/AktivGroteskEx-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk Extended";
  src: url("/assets/AktivGroteskEx-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #0d1e2c;
  --navy: #0d1b2a;
  --slate: #1c3a4b;
  --cloud: #f0f4f8;
  --mint: #00e5c6;
  --teal: #02c6ae;
  --line: #d9e2e8;
  --muted: #58707f;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  background: var(--cloud);
  color: var(--ink);
  font-family: "Aktiv Grotesk Extended", Arial, sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
  padding: clamp(32px, 6vw, 78px);
  background: var(--white);
}

.brand { width: 144px; height: auto; display: block; }

.card { width: min(520px, 100%); }

.eyebrow {
  margin: 0 0 14px;
  color: #087c6d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.04;
}

.lead {
  max-width: 500px;
  margin: 20px 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease;
}

.button:hover { background: var(--slate); border-color: var(--slate); }
.button:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }

.privacy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--navy);
}

.visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
}

.visual-copy {
  position: absolute;
  z-index: 1;
  right: clamp(28px, 5vw, 64px);
  bottom: clamp(28px, 5vw, 64px);
  left: clamp(28px, 5vw, 64px);
  max-width: 470px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 24px;
  background: rgba(13, 27, 42, .86);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.visual-copy strong { display: block; font-size: 19px; font-weight: 500; }
.visual-copy span { display: block; margin-top: 8px; color: #cbd8df; font-size: 13px; line-height: 1.55; }

.footer { color: var(--muted); font-size: 11px; }

.simple .page { display: grid; place-items: center; padding: 24px; }
.simple .content {
  width: min(600px, 100%);
  min-height: auto;
  gap: 42px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 24px;
}
.simple h1 { font-size: clamp(32px, 6vw, 48px); }

.minimal-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.minimal-card {
  width: min(420px, 100%);
  display: grid;
  gap: 34px;
  padding: clamp(30px, 6vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.minimal-card .brand { width: 132px; }
.minimal-card h1 { margin: 4px 0 0; font-size: clamp(30px, 6vw, 40px); }

@media (max-width: 820px) {
  .page { grid-template-columns: 1fr; }
  .content { min-height: 72vh; }
  .visual { min-height: 340px; }
}

@media (max-width: 520px) {
  .content { padding: 28px 22px; gap: 44px; }
  .visual { min-height: 280px; }
  .visual-copy { padding: 18px; border-radius: 18px; }
}
