/* Plugged Inn Premium — Duolingo-inspired design tokens */
:root {
  --duo-green: #58CC02;
  --duo-green-light: #61E002;
  --duo-green-dark: #46A302;
  --duo-green-shadow: #58A700;
  --ink: #3C3C3C;
  --ink-strong: #4B4B4B;
  --muted: #777777;
  --muted-light: #AFAFAF;
  --canvas: #FFFFFF;
  --wash-blue: #DDF4FF;
  --surface: #FFFFFF;
  --surface-alt: #F7F7F7;
  --border: #E5E5E5;
  --border-strong: #DADADA;
  --link-blue: #1CB0F6;
  --link-blue-dark: #1B99D6;
  --navy: #042C60;
  --super-navy: #100F3E;
  --super-ink: #000437;
  --footer-soft: #D7FFB8;
  --warning: #FFC800;
  --error: #FF4B4B;
  --streak: #FF9600;
  --gems: #CE82FF;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --max: 988px;
  --wide: 1090px;
  --font-body: "Nunito", "Varela Round", system-ui, sans-serif;
  --font-display: "Nunito", "Varela Round", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  color: var(--muted);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--link-blue);
  text-decoration: none;
}

a:hover {
  color: var(--link-blue-dark);
}

:focus-visible {
  outline: 3px solid var(--link-blue);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--duo-green);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-md);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: var(--wide);
}

/* Header */
.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--duo-green);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo__icon {
  width: 36px;
  height: 36px;
  background: var(--duo-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 0 var(--duo-green-shadow);
}

.logo__icon svg {
  width: 22px;
  height: 22px;
}

.header-cta {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--link-blue);
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-bottom-width: 4px;
  border-bottom-color: var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: background 0.15s, transform 0.1s;
}

.header-cta:hover {
  background: var(--wash-blue);
  border-color: var(--link-blue);
  color: var(--link-blue-dark);
}

.header-cta:active {
  transform: translateY(3px);
  border-bottom-width: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.1s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--duo-green);
  color: #fff;
  box-shadow: 0 4px 0 var(--duo-green-shadow);
  min-width: 280px;
}

.btn--primary:hover {
  background: var(--duo-green-light);
  color: #fff;
}

.btn--primary:active {
  transform: translateY(4px);
  box-shadow: none;
  background: var(--duo-green-dark);
}

.btn--secondary {
  background: var(--surface);
  color: var(--link-blue);
  border: 2px solid var(--border);
  border-bottom-width: 4px;
  border-bottom-color: var(--border-strong);
  min-width: 200px;
}

.btn--secondary:hover {
  background: var(--wash-blue);
  border-color: var(--link-blue);
  color: var(--link-blue-dark);
}

.btn--secondary:active {
  transform: translateY(3px);
  border-bottom-width: 1px;
}

.btn--super {
  background: #fff;
  color: var(--super-ink);
  box-shadow: 0 4px 0 rgba(255, 255, 255, 0.25);
  min-width: 280px;
}

.btn--super:hover {
  background: var(--wash-blue);
  color: var(--super-ink);
}

.btn--super:active {
  transform: translateY(4px);
  box-shadow: none;
}

/* Hero */
.hero {
  padding: 48px 0 64px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
}

.hero-card {
  position: absolute;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hero-card--main {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  z-index: 3;
  border-bottom: 4px solid var(--border-strong);
}

.hero-card--streak {
  top: 8%;
  right: 0;
  width: 140px;
  z-index: 4;
  background: #fff8f0;
  border-color: var(--streak);
}

.hero-card--coin {
  bottom: 12%;
  left: 0;
  width: 130px;
  z-index: 4;
  background: #fffbeb;
  border-color: var(--warning);
}

.hero-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-light);
  margin-bottom: 6px;
}

.hero-card__value {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink-strong);
  line-height: 1;
}

.hero-card__value--green {
  color: var(--duo-green);
}

.hero-card__value--orange {
  color: var(--streak);
}

.hero-card__value--gold {
  color: #c99700;
}

.hero-card__bar {
  height: 10px;
  background: var(--surface-alt);
  border-radius: var(--radius-pill);
  margin-top: 12px;
  overflow: hidden;
}

.hero-card__bar-fill {
  height: 100%;
  width: 78%;
  background: var(--duo-green);
  border-radius: var(--radius-pill);
}

.hero-mascot {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 120px;
  height: 120px;
  z-index: 5;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__content {
  max-width: 480px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wash-blue);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--duo-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--duo-green);
  margin: 0 0 8px;
}

.hero__subtitle {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-strong);
  margin: 0 0 16px;
}

.hero__desc {
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 440px;
}

.hero__cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hero__trial {
  font-size: 15px;
  font-weight: 700;
  color: var(--duo-green-dark);
  margin-top: 4px;
}

/* Category rail */
.category-rail {
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 20px 0;
  background: var(--surface-alt);
}

.category-rail__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-rail__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-light);
  flex-shrink: 0;
  padding-right: 8px;
}

.category-rail__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 4px 0;
}

.category-rail__track::-webkit-scrollbar {
  display: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-bottom-width: 3px;
  border-bottom-color: var(--border-strong);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.chip__emoji {
  font-size: 18px;
  line-height: 1;
}

.rail-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}

