/* The signup section, and the footer.
 *
 * Not in the ported page: there, both calls to action were <Link href="/dashboard">
 * inside a Next app that already knew who you were. Here the account is made
 * on this page and the browser is handed to the builder, so this is the only
 * part with its own styling — written to sit inside the ported aesthetic
 * (glass card on near-black, green accent, Geist) rather than beside it.
 */

.startSection {
  display: block;
  width: min(100%, 1080px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(4rem, 9vw, 7rem) 0;
  font-family: var(--font-geist), sans-serif;
}

.startInner {
  width: min(100%, 26rem);
  margin: 0 auto;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 2rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(15, 15, 15, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 35px 90px rgba(0, 0, 0, 0.32);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  text-align: left;
}

.startInner h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.startLede {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------- google */
.googleBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  padding: 0.85rem 1.4rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}
.googleBtn:hover { border-color: rgba(255, 255, 255, 0.5); }
.googleBtn:focus-visible { outline: 2px solid #4ade80; outline-offset: 3px; }
.googleBtn svg { flex: none; }

.startOr {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.5rem 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.startOr::before,
.startOr::after {
  content: "";
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* ----------------------------------------------------------------- form */
.startForm { display: grid; gap: 0.5rem; }

.startForm label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.startForm input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.8rem 0.95rem;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
}
.startForm input::placeholder { color: rgba(255, 255, 255, 0.32); }
.startForm input:focus-visible {
  outline: none;
  border-color: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
}
.startForm input + label { margin-top: 0.6rem; }

.startForm button {
  margin-top: 1rem;
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  padding: 0.9rem 1.4rem;
  color: #062012;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter 160ms ease;
}
.startForm button:hover { filter: brightness(1.07); }
.startForm button:disabled { opacity: 0.65; cursor: default; }
.startForm button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* Nothing to say until something goes wrong, so it takes no space until then. */
.startProblem {
  display: none;
  margin: 1rem 0 0;
  border-left: 2px solid #f0b429;
  border-radius: 0 0.5rem 0.5rem 0;
  background: rgba(240, 180, 41, 0.1);
  padding: 0.7rem 0.9rem;
  color: #f7dca4;
  font-size: 0.87rem;
  line-height: 1.5;
}
.startProblem.shown { display: block; }

.startSignin {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-align: center;
}
.startSignin a { color: #4ade80; text-decoration: none; }
.startSignin a:hover { text-decoration: underline; }

/* --------------------------------------------------------------- footer */
.siteFoot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  width: min(100%, 1080px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.25rem 0 3rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-geist), sans-serif;
  font-size: 0.82rem;
}
.siteFoot a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.siteFoot a:hover { color: #4ade80; }

@media (max-width: 640px) {
  .startInner { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .googleBtn, .startForm button { transition: none; }
}

/* --------------------------------------------------------------- section body */
/* The ported page was nine headlines and almost no prose: every section
 * asserted something and showed a picture, and nothing explained how any of it
 * worked. One sentence each, on the three sections that carry the argument. */
.sectionBody {
  margin: 1.25rem 0 0;
  font-family: var(--font-geist), sans-serif;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.65;
}

/* ---------------------------------------------------------------------- price */
/* It asked strangers to make an account for a $20/month product without ever
 * saying so: the words "$20", "per month" and "pricing" appeared zero times. */
.priceSection {
  width: min(100%, 1080px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(4rem, 9vw, 7rem) 0;
  font-family: var(--font-geist), sans-serif;
}

.priceInner { width: min(100%, 40rem); margin: 0 auto; }

.priceInner h2 {
  margin: 0 0 2.5rem;
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.priceCard {
  display: grid;
  gap: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 2px solid #4ade80;
  border-radius: 1.75rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(15, 15, 15, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 35px 90px rgba(0, 0, 0, 0.32);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
@media (min-width: 40rem) {
  .priceCard { grid-template-columns: auto 1fr; gap: 3rem; align-items: start; }
}

.priceAmount {
  font-size: clamp(2.75rem, 2rem + 3vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.priceAmount small {
  display: block;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.priceList { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.85rem; }
.priceList li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}
.priceList li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #4ade80;
}
.priceList b { font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }

.priceTrial {
  margin: 1.75rem 0 0;
  border-left: 2px solid #4ade80;
  border-radius: 0 0.5rem 0.5rem 0;
  background: rgba(74, 222, 128, 0.08);
  padding: 0.8rem 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}
.priceTrial b { color: #fff; }

.priceFree {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ---------------------------------------------------------------- proof */
/* The page made five claims about what comes out and could not show one,
   because nothing had ever been published. Now it can. */
.proof { margin: 1.25rem 0 0; font-family: var(--font-geist), sans-serif; font-size: 0.92rem; }
.proof a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 222, 128, 0.45);
  padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease;
}
.proof a:hover { color: #4ade80; border-bottom-color: #4ade80; }
.proofInline a { color: #4ade80; text-decoration: none; border-bottom: 1px solid rgba(74, 222, 128, 0.4); }
.proofInline a:hover { border-bottom-color: #4ade80; }
