/* Original Little Wins sunflower design, reproduced from the supplied artifact. */
:root {
  --canvas: #fff8ea;
  --paper: #fffef8;
  --butter: #fff3cd;
  --ink: #262115;
  --ink-soft: #5d5442;
  --sun: #ffc940;
  --sun-deep: #e3a008;
  --seed: #6b4a2b;
  --seed-soft: #8a6237;
  --leaf: #5c7a3f;
  --line: #e8ddc3;
  --radius-s: 10px;
  --radius-m: 16px;
  --ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--canvas);
  color: var(--ink);
  font-family:
    "Hanken Grotesk", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--sun);
  color: var(--ink);
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--ink);
  color: var(--canvas);
  padding: 10px 16px;
  border-radius: var(--radius-s);
  text-decoration: none;
  z-index: 20;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
}
a {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--sun-deep);
  outline-offset: 2px;
  border-radius: 4px;
}
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--canvas) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 55%, transparent);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark .dot {
  color: var(--sun-deep);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-bottom: 2px;
  background: linear-gradient(var(--sun), var(--sun)) no-repeat left bottom / 0%
    2px;
  transition:
    background-size 0.25s ease,
    color 0.15s ease;
}
.nav-links a:not(.btn):hover {
  color: var(--ink);
  background-size: 100% 2px;
}
@media (max-width: 720px) {
  .nav {
    padding: 14px 12px;
    gap: 12px;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-links .btn.small {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  .nav-links a:not(.btn):not(.nav-login) {
    display: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sun);
  color: var(--ink);
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 0 color-mix(in srgb, var(--sun-deep) 55%, transparent);
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease,
    background 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px -4px
    color-mix(in srgb, var(--sun-deep) 65%, transparent);
}
.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
}
.btn.small {
  padding: 9px 20px;
  font-size: 0.92rem;
}
.btn .arrow {
  transition: transform 0.25s var(--ease-spring);
}
.btn:hover .arrow {
  transform: translate(2px, -2px);
}
.btn[disabled] {
  opacity: 0.65;
  cursor: default;
}
.stroke path {
  fill: none;
  stroke: var(--sun);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.anim path {
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.7s ease-out;
}
.anim.pre:not(.drawn) path {
  stroke-dashoffset: 100;
}
.anim.drawn path {
  stroke-dashoffset: 0;
}
.flower .petal ellipse {
  fill: var(--sun);
  stroke: var(--sun-deep);
  stroke-width: 2.5;
}
.flower .seed {
  fill: var(--seed);
}
.flower .seedring {
  fill: none;
  stroke: var(--seed-soft);
  stroke-width: 3;
  stroke-dasharray: 2 7;
  stroke-linecap: round;
}
.flower .stem {
  fill: none;
  stroke: var(--leaf);
  stroke-width: 9;
  stroke-linecap: round;
}
.flower .leaf {
  fill: var(--leaf);
  opacity: 0.9;
}
.bloom .petal {
  transform-origin: 100px 100px;
  transform: scale(1);
  opacity: 1;
  transition:
    transform 0.45s var(--ease-spring) calc(var(--i) * 30ms),
    opacity 0.25s ease calc(var(--i) * 30ms);
}
.bloom.pre:not(.drawn) .petal {
  transform: scale(0.5);
  opacity: 0;
}
.petal-0 {
  --i: 0;
}
.petal-1 {
  --i: 1;
}
.petal-2 {
  --i: 2;
}
.petal-3 {
  --i: 3;
}
.petal-4 {
  --i: 4;
}
.petal-5 {
  --i: 5;
}
.petal-6 {
  --i: 6;
}
.petal-7 {
  --i: 7;
}
.petal-8 {
  --i: 8;
}
.petal-9 {
  --i: 9;
}
.petal-10 {
  --i: 10;
}
.petal-11 {
  --i: 11;
}
.hero {
  padding: 64px 24px 104px;
  text-align: center;
}
.hero .flower {
  width: 84px;
  height: auto;
  margin: 0 auto 26px;
  display: block;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 540;
  font-size: clamp(2.6rem, 7.2vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.hero h1 .lovely {
  font-style: italic;
  font-weight: 480;
  display: inline-block;
  position: relative;
  padding: 0 0.06em 0.08em;
}
.hero h1 .lovely .stroke {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.06em;
  width: 100%;
  height: 0.17em;
  display: block;
}
.hero .sub {
  margin: 26px auto 0;
  max-width: 34em;
  font-size: 1.15rem;
  color: var(--ink-soft);
  text-wrap: balance;
}
.hero .cta-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero .wish-link {
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border-bottom: 3px solid var(--sun);
  padding-bottom: 2px;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}
.hero .wish-link:hover {
  background: var(--butter);
  border-color: var(--sun-deep);
}
.hero .cta-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.wins {
  padding: 40px 24px 64px;
}
.section-head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 540;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.section-head h2 em {
  font-style: italic;
  font-weight: 470;
}
.section-head .lede {
  margin-top: 16px;
  max-width: 38em;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.win-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}
@media (max-width: 780px) {
  .win-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.win {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.win .tick {
  width: 40px;
  height: 40px;
  margin-top: 2px;
  background: var(--butter);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.win .tick svg {
  width: 22px;
  height: 22px;
  overflow: visible;
}
.win .tick path {
  stroke: var(--sun-deep);
  stroke-width: 3;
}
.win h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 560;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.win p {
  margin-top: 10px;
  color: var(--ink-soft);
}
.dev-note {
  margin: 64px auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 40em;
  text-wrap: balance;
}
.story {
  padding: 80px 24px;
}
.story-inner {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 780px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-inner .flower-art {
    max-width: 200px;
    margin: 0 auto;
  }
}
.flower-art {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.story h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 540;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.story h2 .life {
  font-style: italic;
  font-weight: 470;
}
.story p {
  margin-top: 20px;
  max-width: 36em;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.text-link {
  display: inline-block;
  margin-top: 28px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 3px solid var(--sun);
  padding-bottom: 2px;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.text-link:hover {
  background: var(--butter);
  border-color: var(--sun-deep);
}
.join {
  padding: 96px 24px 112px;
}
.join-panel {
  background: var(--butter);
  border-radius: 28px;
  padding: clamp(32px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .join-panel {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}
.join h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 540;
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.join h2 em {
  font-style: italic;
  font-weight: 470;
}
.join .join-lede {
  margin-top: 18px;
  max-width: 30em;
  color: var(--ink-soft);
  font-size: 1.06rem;
}
.wish {
  margin-top: 40px;
  padding-left: 20px;
  border-left: 3px solid var(--sun);
}
.wish .starts {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.wish .quote {
  position: relative;
  display: inline-block;
  margin-top: 6px;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  line-height: 1.25;
}
.join .note {
  margin-top: 26px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 12px 32px -20px rgba(88, 66, 5, 0.35);
}
.field {
  margin-bottom: 22px;
}
.field > label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.opt {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.78rem;
  background: var(--butter);
  border-radius: 999px;
  padding: 2px 10px 3px;
  margin-left: 8px;
  display: inline-block;
  vertical-align: 1px;
  white-space: nowrap;
}
input[type="email"],
input[type="text"],
textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  transition: border-color 0.15s ease;
}
input::placeholder,
textarea::placeholder {
  color: #a79c82;
}
input:hover,
textarea:hover {
  border-color: #cfc3a2;
}
input:focus,
textarea:focus {
  border-color: var(--sun-deep);
  outline: none;
}
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--sun) 60%, transparent);
  outline-offset: 0;
}
textarea {
  min-height: 110px;
  resize: vertical;
}
.hint {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.field > .check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  font-weight: 400;
  margin-bottom: 0;
}
.check-row input {
  position: absolute;
  opacity: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.check-row .box {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  display: grid;
  place-items: center;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}
.check-row .box::before {
  content: "";
  width: 7px;
  height: 12px;
  margin-bottom: 3px;
  border-right: 2.5px solid var(--sun-deep);
  border-bottom: 2.5px solid var(--sun-deep);
  transform: rotate(40deg) scale(0);
  transition: transform 0.25s var(--ease-spring);
}
.check-row input:checked ~ .box {
  background: var(--butter);
  border-color: var(--sun-deep);
}
.check-row input:checked ~ .box::before {
  transform: rotate(40deg) scale(1);
}
.check-row input:hover ~ .box {
  border-color: #cfc3a2;
}
.check-row input:checked:hover ~ .box {
  border-color: var(--sun-deep);
}
.check-row input:focus-visible ~ .box {
  outline: 3px solid var(--sun-deep);
  outline-offset: 2px;
}
.check-row .check-text {
  font-size: 0.95rem;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #8a2f1e;
}
.form-status:empty {
  display: none;
}
.fine {
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.success {
  text-align: left;
}
.success .tick-big {
  width: 56px;
  height: 56px;
  background: var(--butter);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.success .tick-big svg {
  width: 30px;
  height: 30px;
  overflow: visible;
}
.success .tick-big path {
  stroke: var(--sun-deep);
  stroke-width: 3.4;
}
.success h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 560;
  font-size: 1.5rem;
}
.success p {
  margin-top: 10px;
  color: var(--ink-soft);
}
footer {
  border-top: 1px solid var(--line);
  padding: 36px 24px 48px;
}
.foot {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.foot .made {
  font-size: 0.88rem;
  color: var(--ink-soft);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .anim path,
  .anim.pre:not(.drawn) path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    transition: none;
  }
  .bloom.pre:not(.drawn) .petal {
    transform: scale(1);
    opacity: 1;
  }
  .bloom .petal {
    transition: none;
  }
  .btn,
  .btn .arrow,
  .check-row .box,
  .check-row .box::before {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
}
[hidden] {
  display: none !important;
}
