@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Quicksand:wght@400;500;600&display=swap');

:root {
  /* Brand colours */
  --brand-sky: #b5e2fa;
  --brand-ink: #2f4858;
  --brand-teal: #0fa3b1;
  --brand-mist: #ebfdff;

  /* Accents / whites */
  --mauve: #83677b;
  --purple: #391de6;
  --pink: #ef476f;
  --white-1: #f8fafc;
  --white-2: #f5faff;
  --white-3: #fdfeff;

  /* System */
  --bg: var(--white-3);
  --surface: #ffffff;
  --text: var(--brand-ink);
  --muted: rgba(47, 72, 88, 0.72);
  --border: rgba(47, 72, 88, 0.12);

  --primary: var(--brand-teal);
  --primary-hover: #0c8d99;

  --radius: 18px;
  --shadow: 0 18px 45px rgba(47, 72, 88, 0.08);
  --max: 980px;
}

/* Base */
* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Quicksand", system-ui, -apple-system, sans-serif;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 18px 70px;
}

/* Headings */
h1, h2, h3 {
  font-family: "Poppins", system-ui, sans-serif;
  margin: 0 0 12px;
}

.h1 { font-size: clamp(34px, 4vw, 52px); line-height: 1.1; }
.h2 { font-size: clamp(22px, 2.2vw, 30px); }

/* Components */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.soft-panel {
  background: linear-gradient(180deg, var(--brand-mist), var(--bg));
  border-radius: var(--radius);
  padding: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #f8fafc;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: #f8fafc;
  background: var(--brand-ink);
}
/* THANK YOU PAGE LAYOUT */
.thankyou {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.thankyou > section {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
/* Thank-you sign-off */
.signoff {
  margin-top: 18px;
  padding-top: 6px;
}
/* Thank-you single-card layout */
.thankyou-card {
  max-width: 980px;
  margin: 80px auto;
  padding: 36px;
  .thankyou-card h1 {
  margin-bottom: 6px;
}

}

.card-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 860px) {
  .card-grid {
    grid-template-columns: 260px 1fr;
  }
}

/* Photo inside card */
.card-photo {
  width: 220px;
  height: 220px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content column */
.card-content {
  text-align: left;
}

/* Tech note */
.tech-note {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(235, 253, 255, 0.6);
  border: 1px solid rgba(47, 72, 88, 0.1);
}

/* Sign-off */
.signoff {
  margin-top: 22px;
  margin-left: 1.25em;
}
