/* [project]/src/app/start/start.css [app-client] (css) */
html:has(.eb-start) {
  background: #fff5ea;
}

.eb-start {
  --bg: #fff5ea;
  --surface: #fff;
  --ink: #2a1206;
  --coral: #ff5a3c;
  --coral-d: #d8431f;
  --yellow: #ffd23f;
  --green: #22a36b;
  --muted: #6e4a38;
  --subtle: #9a5b42;
  --border: #2a1206;
  --cream2: #fffaf3;
  --peach: #ffe2d3;
  --peachline: #ffd9c6;
  --accent: var(--coral);
  background: var(--bg);
  color: var(--ink);
  min-height: 100dvh;
  font-family: Plus Jakarta Sans, system-ui, sans-serif;
}

.eb-start *, .eb-start :before, .eb-start :after {
  box-sizing: border-box;
}

.eb-start button {
  cursor: pointer;
  font-family: inherit;
}

@keyframes eb-start-fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes eb-start-pop {
  0% {
    transform: scale(.96);
  }

  60% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes eb-start-spin {
  to {
    transform: rotate(360deg);
  }
}

.eb-start .topbar {
  z-index: 20;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border);
  background: #fff5eaeb;
  position: sticky;
  top: 0;
}

.eb-start .topbar-in {
  align-items: center;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
}

.eb-start .logo {
  color: var(--ink);
  align-items: center;
  gap: 8px;
  font-family: Bricolage Grotesque;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.eb-start .logo .mark {
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--border);
  width: 30px;
  height: 30px;
  box-shadow: 2px 2px 0 var(--border);
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  display: flex;
}

.eb-start .toplink {
  color: var(--muted);
  background: none;
  border: none;
  margin-left: auto;
  padding: 4px;
  font: 700 12px Plus Jakarta Sans;
  text-decoration: underline;
}

.eb-start .progress-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 14px 20px 0;
}

.eb-start .progress-row {
  align-items: center;
  gap: 12px;
  display: flex;
}

.eb-start .back {
  border: 2px solid var(--border);
  width: 34px;
  height: 34px;
  box-shadow: 2px 2px 0 var(--border);
  color: var(--ink);
  background: #fff;
  border-radius: 11px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font: 800 15px Bricolage Grotesque;
  display: flex;
}

.eb-start .back:disabled {
  opacity: .35;
  box-shadow: none;
  cursor: default;
}

.eb-start .track {
  background: var(--peach);
  border: 2px solid var(--border);
  border-radius: 99px;
  flex: 1;
  height: 9px;
  overflow: hidden;
}

.eb-start .fill {
  background: var(--green);
  border-radius: 99px;
  height: 100%;
  transition: width .45s cubic-bezier(.4, 1.3, .5, 1);
}

.eb-start .stepn {
  color: var(--subtle);
  white-space: nowrap;
  font: 700 12px Plus Jakarta Sans;
}

.eb-start .stage {
  max-width: 640px;
  margin: 0 auto;
  padding: 26px 20px 60px;
}

.eb-start .screen {
  animation: .35s both eb-start-fadeUp;
}

.eb-start .eyebrow {
  background: var(--peach);
  color: var(--coral-d);
  border: 1.5px solid #ffb38f;
  border-radius: 99px;
  margin-bottom: 16px;
  padding: 6px 14px;
  font: 700 12px Plus Jakarta Sans;
  display: inline-block;
}

.eb-start h1.q {
  letter-spacing: -.02em;
  margin: 0 0 8px;
  font-family: Bricolage Grotesque;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.12;
}

.eb-start .sub {
  color: var(--muted);
  margin: 0 0 22px;
  font: 400 15px / 1.5 Plus Jakarta Sans;
}

.eb-start .opts {
  flex-direction: column;
  gap: 11px;
  display: flex;
}

.eb-start .opt {
  text-align: left;
  background: var(--surface);
  border: 2px solid var(--border);
  color: var(--ink);
  box-shadow: 4px 5px 0 var(--border);
  border-radius: 16px;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  font: 600 15.5px Plus Jakarta Sans;
  transition: transform .12s, box-shadow .12s, background .12s;
  display: flex;
}

