/* ==============================
   Lucas Kuhring Cloud Engineering
   Marine-blue, modern, minimal
   ============================== */

:root {
  --navy-900: #07203a;
  --navy-800: #0a2540;
  --navy-700: #0f3461;
  --navy-600: #14467f;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #60a5fa;
  --cyan-300: #67e8f9;

  --bg: #f7fafc;
  --bg-elev: #ffffff;
  --surface: #ffffff;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --text: #0f172a;
  --text-muted: #475569;
  --text-on-dark: #e2e8f0;
  --text-on-dark-muted: #94a3b8;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 48px rgba(7, 32, 58, 0.18);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --container: 1140px;

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue-500);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--navy-700);
}

h1, h2, h3, h4 {
  color: var(--navy-800);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.25rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--navy-800);
  font-size: 0.97rem;
  letter-spacing: 0.01em;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--navy-700), var(--blue-500));
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.02em;
}

.brand__text { line-height: 1.1; }
.brand__sub {
  display: block;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav__list a:hover { color: var(--blue-500); }

.lang-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.lang-switch a {
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lang-switch a.is-active {
  background: var(--navy-800);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--navy-800);
}

@media (max-width: 860px) {
  .nav__list { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav__list {
    display: flex;
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__list li { width: 100%; }
  .nav.is-open .nav__list a {
    display: block;
    padding: 12px;
    border-radius: 8px;
  }
  .nav.is-open .nav__list a:hover { background: var(--bg); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--navy-700); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--navy-800);
  color: var(--navy-800);
  background: #fff;
}

.btn--small {
  padding: 8px 14px;
  font-size: 0.85rem;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(800px 600px at -10% 100%, rgba(20, 70, 127, 0.15), transparent 65%),
    linear-gradient(180deg, #f0f6ff 0%, var(--bg) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--navy-700);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.hero h1 {
  margin-bottom: 16px;
}

.hero h1 .grad {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--blue-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  font-size: 1.13rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__portrait-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.hero__portrait {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  background: #e2e8f0;
}

.hero__portrait-decor {
  position: absolute;
  inset: -18px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
  z-index: -1;
  opacity: 0.18;
  filter: blur(28px);
}

.hero__placeholder-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(7, 32, 58, 0.72);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

@media (max-width: 860px) {
  .hero { padding: 56px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__portrait-wrap { order: -1; }
  .hero__portrait { max-width: 240px; }
}

/* ===== Sections ===== */
.section {
  padding: 96px 0;
}

.section--alt { background: #fff; border-block: 1px solid var(--border); }

.section__head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section__eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 12px;
}

.section__lede {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 640px;
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.stat__num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat__label {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.skills h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
}

.skills h3:first-child { margin-top: 0; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tag-list li {
  padding: 6px 12px;
  background: rgba(37, 99, 235, 0.07);
  color: var(--navy-700);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-700), var(--blue-500));
  opacity: 0.9;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-700), var(--blue-500));
  color: #fff;
  margin-bottom: 18px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.95rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--blue-500);
  transform: rotate(45deg);
}

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== Projects ===== */
.projects-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.project {
  position: relative;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    transform 0.15s ease;
}

.project:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.project--featured {
  border-color: rgba(37, 99, 235, 0.35);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.04), rgba(37, 99, 235, 0) 60%),
    #fff;
  box-shadow: 0 1px 0 rgba(37, 99, 235, 0.08);
}

.project--featured::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: linear-gradient(180deg, var(--blue-500), var(--navy-700));
}

.project__badge {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--blue-500);
  text-shadow: 0 1px 2px rgba(37, 99, 235, 0.18);
}

.project__title {
  display: block;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy-800);
  margin-bottom: 4px;
  padding-right: 28px;
}

.project:not(.project--featured) .project__title { padding-right: 0; }

.project__role {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 6px;
}

.project__industry {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.74rem;
  color: var(--text-muted);
  padding: 2px 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 500;
  vertical-align: 1px;
}

.project__desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .projects-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .project { padding: 20px; }
  .project__badge { position: static; margin-bottom: 10px; }
  .project__title { padding-right: 0; }
  .project__industry { margin-left: 0; margin-top: 4px; }
}

/* ===== CV downloads ===== */
.cv-downloads {
  margin-top: 36px;
  padding: 28px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-md);
}

.cv-downloads h3 {
  color: #fff;
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.cv-downloads p {
  color: var(--text-on-dark-muted);
  margin: 0;
  font-size: 0.95rem;
}

.cv-downloads__list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cv-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

@media (max-width: 720px) {
  .cv-downloads { grid-template-columns: 1fr; }
}

/* ===== Contact ===== */
.contact {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--text-on-dark);
  border-radius: 0;
  padding: 96px 0;
}

.contact h2 { color: #fff; }
.contact .section__eyebrow { color: var(--cyan-300); }
.contact .section__lede { color: var(--text-on-dark-muted); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
  margin-top: 16px;
}

.contact-channels {
  display: grid;
  gap: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  gap: 16px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field { display: grid; gap: 6px; }

.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s ease, background 0.15s ease,
    box-shadow 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-300);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.28);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
  font-family: inherit;
}

.contact-form .btn--submit {
  justify-self: start;
  background: #fff;
  color: var(--navy-800);
  border: none;
  margin-top: 4px;
  cursor: pointer;
}

.contact-form .btn--submit:hover {
  background: var(--cyan-300);
  color: var(--navy-900);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 24px; }
  .contact-form__row { grid-template-columns: 1fr; }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: #fff;
  transition: background 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #fff;
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.contact-card__label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.contact-card__value {
  display: block;
  font-weight: 600;
  font-size: 1.02rem;
  word-break: break-all;
}

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-900);
  color: var(--text-on-dark-muted);
  padding: 28px 0;
  font-size: 0.88rem;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a { color: var(--text-on-dark); }
.site-footer a:hover { color: #fff; }

/* ===== Skip link / a11y ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-800);
  color: #fff;
  padding: 8px 14px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
  border-radius: 6px;
}

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

/* ===== Legal pages (Impressum) ===== */
.legal {
  padding: 88px 0 72px;
  background: var(--bg);
}

.legal__inner {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px clamp(24px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
}

.legal h1 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}

.legal__meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 1.15rem;
  margin-top: 36px;
  margin-bottom: 10px;
  color: var(--navy-800);
  letter-spacing: 0;
}

.legal h2:first-of-type { margin-top: 0; }

.legal p, .legal address {
  margin: 0 0 12px;
  color: var(--text);
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal address strong { color: var(--navy-800); }

.legal a { word-break: break-word; }

.legal__small {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.86rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.legal-back:hover { color: var(--navy-800); }

.site-footer__inner nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer__inner nav a { color: var(--text-on-dark); }
.site-footer__inner nav a:hover { color: #fff; }

/* ===== Thank-you page ===== */
.thanks {
  min-height: calc(100vh - 72px - 72px);
  display: grid;
  place-items: center;
  padding: 64px 0;
  background:
    radial-gradient(700px 380px at 50% -10%, rgba(37, 99, 235, 0.18), transparent 60%),
    linear-gradient(180deg, #f0f6ff 0%, var(--bg) 100%);
}

.thanks__card {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-md);
}

.thanks__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.32);
}

.thanks h1 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.thanks p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin: 0 0 8px;
}

.thanks__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
