:root {
  --cream: #FFF9F4;
  --charcoal: #1F2328;
  --ink: #2D3035;
  --muted: #4E545B;
  --soft-muted: #5F646B;
  --dusty-blush: #B96F73;
  --soft-blush: #F7D7E8;
  --warm-gold: #FFF0B8;
  --soft-blue: #8ECDF6;
  --blue-text: #0C6A93;
  --line: #EFE4DC;
  --field-line: #E8DCD3;
  --white: #FFFFFF;
  --shadow-xl: 0 24px 72px rgba(31, 35, 40, 0.14);
  --shadow-sm: 0 8px 24px rgba(31, 35, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input {
  font: inherit;
}

.page {
  min-height: 100vh;
  background: var(--cream);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.brand-name,
.brand-subtitle {
  margin: 0;
}

.brand-name {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.brand-subtitle {
  margin-top: 7px;
  color: var(--dusty-blush);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: var(--white);
  box-shadow: var(--shadow-xl);
}

.left-panel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  padding: 64px;
}

.gradient-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, var(--soft-blush) 0%, transparent 30%),
    radial-gradient(circle at 88% 0%, var(--warm-gold) 0%, transparent 23%),
    radial-gradient(circle at 80% 78%, var(--soft-blue) 0%, transparent 28%);
  opacity: 0.9;
}

.left-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 512px;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.coming-soon {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--blue-text);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

h1 {
  max-width: 768px;
  margin: 0;
  color: var(--charcoal);
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.intro {
  max-width: 672px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-card {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.mini-icon {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.mini-icon.blush {
  color: var(--dusty-blush);
}

.mini-card h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 900;
}

.mini-card p:last-child {
  margin: 9px 0 0;
  color: var(--soft-muted);
  font-size: 12px;
  line-height: 1.55;
}

.right-panel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: cover;
  object-position: center top;
}

.image-gradient {
  position: absolute;
  inset: 0;
  background: transparent;
}

.signup-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 640px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  padding-top: 390px;
}

.signup-card {
  border-radius: 32px;
  background: rgba(255, 249, 244, 0.95);
  padding: 26px 28px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(16px);
  transform: translateY(42px);
}

.signup-label {
  margin: 0 0 12px;
  color: var(--dusty-blush);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.signup-card h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.signup-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.signup-form {
  margin-top: 22px;
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 900;
}

.form-row {
  display: flex;
  gap: 12px;
}

input[type="email"] {
  min-width: 0;
  flex: 1;
  min-height: 52px;
  border: 1px solid var(--field-line);
  border-radius: 999px;
  background: var(--white);
  padding: 0 20px;
  color: var(--charcoal);
  outline: none;
}

input[type="email"]:focus {
  border-color: var(--dusty-blush);
  box-shadow: 0 0 0 4px rgba(185, 111, 115, 0.14);
}

button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
  padding: 0 28px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

button:hover {
  background: #343941;
  transform: translateY(-1px);
}

.microcopy {
  margin: 12px 0 0;
  color: #777;
  font-size: 11px;
  line-height: 1.45;
}

.form-message {
  min-height: 18px;
  margin: 12px 0 0;
  color: var(--dusty-blush);
  font-size: 13px;
  font-weight: 800;
}

.hidden-field {
  display: none;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .container {
    padding: 24px;
  }

  h1 {
    font-size: 60px;
  }

  .left-panel {
    padding: 48px;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 16px;
  }

  .header,
  .footer {
    align-items: flex-start;
    border-radius: 28px;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-card {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }

  .left-panel {
    min-height: auto;
    padding: 32px;
  }

  .left-content {
    min-height: auto;
  }

  h1 {
    font-size: 46px;
  }

  .intro {
    font-size: 17px;
  }

  .mini-cards {
    grid-template-columns: 1fr;
  }

  .right-panel {
    min-height: auto;
  }

  .hero-image {
    position: relative;
    height: 360px;
  }

  .image-gradient {
    display: none;
  }

  .signup-wrap {
    min-height: auto;
    padding: 24px;
    background: var(--charcoal);
  }

  .signup-card {
    transform: none;
  }

  .signup-card {
    padding: 26px;
  }

  .signup-card h2 {
    font-size: 34px;
  }

  .form-row {
    flex-direction: column;
  }

  button {
    width: 100%;
  }
}


.privacy-card {
  border: 1px solid var(--line);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-xl);
  padding: clamp(32px, 6vw, 72px);
}

.privacy-card h1 {
  max-width: 900px;
  margin-bottom: 18px;
}

.privacy-content {
  max-width: 900px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.privacy-content h2 {
  margin: 34px 0 10px;
  color: var(--charcoal);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.privacy-content p {
  margin: 0 0 18px;
}

.privacy-content a {
  color: var(--blue-text);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .privacy-card {
    border-radius: 30px;
    padding: 30px;
  }
}


/* Photo brightness update: no dark overlay on Rachel's image */
.hero-image {
  opacity: 1 !important;
  object-position: center top;
}

.image-gradient,
.image-overlay {
  background: transparent !important;
  display: none !important;
}


/* Final portrait update */
.hero-image {
  opacity: 1 !important;
  object-position: center top !important;
}

.image-gradient,
.image-overlay {
  background: transparent !important;
  display: none !important;
}
