:root {
  --bg: #f7f7fb;
  --surface: #ffffff;
  --text: #222222;
  --muted: #666666;
  --line: #e6e6ef;
  --grad-start: #e63946;
  --grad-end: #9d4edd;
  --shadow: 0 12px 32px rgba(0,0,0,.08);
  --radius: 22px;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

input,
select,
textarea,
button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(230,57,70,.28);
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}


.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 28px rgba(157,78,221,.25);
}

.button.secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247,247,251,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230,230,239,.85);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand span {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

main {
  padding: 34px 0 88px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(230,57,70,.08);
  color: #a22f4c;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: -.03em;
}

h2 {
  line-height: 1.1;
  letter-spacing: -.02em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d9d9e3;
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: 12px 14px;
  font-size: 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--grad-end);
  outline: none;
  box-shadow: 0 0 0 3px rgba(157,78,221,.12);
}

footer {
  padding: 28px 0 40px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }
  main {
    padding-top: 24px;
  }
  h1 {
    font-size: 36px;
  }
}