.rail-btn:hover {
  background: var(--wash-blue);
  border-color: var(--link-blue);
  color: var(--link-blue);
}

/* Feature sections */
.feature {
  padding: 96px 0;
}

.feature--alt {
  background: var(--wash-blue);
}

.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature__grid--reverse .feature__visual {
  order: 2;
}

.feature__grid--reverse .feature__text {
  order: 1;
}

.feature__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--duo-green);
  margin: 0 0 20px;
}

.feature__text p {
  margin: 0 0 16px;
  max-width: 473px;
}

.feature__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 600;
}

.feature__check {
  width: 28px;
  height: 28px;
  background: var(--duo-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -2px;
}

.feature__check svg {
  width: 14px;
  height: 14px;
}

/* Feature illustrations */
.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.feature-panel {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-bottom: 4px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.feature-panel--dark {
  background: var(--super-navy);
  border-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(0, 0, 0, 0.3);
}

.alert-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}

.alert-row:last-child {
  margin-bottom: 0;
}

.alert-row--live {
  background: #eaffea;
  border: 2px solid var(--duo-green);
}

.alert-row__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.alert-row__icon--green { background: #d7ffb8; }
.alert-row__icon--blue { background: var(--wash-blue); }
.alert-row__icon--gold { background: #fff3c4; }

.alert-row__text {
  flex: 1;
}

.alert-row__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-strong);
  margin: 0 0 2px;
}

.alert-row__meta {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.alert-row__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  background: var(--duo-green);
  color: #fff;
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.store-tile {
  padding: 16px;
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  text-align: center;
  border: 2px solid var(--border);
}

.store-tile--in-stock {
  background: #eaffea;
  border-color: var(--duo-green);
}

.store-tile__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-strong);
  margin: 0 0 4px;
}

.store-tile__status {
  font-size: 12px;
  font-weight: 700;
  color: var(--duo-green-dark);
}

.store-tile__status--out {
  color: var(--muted);
}

/* Benefits grid */
.benefits {
  padding: 96px 0;
  background: var(--surface-alt);
}

.benefits__header {
  text-align: center;
  margin-bottom: 56px;
}

.benefits__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--duo-green);
  margin: 0 0 16px;
  line-height: 1.2;
}

.benefits__desc {
  max-width: 560px;
  margin: 0 auto;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-bottom: 4px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.benefit-card__icon--green { background: #d7ffb8; }
.benefit-card__icon--blue { background: var(--wash-blue); }
.benefit-card__icon--gold { background: #fff3c4; }
.benefit-card__icon--purple { background: #f0e6ff; }
.benefit-card__icon--orange { background: #fff0e0; }
.benefit-card__icon--red { background: #ffe8e8; }

.benefit-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-strong);
  margin: 0 0 8px;
}

.benefit-card__text {
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}

/* Social proof */
.testimonials {
  padding: 96px 0;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-bottom: 4px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.testimonial-card__stars {
  color: var(--warning);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card__quote {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 20px;
  flex: 1;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-strong);
  margin: 0;
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--muted-light);
  margin: 4px 0 0;
}

/* Premium section */
.premium {
  background: var(--super-navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.premium::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(206, 130, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.premium__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.premium__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gems), var(--link-blue));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.premium__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}

.premium__desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 440px;
}

.premium__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.premium__price-tag {
  font-size: 15px;
  font-weight: 700;
  color: var(--footer-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.premium__price-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--warning);
}

.premium-visual {
  display: flex;
  justify-content: center;
}

.premium-card {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
}

.premium-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gems), var(--link-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.premium-card__name {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.premium-card__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
}

.premium-card__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.premium-card__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.premium-card__perks li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--duo-green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

/* Final CTA */
.final-cta {
  padding: 96px 0 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--canvas) 0%, #eaffea 100%);
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--duo-green);
  margin: 0 0 16px;
  line-height: 1.15;
}

.final-cta__desc {
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--muted);
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.final-cta__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--duo-green-dark);
  margin-top: 8px;
}

/* Footer */
.site-footer {
  background: var(--duo-green);
  padding: 48px 0 32px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--duo-green);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}

.footer__tagline {
  color: var(--footer-soft);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  max-width: 320px;
}

.footer__heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 16px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: var(--footer-soft);
  font-size: 15px;
  font-weight: 600;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 14px;
  color: var(--footer-soft);
  margin: 0;
}

.footer__disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  text-align: right;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__grid,
  .feature__grid,
  .feature__grid--reverse,
  .premium__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature__grid--reverse .feature__visual,
  .feature__grid--reverse .feature__text {
    order: unset;
  }

  .hero__visual {
    order: -1;
    min-height: 300px;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__cta-stack {
    align-items: center;
  }

  .hero__desc {
    max-width: 100%;
  }

  .benefits__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__disclaimer {
    text-align: center;
  }

  .category-rail__label {
    display: none;
  }

  .btn--primary,
  .btn--secondary,
  .btn--super {
    min-width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 32px 0 48px;
  }

  .feature,
  .benefits,
  .testimonials,
  .premium,
  .final-cta {
    padding: 64px 0;
  }

  .hero-illustration {
    max-width: 300px;
  }

  .hero-card--main {
    width: 200px;
  }

  .hero-card--streak,
  .hero-card--coin {
    display: none;
  }

  .site-header__inner .header-cta {
    display: none;
  }
}
