:root {
  color-scheme: light;
  --ink: #21161d;
  --muted: #71666c;
  --paper: #fffaf2;
  --panel: #ffffff;
  --maroon: #2f172c;
  --rose: #a84a5d;
  --coral: #d77968;
  --teal: #0c756d;
  --indigo: #17324d;
  --gold: #d5a13f;
  --line: #eee2d6;
  --shadow: 0 18px 42px rgba(65, 38, 51, 0.11);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 5vw, 72px);
  color: #ffffff;
}

.site-header.compact,
.plain-page .site-header {
  position: sticky;
  color: var(--ink);
  background: rgba(255, 249, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-subline {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
  color: #a7f3d0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: lowercase;
  text-shadow: 0 2px 16px rgba(32, 21, 29, 0.34);
}

.wordmark span {
  color: #91ddbc;
}

.wordmark span:nth-child(3n) {
  color: #5fcfa9;
}

.wordmark .dot {
  color: #e1b35b;
  margin-left: 0.01em;
  margin-right: 0.01em;
}

.wordmark .domain {
  color: #e16f78;
}

.plain-page .wordmark {
  text-shadow: none;
}

.plain-page .wordmark span {
  color: var(--teal);
}

.plain-page .wordmark span:nth-child(3n) {
  color: #169b8d;
}

.plain-page .wordmark .dot {
  color: var(--gold);
}

.plain-page .wordmark .domain {
  color: var(--rose);
}

.brand small {
  color: currentColor;
  font-size: 0.75rem;
  font-weight: 750;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: rgba(255, 250, 242, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(23, 13, 20, 0.16);
  backdrop-filter: blur(18px);
}

.plain-page .site-nav {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.site-nav a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.plain-page .site-nav a:hover,
.plain-page .site-nav a:focus-visible {
  background: #f7efe5;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 34px);
  min-height: clamp(620px, 76svh, 780px);
  align-items: center;
  padding: 112px clamp(20px, 5vw, 72px) 70px;
  overflow: hidden;
  color: #ffffff;
  background: #211722 url("hero-pelli-choopulu-youthful.png") 51% 46% / 96% auto no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 16, 23, 0.92) 0%, rgba(44, 28, 39, 0.58) 20%, rgba(12, 74, 66, 0.03) 48%),
    linear-gradient(0deg, rgba(24, 16, 23, 0.16), rgba(24, 16, 23, 0.01));
}

.hero-content {
  position: relative;
  max-width: 380px;
}

.hero-auth {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: start;
  grid-column: 1;
  width: min(100%, 360px);
  margin-top: 10px;
  margin-bottom: clamp(0px, 2vw, 22px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 380px;
  font-size: clamp(2.15rem, 3.05vw, 3.25rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  letter-spacing: -0.005em;
}

h3 {
  font-size: 1.25rem;
}

p {
  line-height: 1.65;
}

.hero-copy {
  max-width: 360px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.18vw, 1.1rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #27111d;
  background: linear-gradient(135deg, #f5c968, #ed9c70 54%, #dd7a8c);
  box-shadow: 0 12px 24px rgba(169, 74, 93, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 16px 30px rgba(169, 74, 93, 0.24);
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
}

.button.full-width {
  width: 100%;
}

.section {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p,
.split-section p,
.waitlist-copy p,
.legal-shell p {
  color: var(--muted);
}

.intro-band {
  background:
    radial-gradient(circle at 86% 4%, rgba(12, 117, 109, 0.1), transparent 32%),
    linear-gradient(180deg, #fffaf2, #fff6ec);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover {
  border-color: #e1d1c5;
  box-shadow: 0 22px 48px rgba(65, 38, 51, 0.13);
  transform: translateY(-2px);
}

.feature-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #0c756d, #a84a5d);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 850;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.trust-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 100%, rgba(213, 161, 63, 0.18), transparent 28%),
    linear-gradient(135deg, #251923, #173f46 58%, #0d5e58);
}

.trust-section p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.trust-list div:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.trust-list span {
  color: rgba(255, 255, 255, 0.74);
}

.culture-section {
  background:
    radial-gradient(circle at 8% 14%, rgba(168, 74, 93, 0.09), transparent 28%),
    radial-gradient(circle at 90% 82%, rgba(213, 161, 63, 0.12), transparent 30%),
    #fffaf2;
}

.pill-grid {
  display: flex;
  max-width: 980px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 0;
}

.pill-grid span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: #392233;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 760;
  box-shadow: 0 10px 22px rgba(65, 38, 51, 0.05);
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 480px);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 184, 77, 0.22), transparent 34%),
    linear-gradient(180deg, #fff4e6, #fff9f2);
}

.waitlist-form {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.auth-card {
  display: grid;
  gap: 9px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(24, 16, 23, 0.2);
  backdrop-filter: blur(18px);
}

.auth-card h2 {
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
  line-height: 1.08;
}

.card-kicker {
  margin: 0;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.phone-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 8px;
}

label {
  color: var(--maroon);
  font-size: 0.9rem;
  font-weight: 780;
}

input,
select {
  min-height: 40px;
  width: 100%;
  padding: 0 12px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid #e2d5ca;
  border-radius: 8px;
  font: inherit;
}

input:focus,
select:focus {
  border-color: var(--rose);
  outline: 3px solid rgba(168, 74, 93, 0.13);
}

.consent {
  margin: 4px 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.compliance-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.38;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #21161d;
  text-align: center;
}

.site-footer p {
  max-width: 860px;
  margin: 8px 0 0;
  font-size: 0.92rem;
}

.footer-brand {
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #ffffff;
  font-weight: 800;
}

.site-footer a {
  text-decoration: none;
}

.footer-links {
  margin-top: 10px;
  color: #ffffff;
  font-weight: 800;
}

.legal-shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 88px;
}

.legal-shell h1 {
  font-size: clamp(2.5rem, 6vw, 4.7rem);
}

.legal-shell h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.updated {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-nav {
    max-width: 100%;
    overflow-x: auto;
  }

  .feature-grid,
  .split-section,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-auth {
    grid-column: auto;
    justify-self: stretch;
    width: min(100%, 420px);
  }

  .hero {
    min-height: 720px;
    align-items: end;
    padding-top: 150px;
    background-position: 46% 40%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(29, 9, 31, 0.78), rgba(53, 16, 48, 0.38)),
      linear-gradient(0deg, rgba(29, 9, 31, 0.72), rgba(29, 9, 31, 0.05));
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .wordmark {
    max-width: 100%;
    font-size: 0.98rem;
    letter-spacing: 0.025em;
  }

  .site-nav a {
    min-height: 32px;
    padding: 0 9px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 760px;
    background-position: 50% 36%;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .feature-card,
  .waitlist-form,
  .auth-card {
    padding: 20px;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }
}
