/* Doge-ish vibe, clean + responsive */
:root {
  --bg: #f6d24a;
  --bg2: #fff3bf;
  --ink: #121212;
  --ink2: rgba(18, 18, 18, 0.72);
  --card: rgba(255, 255, 255, 0.78);
  --card2: rgba(255, 255, 255, 0.92);
  --stroke: rgba(18, 18, 18, 0.14);
  --shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  --radius: 22px;
  --radius2: 30px;
  --serif: "DM Serif Display", serif;
  --sans: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: radial-gradient(
    1200px 700px at 10% 10%,
    var(--bg2) 0%,
    var(--bg) 50%,
    #f0c931 100%
  );
}

a {
  color: inherit;
  text-decoration: none;
}
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  left: 14px;
  top: 14px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 9999;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(246, 210, 74, 0.65);
  border-bottom: 1px solid var(--stroke);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.12));
}
.brand__name {
  font-size: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--stroke);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav__link {
  font-weight: 600;
  color: var(--ink2);
  padding: 8px 10px;
  border-radius: 999px;
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.top-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--stroke);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.hamburger span {
  display: block;
  height: 2px;
  width: 18px;
  background: var(--ink);
  margin: 4px auto;
  border-radius: 99px;
}

/* Buttons */
.btn {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--sans);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.08s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.55);
}
.btn--solid {
  background: #111;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}
.btn--big {
  padding: 12px 18px;
  font-size: 15px;
}
.btn--mini {
  padding: 8px 12px;
  font-size: 13px;
  box-shadow: none;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #111;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.link:hover {
  text-decoration: underline;
}
.link--button {
  font-family: var(--sans);
}

/* Mobile menu */
.mobile {
  border-bottom: 1px solid var(--stroke);
  background: rgba(246, 210, 74, 0.72);
}
.mobile__inner {
  padding: 10px 0 16px;
  display: grid;
  gap: 10px;
}
.mobile__link {
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--stroke);
  font-weight: 700;
}
.mobile__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Hero */
.hero {
  padding: 52px 0 26px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.55);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink2);
  width: fit-content;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  margin: 14px 0 10px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
}
.accent {
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--stroke);
  padding: 0 0.18em;
  border-radius: 14px;
  transform: rotate(-1.5deg);
}
.hero__subtitle {
  max-width: 52ch;
  color: var(--ink2);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 18px;
}
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

.contract {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 14px 14px 10px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.1);
}
.contract__label {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink2);
  font-size: 12px;
  text-transform: uppercase;
}
.contract__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}
.contract__code {
  font-size: 13px;
  overflow: auto;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--stroke);
  flex: 1;
}
.toast {
  min-height: 18px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink2);
}

/* Hero art */
.hero__art {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius2);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.25)
  );
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero__icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(320px, 72%);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.22));
  transform: rotate(2deg);
}
.blob {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.95;
  border: 1px solid rgba(18, 18, 18, 0.08);
}
.blob--one {
  left: -110px;
  top: -110px;
  background: rgba(255, 255, 255, 0.65);
}
.blob--two {
  right: -130px;
  bottom: -130px;
  background: rgba(255, 255, 255, 0.4);
}
.sticker {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 10px 14px;
  border-radius: 18px;
  background: #111;
  color: #fff;
  font-family: var(--serif);
  letter-spacing: 0.06em;
  transform: rotate(6deg);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.22);
}
.sticker--alt {
  top: auto;
  right: auto;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.7);
  color: #111;
  border: 1px solid var(--stroke);
  transform: rotate(-7deg);
}

/* Sections */
.section {
  padding: 46px 0;
}
.section--alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.06)
  );
  border-top: 1px solid rgba(18, 18, 18, 0.06);
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
}
.section__head {
  margin-bottom: 18px;
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 40px);
  margin: 0 0 6px;
}
.h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.lead {
  margin: 0;
  color: var(--ink2);
  max-width: 70ch;
  line-height: 1.55;
  font-size: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}
.card p {
  color: var(--ink2);
  line-height: 1.55;
  margin: 0 0 10px;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}
.step__num {
  font-weight: 900;
  letter-spacing: 0.06em;
  opacity: 0.75;
  margin-bottom: 10px;
}
.step p {
  margin: 0 0 12px;
  color: var(--ink2);
  line-height: 1.55;
}
.step__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Community */
.community {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: start;
}
.community__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.pill {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 13px;
  color: var(--ink2);
}

.panel {
  background: var(--card2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius2);
  padding: 14px;
  box-shadow: var(--shadow);
}
.panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 10px;
  border-radius: 16px;
}
.panel__row + .panel__row {
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}
.panel__label {
  color: var(--ink2);
  font-weight: 800;
  font-size: 13px;
}
.panel__value {
  font-weight: 900;
  text-decoration: underline;
}
.panel__value--btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
}

.note {
  margin-top: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px dashed rgba(18, 18, 18, 0.22);
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink2);
  line-height: 1.5;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.faq__item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}
.faq__item summary {
  font-weight: 900;
  cursor: pointer;
}
.faq__item p {
  margin: 10px 0 0;
  color: var(--ink2);
  line-height: 1.55;
}

/* Footer */
.footer {
  padding: 34px 0 44px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  border-top: 1px solid rgba(18, 18, 18, 0.14);
  padding-top: 22px;
}
.footer__brand {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer__brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer__name {
  font-weight: 900;
  letter-spacing: 0.08em;
}
.footer__tag {
  color: var(--ink2);
  font-size: 13px;
}
.footer__contract {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--ink2);
}
.footer__disclaimer {
  margin: 12px 0 0;
  color: var(--ink2);
}
.footer__right {
  display: grid;
  gap: 8px;
  text-align: right;
}
.footer__link {
  font-weight: 800;
  color: var(--ink2);
}
.footer__link:hover {
  color: var(--ink);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 980px) {
  .nav,
  .top-actions {
    display: none;
  }
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__art {
    min-height: 360px;
  }
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }
  .community {
    grid-template-columns: 1fr;
  }
  .faq {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__right {
    text-align: left;
    grid-template-columns: 1fr 1fr;
  }
}