.eb-start .opt:hover {
  box-shadow: 5px 6px 0 var(--border);
  transform: translateY(-2px);
}

.eb-start .opt.sel {
  background: var(--accent);
  color: #fff;
}

.eb-start .opt .oemoji {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
}

.eb-start .field {
  background: var(--surface);
  border: 2px solid var(--border);
  width: 100%;
  color: var(--ink);
  box-shadow: 4px 5px 0 var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  padding: 15px 17px;
  font: 500 16px Plus Jakarta Sans;
}

.eb-start .field:focus {
  border-color: var(--coral);
  outline: none;
}

.eb-start .fieldnote {
  color: var(--subtle);
  margin: -2px 0 14px 6px;
  font: 500 12px Plus Jakarta Sans;
}

.eb-start .field.invalid {
  border-color: var(--coral-d);
  margin-bottom: 6px;
}

.eb-start .fielderror {
  color: var(--coral-d);
  gap: 6px;
  margin: 0 0 14px 6px;
  font: 600 12.5px / 1.45 Plus Jakarta Sans;
  display: flex;
}

.eb-start .fielderror:before {
  content: "!";
  background: var(--coral-d);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font: 800 11px Plus Jakarta Sans;
  display: inline-flex;
}

.eb-start .cta {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--border);
  width: 100%;
  box-shadow: 5px 6px 0 var(--border);
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 16px 24px;
  font: 800 17px Plus Jakarta Sans;
  transition: transform .12s, box-shadow .12s;
  display: inline-flex;
}

.eb-start .cta:hover {
  box-shadow: 6px 7px 0 var(--border);
  transform: translateY(-2px);
}

.eb-start .cta:disabled {
  opacity: .4;
  box-shadow: none;
  cursor: default;
  transform: none;
}

.eb-start .cta.ghost {
  color: var(--ink);
  background: #fff;
}

.eb-start .cta.green {
  background: var(--green);
}

.eb-start .linkbtn {
  text-align: center;
  width: 100%;
  color: var(--subtle);
  background: none;
  border: none;
  margin-top: 14px;
  font: 600 13px Plus Jakarta Sans;
  text-decoration: underline;
  display: block;
}

.eb-start .linkbtn.emailopen {
  color: var(--muted);
  margin-top: 18px;
  font-size: 15px;
}

.eb-start .consent {
  color: var(--muted);
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 10px;
  font: 500 12.5px / 1.5 Plus Jakarta Sans;
  display: flex;
}

