:root {
  --bg-base: #f6f1e6;
  --bg-elevated: #fffdf8;
  --panel: #ffffff;
  --text: #191d24;
  --muted: #625a4d;
  --muted-cool: #5b6572;
  --line: #e2d9c6;
  --line-strong: #cdbf9e;
  --ink: #12242b;
  --brand: #14424a;
  --brand-strong: #0b2c32;
  --highlight: #c1913f;
  --highlight-strong: #9c7128;
  --radius-lg: 26px;
  --radius-md: 16px;
  --shadow-soft: 0 24px 60px rgba(20, 26, 20, 0.12);
  --shadow-lift: 0 30px 70px rgba(20, 26, 20, 0.16);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 12% 0%, rgba(255, 250, 235, 0.9) 0%, transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(20, 66, 74, 0.08) 0%, transparent 46%),
    linear-gradient(180deg, #faf6ec 0%, var(--bg-base) 60%);
}

.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(18, 36, 43, 0.02) 0px,
      rgba(18, 36, 43, 0.02) 1px,
      transparent 1px,
      transparent 3px
    );
}

.page-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.4;
  z-index: 0;
  animation: drift 11s ease-in-out infinite alternate;
}

.page-glow-a {
  width: 320px;
  height: 320px;
  top: 3rem;
  right: 6%;
  background: rgba(20, 66, 74, 0.22);
}

.page-glow-b {
  width: 260px;
  height: 260px;
  bottom: 2rem;
  left: 2%;
  background: rgba(193, 145, 63, 0.28);
  animation-delay: 1.1s;
}

.shell {
  width: min(1160px, calc(100% - 2.5rem));
  margin: clamp(1.5rem, 3.4vw, 3.4rem) auto 2.6rem;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding: 0.4rem 0.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(165deg, #ffffff, #eef2ee);
  color: var(--brand);
  box-shadow: 0 6px 16px rgba(20, 66, 74, 0.14);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-sub {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 0.52rem 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted-cool);
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.lang-btn.active {
  background: var(--brand);
  color: #fff;
}

.card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, var(--bg-elevated));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.82fr);
  gap: clamp(1.2rem, 2.8vw, 2.6rem);
  padding: clamp(1.6rem, 3.6vw, 3.2rem);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 3px;
  background: linear-gradient(90deg, rgba(193, 145, 63, 0), var(--highlight), rgba(20, 66, 74, 0));
}

.hero-motif {
  position: absolute;
  top: -4rem;
  right: -3rem;
  width: 420px;
  height: 420px;
  color: var(--brand);
  opacity: 0.055;
  z-index: 0;
  pointer-events: none;
}

.hero-copy,
.waitlist-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0;
  color: var(--highlight-strong);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

h1 {
  margin: 0.7rem 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.01em;
  max-width: 15ch;
  color: var(--ink);
}

.lead {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.trust-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.trust-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #2c3530;
  font-size: 0.96rem;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: linear-gradient(160deg, #f4dfb2, var(--highlight));
  box-shadow: 0 0 0 4px rgba(193, 145, 63, 0.14);
}

.trust-list li::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.52rem;
  width: 0.42rem;
  height: 0.24rem;
  border-left: 1.6px solid #4a3411;
  border-bottom: 1.6px solid #4a3411;
  transform: rotate(-48deg);
  opacity: 0.75;
}

.signal-row {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.signal-row article {
  padding: 0.9rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.signal-label {
  margin: 0;
  font-size: 0.71rem;
  color: var(--muted-cool);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.signal-value {
  margin: 0.26rem 0 0;
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-display);
}

.waitlist-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #fbf8f0);
  padding: 1.5rem;
  align-self: start;
  box-shadow: var(--shadow-lift);
}

.waitlist-panel::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--brand), var(--highlight));
}

.panel-kicker {
  margin: 0.4rem 0 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--highlight-strong);
  font-weight: 800;
}

h2 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.008em;
  color: var(--ink);
}

.waitlist {
  margin-top: 1.1rem;
}

.waitlist-label {
  display: block;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a3327;
}

.waitlist-row {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.5rem;
}

.waitlist-row input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 0.86rem 0.95rem;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-row input::placeholder {
  color: #9a9082;
}

.waitlist-row input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(20, 66, 74, 0.14);
}

.waitlist-row button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 12px;
  padding: 0.86rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: #241a06;
  background: linear-gradient(180deg, #e3bb70, var(--highlight));
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(193, 145, 63, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.waitlist-row button .btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.waitlist-row button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(193, 145, 63, 0.42);
}

.waitlist-row button:hover .btn-arrow {
  transform: translateX(2px);
}

.waitlist-row button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.waitlist-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.45;
}

.waitlist-note .note-icon {
  flex: none;
  width: 14px;
  height: 14px;
  color: var(--brand);
  opacity: 0.75;
}

.waitlist-feedback {
  min-height: 1.2em;
  margin: 0.4rem 0 0;
  font-size: 0.83rem;
  color: var(--brand);
  font-weight: 600;
}

.contact {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: #6b6153;
  font-size: 0.84rem;
}

.feature-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.feature-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.3rem 1.2rem;
  background: #fefdf9;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 40px rgba(20, 40, 40, 0.1);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  background: linear-gradient(160deg, #eef4f0, #e2ede8);
  color: var(--brand);
  margin-bottom: 0.7rem;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-index {
  position: absolute;
  top: 1.3rem;
  right: 1.2rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: #b3ab9a;
  letter-spacing: 0.09em;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.008em;
  color: var(--ink);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.92rem;
}

.footnote {
  margin-top: 1.6rem;
  text-align: center;
  color: #766c5c;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.footnote-badges {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.footnote-badges span {
  padding: 0.32rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--muted-cool);
  background: rgba(255, 255, 255, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 680ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 0.08s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.32s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(14px, -16px, 0) scale(1.08);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-motif {
    display: none;
  }

  .waitlist-panel {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(1160px, calc(100% - 1.1rem));
    margin-top: 1.1rem;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .hero {
    padding: 1.1rem;
    gap: 1rem;
  }

  h1 {
    font-size: clamp(1.75rem, 8.2vw, 2.4rem);
  }

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

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

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

  .waitlist-row button {
    width: 100%;
    justify-content: center;
  }

  .footnote-badges {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
