:root{
  --bg: #fff7fb;
  --ink: #1f2430;
  --muted: #586071;

  --card: rgba(255,255,255,0.88);
  --card-strong: rgba(255,255,255,0.94);
  --stroke: rgba(31,36,48,0.10);

  --accent: #f06292;     /* rosy pink */
  --accent-2: #7c4dff;   /* gentle violet */
  --accent-3: #00b3b3;   /* soft teal */

  --shadow: 0 14px 40px rgba(22, 25, 33, 0.12);
  --shadow-soft: 0 10px 25px rgba(22, 25, 33, 0.10);

  --radius: 18px;
  --radius-lg: 24px;

  --max: 1120px;
}

*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  background: radial-gradient(1200px 600px at 10% 5%, rgba(240,98,146,0.10), transparent 60%),
              radial-gradient(1000px 500px at 90% 10%, rgba(124,77,255,0.10), transparent 55%),
              radial-gradient(900px 500px at 40% 95%, rgba(0,179,179,0.10), transparent 60%),
              var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
}

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

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

.skip-link{
  position: absolute;
  left: -999px;
  top: -999px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus{
  left: 14px;
  top: 14px;
  outline: 2px solid var(--accent);
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,247,251,0.80);
  border-bottom: 1px solid rgba(31,36,48,0.08);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-mark{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(240,98,146,0.95), rgba(124,77,255,0.90));
  box-shadow: 0 10px 22px rgba(124,77,255,0.18);
}

.brand-name{
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.brand-tagline{
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

.top-nav{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-nav a{
  font-size: 13.5px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}
.top-nav a:hover{
  background: rgba(240,98,146,0.08);
  text-decoration: none;
  color: var(--ink);
}

/* Hero */
.hero{
  position: relative;
  padding: 44px 0 26px;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(255,247,251,0.25), rgba(255,247,251,0.90) 75%),
    linear-gradient(90deg, rgba(31,36,48,0.05), rgba(31,36,48,0.00) 55%),
    url("/assets/img/splash-image.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.hero-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.hero-card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px 20px 18px;
}

.pill{
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(240,98,146,0.12);
  border: 1px solid rgba(240,98,146,0.22);
  color: #7c1f45;
  font-weight: 600;
  font-size: 12.5px;
}

.hero-card h1{
  font-family: Fraunces, Georgia, serif;
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: 0.2px;
}

.lead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16.5px;
}

.bullets{
  margin: 0 0 16px;
  padding: 0 0 0 18px;
  color: var(--ink);
}
.bullets li{
  margin: 8px 0;
}

.cta-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 11px 14px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  transition: transform 0.05s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn.primary{
  background: linear-gradient(135deg, rgba(240,98,146,1), rgba(124,77,255,1));
  color: white;
  box-shadow: 0 14px 28px rgba(124,77,255,0.18);
}
.btn.primary:hover{
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(124,77,255,0.22);
}

.btn.ghost{
  background: rgba(255,255,255,0.75);
  border-color: rgba(31,36,48,0.16);
  color: var(--ink);
}
.btn.ghost:hover{
  text-decoration: none;
  background: rgba(255,255,255,0.92);
}

.fine{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12.5px;
}

/* Side cards */
.hero-side{
  display: grid;
  gap: 12px;
}

.side-card{
  background: var(--card-strong);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 16px 16px 14px;
}

.side-title{
  margin: 0 0 10px;
  font-family: Fraunces, Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.side-text{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip{
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,179,179,0.10);
  border: 1px solid rgba(0,179,179,0.18);
  color: #0a5c5c;
  font-weight: 600;
  font-size: 12.5px;
}

/* Notify section */
.notify{
  padding: 10px 0 44px;
}

.notify-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(31,36,48,0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 14px;
  display: grid;
  gap: 14px;
}

.notify-copy h2{
  margin: 0 0 6px;
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0.2px;
  font-size: 24px;
}
.notify-copy p{
  margin: 0;
  color: var(--muted);
}

.notify-form{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.notify-form input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31,36,48,0.18);
  background: rgba(255,255,255,0.90);
  font-size: 14px;
  outline: none;
}
.notify-form input:focus{
  border-color: rgba(240,98,146,0.55);
  box-shadow: 0 0 0 4px rgba(240,98,146,0.14);
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(31,36,48,0.08);
  background: rgba(255,247,251,0.70);
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-left{ margin: 0; }
.footer-right{ margin: 0; }

.sep{
  margin: 0 8px;
  opacity: 0.55;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 920px){
  .hero-inner{
    grid-template-columns: 1fr;
  }
  .brand{ min-width: auto; }
}

@media (max-width: 520px){
  .hero{ padding-top: 26px; }
  .hero-card h1{ font-size: 34px; }
  .notify-form{ grid-template-columns: 1fr; }
  .top-nav{ display: none; }
}