.eb-start .consent input {
  width: 20px;
  height: 20px;
  accent-color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.eb-start .consent a {
  color: var(--coral-d);
}

.eb-start .consent.invalid {
  color: var(--coral-d);
  margin-bottom: 4px;
}

.eb-start .consent.invalid input {
  accent-color: var(--coral-d);
  outline: 2px solid var(--coral-d);
  outline-offset: 2px;
  border-radius: 4px;
}

.eb-start .consents {
  margin-top: 18px;
}

.eb-start .readychip {
  background: var(--peach);
  color: var(--coral-d);
  border: 1.5px solid var(--peachline);
  border-radius: 99px;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  padding: 6px 14px;
  font: 700 12px Plus Jakarta Sans;
  display: inline-flex;
}

.eb-start .cta.google {
  padding: 19px 24px;
  font-size: 18px;
}

.eb-start .emailblock {
  border-top: 1.5px solid var(--peachline);
  margin-top: 22px;
  padding-top: 20px;
}

.eb-start .authseg {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 999px;
  gap: 2px;
  margin-bottom: 14px;
  padding: 3px;
  display: inline-flex;
}

.eb-start .authseg button {
  color: var(--subtle);
  background: none;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font: 800 12px Plus Jakarta Sans;
}

.eb-start .authseg button.on {
  background: var(--green);
  color: #fff;
}

.eb-start .formerror {
  color: var(--coral-d);
  margin-top: 10px;
  font: 600 13px Plus Jakarta Sans;
}

.eb-start .divider {
  text-align: center;
  color: var(--subtle);
  margin: 14px 0 2px;
  font: 600 12px Plus Jakarta Sans;
}

.eb-start .loader {
  text-align: center;
  padding: 40px 0;
}

.eb-start .spinner {
  border: 5px solid var(--peach);
  border-top-color: var(--coral);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  animation: .8s linear infinite eb-start-spin;
}

.eb-start .loadmsg {
  color: var(--ink);
  font: 700 17px Bricolage Grotesque;
  animation: .3s both eb-start-fadeUp;
}

.eb-start .infocard {
  background: var(--surface);
  border: 2px solid var(--border);
  box-shadow: 6px 7px 0 var(--border);
  border-radius: 20px;
  margin-bottom: 8px;
  padding: 26px;
}

.eb-start .infocard .ico {
  margin-bottom: 12px;
  font-size: 40px;
}

.eb-start .chips {
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 4px;
  display: flex;
}

.eb-start .chip {
  background: var(--cream2);
  border: 1.5px solid var(--peachline);
  color: var(--muted);
  border-radius: 99px;
  padding: 8px 14px;
  font: 700 12.5px Plus Jakarta Sans;
}

.eb-start .searchrow {
  align-items: stretch;
  gap: 10px;
  margin-bottom: 16px;
  display: flex;
}

.eb-start .search {
  flex: 1;
  position: relative;
}

.eb-start .search input {
  background: var(--surface);
  border: 2px solid var(--border);
  width: 100%;
  color: var(--ink);
  box-shadow: 4px 5px 0 var(--border);
  border-radius: 14px;
  padding: 14px 16px 14px 44px;
  font: 500 15px Plus Jakarta Sans;
}

.eb-start .search input:focus {
  border-color: var(--coral);
  outline: none;
}

.eb-start .search .ic {
  opacity: .55;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.eb-start .counter {
  white-space: nowrap;
  color: var(--muted);
  background: var(--cream2);
  border: 2px solid var(--peachline);
  border-radius: 14px;
  align-items: center;
  padding: 0 16px;
  font: 700 13px Plus Jakarta Sans;
  display: flex;
}

.eb-start .counter b {
  color: var(--coral-d);
  margin-left: 4px;
}

.eb-start .sgrid {
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  display: grid;
}

.eb-start .scard {
  text-align: left;
  background: var(--surface);
  border: 2px solid var(--border);
  box-shadow: 4px 5px 0 var(--border);
  color: var(--ink);
  border-radius: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding: 15px 16px;
  transition: transform .12s, box-shadow .12s, background .12s;
  display: flex;
  position: relative;
}

.eb-start .scard:hover {
  box-shadow: 5px 6px 0 var(--border);
  transform: translateY(-2px);
}

.eb-start .scard .se {
  font-size: 26px;
  line-height: 1;
}

.eb-start .scard .sl {
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font: 700 15px Plus Jakarta Sans;
  display: flex;
}

.eb-start .scard .rc {
  border: 2px solid var(--border);
  color: #0000;
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 23px;
  font-size: 12px;
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
}

.eb-start .scard.on {
  border-color: var(--green);
  box-shadow: 4px 5px 0 var(--green);
  background: #e7fbef;
}

.eb-start .scard.on .rc {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.eb-start .scard .seg {
  border: 2px solid var(--border);
  background: #fff;
  border-radius: 999px;
  gap: 2px;
  padding: 2px;
  display: inline-flex;
}

.eb-start .scard .seg .seg-b {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  color: var(--subtle);
  border-radius: 999px;
  padding: 4px 11px;
  font: 800 11px Plus Jakarta Sans;
  transition: background .15s, color .15s;
}

.eb-start .scard .seg .seg-b.on {
  background: var(--green);
  color: #fff;
}

.eb-start .scard .slock {
  color: var(--subtle);
  border: 1.5px solid var(--peachline);
  background: var(--cream2);
  border-radius: 999px;
  padding: 3px 9px;
  font: 700 11px Plus Jakarta Sans;
}

.eb-start .scard .sl .trk {
  white-space: nowrap;
  background: var(--cream2);
  border: 1.5px solid var(--peachline);
  color: var(--subtle);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 3px 9px;
  font: 800 11px Plus Jakarta Sans;
  display: inline-flex;
}

.eb-start .scard .sl .trk.r {
  color: var(--coral-d);
  background: #ffe9e3;
  border-color: #ffc9b8;
}

.eb-start .nores {
  text-align: center;
  color: var(--subtle);
  grid-column: 1 / -1;
  padding: 18px 0;
  font: 600 14px Plus Jakarta Sans;
}

.eb-start .ctabar {
  z-index: 10;
  padding: 12px 20px calc(16px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--bg) 72%, #fff5ea00);
  margin: 18px -20px -60px;
  position: sticky;
  bottom: 0;
}

.eb-start .tiles {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  display: grid;
}

.eb-start .tile {
  background: var(--surface);
  border: 2px solid var(--border);
  text-align: center;
  box-shadow: 4px 5px 0 var(--border);
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 8px;
  transition: transform .12s, box-shadow .12s, background .12s;
}

.eb-start .tile:hover {
  box-shadow: 5px 6px 0 var(--border);
  transform: translateY(-2px);
}

.eb-start .tile .tlab {
  font: 800 16px Bricolage Grotesque;
}

.eb-start .tile .ts {
  color: var(--subtle);
  margin-top: 2px;
  font: 600 11px Plus Jakarta Sans;
}

.eb-start .tile.sel {
  background: var(--accent);
  color: #fff;
}

.eb-start .tile.sel .ts {
  color: #ffe0d5;
}

.eb-start .cmp {
  background: var(--surface);
  border: 2px solid var(--border);
  box-shadow: 6px 7px 0 var(--border);
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
}

.eb-start .cmp-h {
  grid-template-columns: 1.15fr 1fr 1fr;
  display: grid;
}

.eb-start .cmp-h > div {
  text-align: center;
  border-bottom: 2px solid var(--border);
  padding: 13px 8px;
  font: 800 13px Plus Jakarta Sans;
}

.eb-start .cmp-h .e {
  background: var(--coral);
  color: #fff;
}

.eb-start .cmp-h .g {
  color: var(--muted);
  background: #eceaee;
}

.eb-start .cmp-r {
  border-bottom: 1.5px solid var(--peachline);
  grid-template-columns: 1.15fr 1fr 1fr;
  display: grid;
}

.eb-start .cmp-r:last-child {
  border-bottom: none;
}

.eb-start .cmp-r > div {
  align-items: center;
  gap: 5px;
  padding: 11px 9px;
  font: 600 12px / 1.3 Plus Jakarta Sans;
  display: flex;
}

.eb-start .cmp-r .lab {
  color: var(--muted);
  font-weight: 800;
}

.eb-start .cmp-r .ev {
  color: #14532d;
  background: #f2fbf6;
}

.eb-start .cmp-r .gv {
  color: #8a5b4a;
}

@media (max-width: 520px) {
  .eb-start h1.q {
    font-size: 26px;
  }

  .eb-start .tiles {
    grid-template-columns: 1fr 1fr;
  }

  .eb-start .cmp-r > div, .eb-start .cmp-h > div {
    padding: 9px 6px;
    font-size: 11px;
  }
}

@keyframes eb-start-sk {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .55;
  }
}

.eb-start .sk {
  background: var(--peach);
  border-radius: 10px;
  animation: 1.3s ease-in-out infinite eb-start-sk;
}

.eb-start .sk-back {
  opacity: .35;
  box-shadow: none;
}

.eb-start .sk-q {
  width: 82%;
  height: 34px;
  margin-bottom: 12px;
}

.eb-start .sk-sub {
  width: 55%;
  height: 17px;
  margin-bottom: 22px;
}

.eb-start .sk-opt {
  pointer-events: none;
  border-radius: 16px;
  min-height: 56px;
}

@media (prefers-reduced-motion: reduce) {
  .eb-start .sk {
    animation: none;
  }
}

/*# sourceMappingURL=ee4fc86e28341496.css.map*/