:root{
  --bg: #fff7f0;
  --card: #FFFFFF;
  --text: #1F1F1F;
  --muted: #6B6B6B;
  --line: rgba(31,31,31,.08);
  --cta: #fd615a;
  --ctaHover: #e5504a;
  --teal: #8ED1C6;
  --shadow: 0 20px 60px rgba(0,0,0,.07);
  --radius: 22px;
  --radiusSm: 16px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* Header */
header{
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(254,239,227,.75);
  border-bottom: 1px solid var(--line);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  letter-spacing: .2px;
}
.logo{
  width: 34px; height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(253,97,90,.95), rgba(253,97,90,.30));
  box-shadow: 0 10px 30px rgba(253,97,90,.18);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  font-weight: 650;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease, border-color .12s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--cta);
  color: white;
  box-shadow: 0 16px 40px rgba(253,97,90,.22);
}
.btn-primary:hover{ background: var(--ctaHover); }

.divider{
  height: 1px;
  background: var(--line);
  margin: 0;
  border: 0;
}

/* Footer */
footer{
  padding: 34px 0 46px;
  color: rgba(31,31,31,.70);
}
.footerGrid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.footerLinks{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footerLinks a{
  font-size: 14px;
  color: rgba(31,31,31,.62);
}
.footerLinks a:hover{ color: rgba(31,31,31,.86); }
