/* ============================================================
   Pebbii Journal — Coming Soon Styles
   ============================================================ */

/* @font-face */
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --primary:    #3D5A4C;
  --cream:      #E6D29F;
  --cream-light:#f0e6df7e;
  --off-white:  #F6F8F6;
  --dark:       #3D5A4C;
  --terra-1:    #E6D29F;
  --terra-2:    #E6D29F;

  --font: 'Satoshi', 'Georgia', serif;
  --radius-pill: 9999px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
  padding-inline: clamp(20px, 6vw, 48px);
}

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Notify page ─────────────────────────────────────────── */
.notify-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.notify-main {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-block: clamp(60px, 10vw, 100px);
}

/* Decorative blobs */
.notify-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.notify-blob--1 {
  width: clamp(400px, 60vw, 700px);
  height: clamp(400px, 60vw, 700px);
  background: radial-gradient(ellipse, var(--cream) 0%, transparent 70%);
  top: -20%;
  right: -15%;
  opacity: 0.7;
}
.notify-blob--2 {
  width: clamp(250px, 40vw, 480px);
  height: clamp(250px, 40vw, 480px);
  background: radial-gradient(ellipse, var(--terra-1) 0%, transparent 70%);
  bottom: -10%;
  left: -10%;
  opacity: 0.2;
}

.notify-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

/* ── Logo ────────────────────────────────────────────────── */
.logo__img {
  height: clamp(68px, 8vw, 72px);
  width: auto;
  display: block;
}

/* ── Badge ───────────────────────────────────────────────── */
.notify-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 15px;
  background: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(61,90,76,0.25);
}
.notify-badge__dot {
  width: 10px;
  height: 10px;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.notify-badge__dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.3;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.3; }
  70%  { transform: scale(2.2); opacity: 0;   }
  100% { transform: scale(2.2); opacity: 0;   }
}

/* ── Headline ────────────────────────────────────────────── */
.notify-headline {
  font-size: clamp(44px, 9vw, 80px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--dark);
}
.notify-headline em {
  font-style: normal;
  color: var(--primary);
}

/* ── Tagline ─────────────────────────────────────────────── */
.notify-tagline {
  font-size: clamp(16px, 2.5vw, 19px);
  font-weight: 400;
  color: #4A6358;
  line-height: 1.65;
  max-width: 480px;
}

/* ── Notify form ─────────────────────────────────────────── */
.notify-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 460px;
}

.notify-form__row {
  display: flex;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 6px;
  box-shadow: 0 2px 16px rgba(30,47,37,0.10), 0 0 0 1px rgba(30,47,37,0.06);
  gap: 4px;
}

.notify-form__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  outline: none;
  min-width: 0;
}
.notify-form__input::placeholder { color: #9AB0A5; }

.notify-form__btn {
  flex-shrink: 0;
  padding: 11px 24px;
  background: var(--terra-1);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.notify-form__btn:hover { background: var(--primary); transform: scale(1.02); }
.notify-form__btn:active { transform: scale(0.97); }

.notify-form__note {
  font-size: 13px;
  color: #7A9A8A;
  padding-left: 4px;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer--minimal {
  background: var(--dark);
  padding-block: 24px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.footer__copy {
  font-size: 13px;
  color: var(--off-white);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.footer__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(246,248,246,0.45);
  transition: color var(--transition);
}
.footer__link:hover { 
  color: var(--off-white);
}

.footer__legal {
  font-size: 12px;
  color: var(--off-white);
  line-height: 1.6;
}
