@import url("data:text/css,");

:root {
  --ink: #18372f;
  --muted: #74807b;
  --cream: #f4f1e9;
  --card: rgba(255, 255, 255, 0.82);
  --line: rgba(24, 55, 47, 0.12);
  --coral: #ef765e;
  --mint: #b9ddd1;
  --yellow: #e7c86e;
  --shadow: 0 30px 80px rgba(42, 58, 49, 0.14), 0 2px 10px rgba(42, 58, 49, 0.05);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 26%, rgba(232, 199, 106, 0.12), transparent 27%),
    radial-gradient(circle at 81% 71%, rgba(172, 218, 202, 0.16), transparent 29%),
    var(--cream);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }

.ambient {
  position: fixed;
  z-index: -1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.ambient-one {
  top: -300px;
  right: 12%;
  background: rgba(255, 255, 255, 0.58);
}

.ambient-two {
  bottom: -350px;
  left: -110px;
  background: rgba(190, 222, 211, 0.2);
}

.topbar {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 31px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  text-decoration: none;
}

.brand-dot { color: var(--coral); }

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  animation: slowSpin 26s linear infinite;
}

.brand-mark span {
  position: absolute;
  width: 13px;
  height: 21px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.brand-mark span:nth-child(2) { transform: rotate(60deg); }
.brand-mark span:nth-child(3) { transform: rotate(120deg); }
.brand-mark span:nth-child(4) { transform: rotate(180deg); }
.brand-mark span:nth-child(5) { transform: rotate(240deg); }
.brand-mark span:nth-child(6) { transform: rotate(300deg); }

@keyframes slowSpin { to { transform: rotate(360deg); } }

.sound-pill {
  min-width: 128px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(24, 55, 47, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  color: #62716b;
  font-size: 12px;
  font-weight: 650;
  transition: 0.25s ease;
  backdrop-filter: blur(10px);
}

.sound-pill:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }
.sound-pill[aria-pressed="true"] { color: var(--ink); border-color: rgba(24,55,47,.24); }

.sound-bars { height: 15px; display: flex; align-items: center; gap: 2px; }
.sound-bars i { width: 2px; height: 5px; background: currentColor; border-radius: 4px; }
.sound-bars i:nth-child(2) { height: 10px; }
.sound-bars i:nth-child(3) { height: 7px; }
.sound-bars i:nth-child(4) { height: 12px; }
.sound-pill[aria-pressed="true"] .sound-bars i { animation: pulseBar .9s ease-in-out infinite alternate; }
.sound-pill[aria-pressed="true"] .sound-bars i:nth-child(2) { animation-delay: -.5s; }
.sound-pill[aria-pressed="true"] .sound-bars i:nth-child(3) { animation-delay: -.2s; }
.sound-pill[aria-pressed="true"] .sound-bars i:nth-child(4) { animation-delay: -.7s; }
@keyframes pulseBar { from { transform: scaleY(.45); } to { transform: scaleY(1); } }

.shell {
  width: min(1080px, calc(100% - 48px));
  min-height: calc(100vh - 164px);
  margin: 0 auto;
  padding: 35px 0 56px;
  display: grid;
  grid-template-columns: 1fr 436px;
  align-items: center;
  gap: 108px;
}

.intro { padding: 4px 0 0 8px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  color: #71817b;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.eyebrow span { width: 31px; height: 1px; background: #94aaa2; }

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(61px, 6.2vw, 86px);
  font-weight: 400;
  letter-spacing: -4px;
  line-height: .9;
}

h1 span { color: var(--coral); }

.lead {
  max-width: 440px;
  margin: 29px 0 28px;
  color: #6b7974;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

.feature-row {
  display: flex;
  gap: 38px;
  margin-bottom: 32px;
}

.feature-row article { display: flex; align-items: center; gap: 11px; }
.feature-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(24,55,47,.14);
  border-radius: 50%;
  color: #688179;
  font-size: 12px;
}
.line-icon { font-size: 18px; }
.feature-row strong, .feature-row small { display: block; }
.feature-row strong { margin-bottom: 2px; font-size: 11px; letter-spacing: .2px; }
.feature-row small { color: #8b9591; font-size: 9px; }

.quote-card {
  position: relative;
  width: 330px;
  padding: 15px 21px 14px 49px;
  border-left: 1px solid rgba(24, 55, 47, .18);
}

.quote-mark {
  position: absolute;
  top: 9px;
  left: 16px;
  color: #c7d2ce;
  font-family: Georgia, serif;
  font-size: 35px;
}

blockquote {
  margin: 0;
  color: #4e625b;
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
  line-height: 1.55;
}

.quote-sign { display: block; margin-top: 5px; color: #a0aaa6; font-size: 8px; }

.auth-card {
  position: relative;
  min-height: 575px;
  padding: 10px 46px 36px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 29px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 31px;
  border-bottom: 1px solid var(--line);
}

.tab {
  position: relative;
  height: 49px;
  border: 0;
  background: transparent;
  color: #8d9693;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.tab::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 2px;
  border-radius: 3px;
  background: transparent;
  transition: .25s ease;
}

.tab.active { color: var(--ink); }
.tab.active::after { background: var(--ink); }

.form-panel { animation: panelIn .36s ease both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } }
.hidden { display: none !important; }

.card-heading { text-align: center; margin-bottom: 27px; }
.card-heading.compact { margin-bottom: 20px; }
.card-heading h2, .success-view h2, .dashboard-view h2 {
  margin: 11px 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -.7px;
}
.card-heading p, .success-view p, .dashboard-view > p {
  margin: 0;
  color: #89928f;
  font-size: 10px;
  line-height: 1.6;
}

.mini-orbit {
  position: relative;
  display: inline-block;
  width: 29px;
  height: 29px;
}
.mini-orbit i { position: absolute; inset: 3px 10px; border: 1px solid #78938a; border-radius: 50%; }
.mini-orbit i:nth-child(2) { transform: rotate(60deg); }
.mini-orbit i:nth-child(3) { transform: rotate(120deg); }
.mini-orbit.coral i { border-color: var(--coral); }

form > label, .label-row label {
  display: block;
  margin: 0 0 7px 2px;
  color: #50635d;
  font-size: 9px;
  font-weight: 750;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.label-row label { margin-bottom: 7px; }

.text-button {
  margin: 0 2px 7px 0;
  padding: 0;
  border: 0;
  background: none;
  color: #7c8c86;
  cursor: pointer;
  font-size: 8px;
}

.input-wrap { position: relative; }
.input-wrap + label { margin-top: 14px; }

.input-wrap input {
  width: 100%;
  height: 43px;
  padding: 0 40px 0 41px;
  border: 1px solid #dde1dd;
  border-radius: 10px;
  outline: none;
  background: rgba(255,255,255,.76);
  color: var(--ink);
  font-size: 11px;
  transition: .2s ease;
}

.input-wrap input::placeholder { color: #b1b8b5; }
.input-wrap input:focus { border-color: #79948b; box-shadow: 0 0 0 3px rgba(121,148,139,.11); background: white; }
.input-wrap input.invalid { border-color: #df715e; box-shadow: 0 0 0 3px rgba(223,113,94,.09); }

.input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 1;
  color: #9aa7a2;
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}
.input-icon.lock { font-size: 17px; transform: translateY(-53%) rotate(180deg); }

.password-toggle {
  position: absolute;
  top: 50%;
  right: 13px;
  border: 0;
  background: transparent;
  color: #a3aca8;
  cursor: pointer;
  font-size: 11px;
  transform: translateY(-50%);
}

.password-meter { display: flex; gap: 4px; margin: 6px 2px 0; }
.password-meter i { width: 25%; height: 2px; border-radius: 3px; background: #e3e6e3; transition: .2s; }
.password-meter[data-score="1"] i:nth-child(-n+1) { background: #df715e; }
.password-meter[data-score="2"] i:nth-child(-n+2) { background: #e6bc61; }
.password-meter[data-score="3"] i:nth-child(-n+3) { background: #83b6a6; }
.password-meter[data-score="4"] i { background: #477f6f; }

.primary-button, .secondary-button {
  width: 100%;
  height: 43px;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  transition: .2s ease;
}

.primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 20px;
  background: var(--ink);
  box-shadow: 0 9px 24px rgba(24,55,47,.17);
  color: white;
}

.primary-button:hover { transform: translateY(-1px); box-shadow: 0 12px 27px rgba(24,55,47,.22); }
.primary-button:disabled { opacity: .6; cursor: wait; transform: none; }
.coral-button { background: var(--coral); box-shadow: 0 9px 24px rgba(239,118,94,.17); }

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 19px 0 14px;
  color: #a5ada9;
  font-size: 8px;
}
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: #e1e4e1; }

.social-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.social-button {
  height: 38px;
  border: 1px solid #e0e3e0;
  border-radius: 9px;
  background: rgba(255,255,255,.66);
  cursor: pointer;
  font-size: 9px;
  font-weight: 650;
  transition: .2s;
}
.social-button:hover { border-color: #b8c3bf; background: #fff; }
.social-button span { margin-right: 8px; font-weight: 800; }
.google-icon { color: #4285f4; }
.apple-icon { color: #152820; font-size: 10px; }

.switch-copy, .terms {
  margin: 18px 0 0;
  text-align: center;
  color: #929b97;
  font-size: 8px;
}
.switch-copy button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(24,55,47,.25);
  background: none;
  color: var(--ink);
  cursor: pointer;
  font-size: inherit;
  font-weight: 750;
}
.terms { margin-top: 11px; line-height: 1.5; }
.terms a { color: #637a72; }

.success-view, .dashboard-view {
  min-height: 515px;
  padding: 72px 8px 15px;
  text-align: center;
  animation: panelIn .4s ease;
}

.success-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 25px;
  padding: 8px;
  border: 1px solid rgba(78,130,113,.25);
  border-radius: 50%;
}
.success-icon span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #dbece6;
  color: #477f6f;
  font-size: 25px;
}
.success-kicker { color: #82928c; font-size: 9px; font-weight: 800; letter-spacing: 1.7px; text-transform: uppercase; }
.success-view h2, .dashboard-view h2 { margin-top: 12px; font-size: 30px; }
.success-view p, .dashboard-view > p { max-width: 280px; margin: 10px auto 27px; font-size: 11px; }
.link-button { text-decoration: none; }
.success-view .primary-button { margin-top: 0; }
.secondary-button { margin-top: 11px; border: 1px solid #d9dedb; background: rgba(255,255,255,.68); color: #61736c; }
.secondary-button:hover { background: #fff; border-color: #bcc8c3; }

.dashboard-view { padding-top: 57px; }
.user-badge {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 21px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(24,55,47,.2);
  color: white;
  font-family: Georgia, serif;
  font-size: 25px;
}
.dashboard-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 31px 0 20px;
  padding: 16px;
  border: 1px solid #e0e4e1;
  border-radius: 13px;
  background: rgba(255,255,255,.58);
  text-align: left;
}
.dashboard-note > span { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; background: #f4ead2; color: #b99542; }
.dashboard-note strong, .dashboard-note small { display: block; }
.dashboard-note strong { margin-bottom: 4px; font-size: 10px; }
.dashboard-note small { color: #89938f; font-size: 9px; }

.toast {
  position: absolute;
  right: 25px;
  bottom: 20px;
  left: 25px;
  z-index: 10;
  padding: 12px 16px;
  border-radius: 10px;
  background: #17372f;
  box-shadow: 0 12px 30px rgba(24,55,47,.22);
  color: white;
  font-size: 10px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: #a74e3f; }

footer {
  width: min(1180px, calc(100% - 48px));
  min-height: 62px;
  margin: 0 auto;
  border-top: 1px solid rgba(24,55,47,.09);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #9ba39f;
  font-size: 8px;
}
footer nav { justify-self: end; display: flex; gap: 25px; }
footer a { text-decoration: none; }
.footer-note { display: flex; align-items: center; gap: 8px; }
.footer-note i { width: 5px; height: 5px; border-radius: 50%; background: #82a89a; box-shadow: 0 0 0 4px rgba(130,168,154,.12); }

@media (max-width: 930px) {
  .shell { grid-template-columns: 1fr 420px; gap: 45px; }
  .intro { padding-left: 0; }
  .feature-row { gap: 16px; flex-direction: column; }
}

@media (max-width: 760px) {
  .topbar { width: min(100% - 32px, 480px); padding-top: 22px; }
  .shell { width: min(100% - 32px, 480px); display: block; padding: 35px 0 45px; }
  .intro { text-align: center; }
  .eyebrow { justify-content: center; }
  .lead { margin-right: auto; margin-left: auto; }
  .feature-row { flex-direction: row; justify-content: center; margin: 26px 0; text-align: left; }
  .quote-card { display: none; }
  .auth-card { margin-top: 43px; }
  footer { width: min(100% - 32px, 480px); grid-template-columns: 1fr 1fr; }
  .footer-note { display: none; }
}

@media (max-width: 480px) {
  .brand { font-size: 24px; }
  .sound-pill { min-width: 108px; padding: 0 11px; }
  h1 { font-size: 59px; }
  .lead { font-size: 15px; }
  .feature-row { gap: 15px; }
  .feature-row article { gap: 8px; }
  .auth-card { min-height: 560px; padding: 9px 25px 28px; border-radius: 24px; }
  .card-heading { margin-bottom: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
