/* =========================================================
   THEME TOKENS
   ========================================================= */

:root {
  /* Backgrounds */
  --bg-start: #151b3a;
  --bg-end: #3a2459;

  /* Surfaces */
  --panel-bg: rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 255, 255, 0.15);

  /* Text */
  --text-primary: #ffffff;
  --text-soft: #d7d9e6;
  --text-muted: #a6abc8;

  /* Accent */
  --accent: #8e73bf;
}

/* =========================================================
   RESET & BASE
   ========================================================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--text-primary);

  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.06),
      transparent 40%
    ),
    linear-gradient(180deg, var(--bg-start), var(--bg-end));

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px 20px;
}

/* =========================================================
   LAYOUT
   ========================================================= */

.layout {
  width: 100%;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 720px;
  width: 100%;
  text-align: center;
}

.section {
  margin-bottom: 56px;
}

.section:last-child {
  margin-bottom: 0;
}

/* =========================================================
   TEXT ROLES
   ========================================================= */

.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--text-soft);
}

.heading-main {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 400;
  margin: 0 0 48px;
}

.heading-offer {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  margin: 0 0 48px;
}

.heading-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.text-body {
  font-size: 18px;
  line-height: 1.6;
}

.text-muted {
  color: var(--text-muted);
}

/* =========================================================
   SURFACES / PANELS
   ========================================================= */

.panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 32px;
  backdrop-filter: blur(6px);
}

.profile-image {
  display: block;
  margin: 0 auto 32px;
  max-width: 200px;
  width: 100%;
  border-radius: 6px;
  opacity: 0.95;
}

/* =========================================================
   FORMS
   ========================================================= */

form {
  display: grid;
  gap: 18px;
  text-align: left;
}

label {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: 16px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  margin-top: 8px;
  padding: 14px;
  border-radius: 8px;
  border: none;

  background: var(--accent);
  color: white;

  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;

  cursor: pointer;
}

.button:hover {
  opacity: 0.9;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer a {
  color: var(--text-muted);
  text-decoration: none;
}
