:root {
  --accent: #6bcb77;
  --accent-strong: #54b963;
  --accent-cta: #3d9a4d;
  --accent-soft: rgba(107, 203, 119, 0.14);
  --accent-glow: rgba(107, 203, 119, 0.35);
  --bg-milk: #f3faf4;
  --bg-soft: #eaf5eb;
  --bg-mist: #eef4ef;
  --cream: #faf6ef;
  --lime-tint: #d4f0d9;
  --white: #ffffff;
  --ink: #111111;
  --ink-soft: #1a1a1a;
  --muted: #5f6368;
  --muted-2: #6b7280;
  --line: rgba(17, 17, 17, 0.07);
  --line-green: rgba(107, 203, 119, 0.22);
  --shadow-sm: 0 4px 24px rgba(17, 41, 24, 0.06);
  --shadow-md: 0 12px 48px rgba(17, 41, 24, 0.09);
  --shadow-lg: 0 28px 80px rgba(17, 41, 24, 0.12);
  --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-premium-hover: 0 30px 80px rgba(0, 0, 0, 0.12);
  --shadow-device: 0 40px 100px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 24px 64px rgba(107, 203, 119, 0.22);
  --noise-svg: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --radius-xl: 32px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 72px;
  --content-max: 1240px;
}

@keyframes orb-drift-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  45% {
    transform: translate(min(5vw, 64px), min(4vh, 40px)) scale(1.05);
  }
  72% {
    transform: translate(max(-3vw, -32px), min(6vh, 48px)) scale(0.98);
  }
}

@keyframes orb-drift-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  38% {
    transform: translate(max(-6vw, -72px), min(3vh, 36px)) scale(1.04);
  }
  68% {
    transform: translate(min(4vw, 48px), max(-5vh, -40px)) scale(0.99);
  }
}

@keyframes orb-drift-c {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-2%, 3%) rotate(2deg);
  }
}

@keyframes hero-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes hero-float-phones {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(0.6deg);
  }
  66% {
    transform: translateY(-6px) rotate(-0.45deg);
  }
}

@keyframes dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(107, 203, 119, 0.45);
  }
  55% {
    box-shadow: 0 0 0 12px rgba(107, 203, 119, 0);
  }
}

@keyframes fade-up-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes brand-glow {
  0%,
  100% {
    box-shadow:
      0 4px 20px rgba(107, 203, 119, 0.35),
      0 0 0 1px rgba(255, 255, 255, 0.25) inset;
  }
  50% {
    box-shadow:
      0 6px 28px rgba(107, 203, 119, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  }
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .page-bg__orb,
  .hero__phones-bob,
  .hero__dot,
  .device-frame--lift img,
  .feat-card,
  .story-card__glow {
    animation: none !important;
  }

  .hero__copy.reveal.is-visible > * {
    animation: none !important;
  }

  .page-bg::after {
    display: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg-milk);
  -webkit-font-smoothing: antialiased;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 90% -5%, rgba(212, 240, 217, 0.75) 0%, transparent 52%),
    radial-gradient(ellipse 70% 50% at -5% 45%, rgba(250, 246, 239, 0.9) 0%, transparent 48%),
    radial-gradient(ellipse 55% 40% at 40% 100%, rgba(238, 248, 239, 0.85) 0%, transparent 45%),
    linear-gradient(180deg, var(--bg-milk) 0%, var(--bg-mist) 55%, var(--bg-soft) 100%);
}

@media (prefers-reduced-motion: no-preference) {
  .page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0.035;
    mix-blend-mode: multiply;
    background-image: var(--noise-svg);
    background-repeat: repeat;
    background-size: 180px 180px;
  }
}

.page-bg__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.page-bg__orb--a {
  width: min(72vw, 520px);
  height: min(72vw, 520px);
  left: -16%;
  top: -18%;
  background: radial-gradient(circle at 40% 38%, rgba(182, 235, 196, 0.55) 0%, rgba(107, 203, 119, 0.12) 42%, transparent 68%);
  filter: blur(56px);
  opacity: 0.95;
  animation: orb-drift-a 26s ease-in-out infinite;
}

.page-bg__orb--b {
  width: min(58vw, 420px);
  height: min(58vw, 420px);
  right: -12%;
  bottom: 18%;
  background: radial-gradient(circle at 55% 45%, rgba(250, 246, 239, 0.95) 0%, rgba(212, 240, 217, 0.35) 48%, transparent 72%);
  filter: blur(52px);
  opacity: 0.75;
  animation: orb-drift-b 30s ease-in-out infinite;
}

.page-bg__orb--c {
  width: min(45vw, 340px);
  height: min(45vw, 340px);
  left: 38%;
  top: 42%;
  background: radial-gradient(circle at 50% 50%, rgba(107, 203, 119, 0.15) 0%, transparent 65%);
  filter: blur(40px);
  opacity: 0.6;
  animation: orb-drift-c 22s ease-in-out infinite;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 200;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent-strong), var(--accent) 50%, #8fd99a);
  pointer-events: none;
  opacity: 0.9;
}

#top,
#showcase,
#features,
#story,
#download,
#cta-final {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.muted {
  color: var(--muted);
}

.wrap {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 40px);
  position: relative;
  z-index: 1;
}

.grad-text {
  background: linear-gradient(115deg, var(--accent-strong) 0%, var(--accent) 42%, #3d9a52 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ico-apple {
  flex-shrink: 0;
}

/* ——— Header ——— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(243, 250, 244, 0.76);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  border-bottom: 1px solid transparent;
  transition:
    background 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.header__account {
  flex-shrink: 0;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .header .brand__mark {
    animation: brand-glow 4s ease-in-out infinite;
  }
}

.brand__mark--sm {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.brand__word {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__a {
  position: relative;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted-2);
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.nav__a:hover {
  color: var(--ink);
  background: var(--accent-soft);
}

@media (max-width: 640px) {
  .nav {
    display: none;
  }
}

/* ——— Buttons ——— */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.35s var(--ease-out),
    filter 0.3s ease,
    background 0.35s ease;
}

.btn-pill:active {
  transform: scale(0.98);
}

.btn-pill--compact {
  padding: 11px 18px;
  font-size: 0.88rem;
}

.btn-pill--lg {
  padding: 16px 28px;
  font-size: 0.97rem;
}

.btn-pill--xl {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-pill--primary,
.btn-pill--app {
  background: linear-gradient(180deg, #7ad688 0%, var(--accent) 45%, var(--accent-strong) 100%);
  color: #0f2914;
  box-shadow:
    var(--shadow-glow),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
  overflow: hidden;
}

.btn-pill--primary > *,
.btn-pill--app > * {
  position: relative;
  z-index: 1;
}

.btn-pill--primary::after,
.btn-pill--app::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -35%;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-16deg) translateX(-160%);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .btn-pill--primary:hover::after,
  .btn-pill--app:hover::after {
    transform: skewX(-16deg) translateX(320%);
  }

  .btn-pill--primary:hover,
  .btn-pill--app:hover {
    filter: brightness(1.06);
    box-shadow:
      0 32px 72px rgba(107, 203, 119, 0.42),
      0 0 0 1px rgba(255, 255, 255, 0.2) inset,
      0 0 48px rgba(107, 203, 119, 0.35);
    transform: translateY(-2px) scale(1.03);
  }

  .btn-pill--glass:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
      var(--shadow-md),
      0 0 32px rgba(107, 203, 119, 0.12);
  }
}

.btn-pill--glass {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-pill--glass:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--line-green);
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .btn-pill--primary:hover,
  .btn-pill--app:hover {
    filter: brightness(1.03);
    box-shadow:
      0 32px 72px rgba(107, 203, 119, 0.35),
      0 1px 0 rgba(255, 255, 255, 0.4) inset;
    transform: translateY(-2px);
  }

  .btn-pill--glass:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 520px) {
  .header .btn-pill--compact {
    padding-inline: 14px;
    font-size: 0.82rem;
  }

  .header__account {
    padding-inline: 12px;
    font-size: 0.8rem;
  }

  .btn-pill--lg {
    padding-inline: 22px;
    width: 100%;
    max-width: 100%;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn-pill {
    justify-content: center;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  padding: calc(var(--header-h) + clamp(40px, 7vw, 72px)) 0 clamp(80px, 12vw, 140px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -15% 20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 140%);
  max-height: 85%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 75% 70% at 50% 35%, rgba(180, 235, 195, 0.38) 0%, rgba(107, 203, 119, 0.12) 42%, transparent 68%);
  filter: blur(4px);
}

.hero__bg--mesh {
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 100%);
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 65% at 72% 18%, rgba(107, 203, 119, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 12% 55%, rgba(212, 240, 217, 0.45) 0%, transparent 52%),
    radial-gradient(ellipse 45% 40% at 88% 75%, rgba(250, 246, 239, 0.55) 0%, transparent 50%),
    linear-gradient(165deg, rgba(243, 250, 244, 0.65) 0%, transparent 45%);
  z-index: 0;
}

.hero__bg--mesh::before,
.hero__bg--mesh::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__bg--mesh::before {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  left: -8%;
  top: 28%;
  background: radial-gradient(circle at 45% 45%, rgba(107, 203, 119, 0.35) 0%, rgba(107, 203, 119, 0.08) 45%, transparent 70%);
  filter: blur(68px);
  opacity: 0.42;
}

.hero__bg--mesh::after {
  width: min(48vw, 380px);
  height: min(48vw, 380px);
  right: -6%;
  top: 8%;
  background: radial-gradient(circle at 55% 40%, rgba(184, 235, 198, 0.5) 0%, rgba(107, 203, 119, 0.12) 50%, transparent 72%);
  filter: blur(72px);
  opacity: 0.38;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__phones {
    order: 1;
  }

  .hero__copy {
    order: 0;
  }
}

.card-soft {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4.5vw, 44px);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  border: 1px solid rgba(107, 203, 119, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid var(--line-green);
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__dot {
    animation: dot-pulse 2.8s ease-out infinite;
  }
}

.hero__title {
  margin: 0 0 16px;
  font-size: clamp(2.35rem, 6vw, 3.65rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.032em;
  color: var(--ink);
}

.hero__title-accent {
  display: inline;
  background: linear-gradient(120deg, var(--accent-strong), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__tagline {
  margin: 0 0 20px;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.hero__together {
  margin: 0 0 14px;
  max-width: 20ch;
  font-size: clamp(1.85rem, 5.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  background: linear-gradient(118deg, var(--accent-strong) 0%, var(--accent-cta) 42%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 38rem;
}

.hero__sub {
  margin: 0 0 20px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.hero__hint {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero__hint code {
  font-size: 0.88em;
  padding: 3px 8px;
  border-radius: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy.reveal.is-visible > .hero__kicker {
    animation: fade-up-in 0.7s var(--ease-out) 0.04s both;
  }

  .hero__copy.reveal.is-visible > .hero__together {
    animation: fade-up-in 0.74s var(--ease-out) 0.09s both;
  }

  .hero__copy.reveal.is-visible > .hero__title {
    animation: fade-up-in 0.75s var(--ease-out) 0.15s both;
  }

  .hero__copy.reveal.is-visible > .hero__tagline {
    animation: fade-up-in 0.72s var(--ease-out) 0.2s both;
  }

  .hero__copy.reveal.is-visible > .hero__lead {
    animation: fade-up-in 0.7s var(--ease-out) 0.24s both;
  }

  .hero__copy.reveal.is-visible > .hero__sub:not([hidden]) {
    animation: fade-up-in 0.68s var(--ease-out) 0.28s both;
  }

  .hero__copy.reveal.is-visible > .hero__cta {
    animation: fade-up-in 0.68s var(--ease-out) 0.32s both;
  }

  .hero__copy.reveal.is-visible > .hero__hint {
    animation: fade-up-in 0.65s var(--ease-out) 0.38s both;
  }
}

/* ——— Hero phones ——— */
.hero__phones {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.hero__phones-stage {
  position: relative;
  width: 100%;
  max-width: min(640px, 94vw);
  margin: 0 auto;
  padding: 16px 0 12px;
  overflow: visible;
}

.hero__phones-bloom {
  display: none;
}

.hero__phones-pedestal {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 72%;
  height: 48px;
  z-index: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(17, 17, 17, 0.07) 0%, transparent 72%);
  pointer-events: none;
}

.hero__phones-stack {
  position: relative;
  z-index: 1;
  height: clamp(460px, 62vw, 680px);
  max-height: 72vh;
  perspective: 1400px;
  perspective-origin: 48% 38%;
  transform: translate3d(
    var(--parallax-x, 0px),
    calc(var(--parallax-y, 0px) + var(--scroll-parallax-y, 0px)),
    0
  );
  transition: transform 0.22s var(--ease-out);
  will-change: transform;
}

.hero__phones-bob {
  position: absolute;
  inset: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__phones-bob {
    animation: hero-float-phones 9s ease-in-out infinite;
  }
}

.device-mock {
  margin: 0;
}

.device-mock img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.hero__phones .device-mock--hero {
  position: absolute;
  width: min(380px, calc(50vw - 20px));
  max-width: 100%;
  margin: 0;
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  transition:
    transform 0.65s var(--ease-out),
    filter 0.65s var(--ease-out);
}

.hero__phones .device-mock--hero img {
  border-radius: 3px;
}

.hero__phones .device-mock--back {
  left: 50%;
  bottom: 5%;
  z-index: 1;
  filter:
    drop-shadow(0 32px 64px rgba(17, 41, 24, 0.14))
    drop-shadow(0 40px 100px rgba(0, 0, 0, 0.12))
    brightness(0.97)
    contrast(1.03);
  transform:
    translateX(calc(-100% + 14%))
    rotateX(5deg)
    rotateY(-18deg)
    rotateZ(-9deg)
    translateZ(-48px)
    scale(0.84);
}

.hero__phones .device-mock--front {
  left: 50%;
  bottom: 0;
  z-index: 2;
  filter:
    drop-shadow(0 48px 100px rgba(0, 0, 0, 0.18))
    drop-shadow(0 20px 40px rgba(17, 41, 24, 0.12))
    brightness(1.02)
    contrast(1.04);
  transform:
    translateX(-6%)
    rotateX(-2deg)
    rotateY(14deg)
    rotateZ(8deg)
    translateZ(36px)
    scale(1.1);
}

@media (hover: hover) and (min-width: 769px) and (prefers-reduced-motion: no-preference) {
  .hero__phones-stage:hover .device-mock--back {
    transform:
      translateX(calc(-100% + 12%))
      rotateX(4deg)
      rotateY(-16deg)
      rotateZ(-7deg)
      translateZ(-36px)
      scale(0.87)
      translateY(-8px);
  }

  .hero__phones-stage:hover .device-mock--front {
    transform:
      translateX(-9%)
      rotateX(-1deg)
      rotateY(12deg)
      rotateZ(7deg)
      translateZ(44px)
      scale(1.14)
      translateY(-14px);
  }
}

@media (max-width: 640px) {
  .hero__phones-stack {
    height: clamp(380px, 92vw, 500px);
    max-height: none;
    perspective-origin: 50% 38%;
  }

  .hero__phones .device-mock--hero {
    width: min(268px, 44vw);
  }

  .hero__phones .device-mock--back {
    transform:
      translateX(calc(-100% + 10%))
      rotateX(2deg)
      rotateY(-10deg)
      rotateZ(-5deg)
      translateZ(-12px)
      scale(0.86);
  }

  .hero__phones .device-mock--front {
    transform:
      translateX(-4%)
      rotateX(0deg)
      rotateY(8deg)
      rotateZ(5deg)
      translateZ(14px)
      scale(1.02);
  }
}

/* ——— Showcase ——— */
.showcase {
  padding: clamp(72px, 12vw, 140px) 0;
}

.section-head--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(48px, 7vw, 88px);
}

.section-head__eyebrow {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.section-head__title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.028em;
  color: var(--ink);
}

.section-head__text {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.55;
}

.showcase__rows {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 9vw, 100px);
}

.showcase__rows .showcase-row.reveal:nth-child(1) {
  --reveal-delay: 0s;
}

.showcase__rows .showcase-row.reveal:nth-child(2) {
  --reveal-delay: 0.1s;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-xl);
  overflow: visible;
  /* Тот же тон, что у body (--bg-milk) — без «второго» зелёного слоя */
  background: var(--bg-milk);
  border: 1px solid var(--line-green);
  box-shadow:
    0 16px 48px rgba(17, 41, 24, 0.06),
    0 2px 8px rgba(17, 41, 24, 0.03);
  transition: box-shadow 0.45s ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .showcase-row:hover {
    box-shadow:
      0 22px 56px rgba(17, 41, 24, 0.08),
      0 4px 12px rgba(107, 203, 119, 0.06);
  }
}

.showcase-row--reverse {
  direction: rtl;
}

.showcase-row--reverse > * {
  direction: ltr;
}

.showcase-row__step {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.showcase-row__title {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.2;
  color: var(--ink);
}

.showcase-row__desc {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 36rem;
}

.showcase-row__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 0;
}

.showcase-row__visual {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: transparent;
  overflow: visible;
  min-width: 0;
  min-height: 0;
  padding: clamp(12px, 2vw, 20px) clamp(16px, 4vw, 32px);
  box-sizing: border-box;
}

/* Первый ряд: мокап слева, чуть ближе к центру карточки — те же вертикальные поля, что у второго */
.showcase-row--first.showcase-row--reverse .showcase-row__visual {
  justify-content: flex-end;
}

.device-frame {
  position: relative;
  width: min(100%, 300px);
  /* симметрично — иначе мокап визуально «прилипал» к верху колонки */
  padding: 12px 0;
  border-radius: 36px;
  background: transparent;
  border: none;
  box-shadow: none;
  /* не hidden — иначе обрезается низ мокапа и тень при hero-bob */
  overflow: visible;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.device-frame::before {
  content: none;
  display: none;
}

.device-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  /* без тяжёлой тени «второй блок»; лёгкая глубина */
  box-shadow:
    0 18px 42px rgba(17, 41, 24, 0.1),
    0 6px 14px rgba(17, 41, 24, 0.05);
  filter: none;
  /* симметрично срезаем внешние поля/плашку в экспорте PNG — только края кадра */
  clip-path: inset(2.5% 4% 2.5% 4%);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    filter 0.4s ease;
}

/* mockup-home: рамка ближе к левому краю файла — общий inset съедал левую дугу */
.showcase-row--first .device-frame img {
  clip-path: inset(2.5% 4% 2.5% 0.5%);
}

@media (prefers-reduced-motion: no-preference) {
  .device-frame--lift img {
    animation: hero-bob 8s ease-in-out infinite;
    animation-delay: -2s;
  }
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .device-frame--lift:hover {
    transform: translateY(-10px) scale(1.02);
  }

  .device-frame--lift:hover img {
    box-shadow:
      0 26px 52px rgba(17, 41, 24, 0.14),
      0 10px 22px rgba(17, 41, 24, 0.07);
    filter: none;
  }
}

@media (max-width: 900px) {
  .showcase-row,
  .showcase-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .showcase-row__visual {
    order: -1;
  }
}

/* ——— Feature cards ——— */
.features {
  padding: clamp(56px, 10vw, 120px) 0;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3.5vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 960px) {
  .feat-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

.feat-card {
  position: relative;
  padding: clamp(34px, 4vw, 44px);
  border-radius: 26px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 250, 244, 0.88) 48%, rgba(234, 245, 235, 0.72) 100%);
  border: 1px solid rgba(107, 203, 119, 0.14);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.4s ease;
}

.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  opacity: 0.65;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.5s var(--ease-out);
}

.feat-card:hover::before {
  transform: scaleX(1);
}

.feat-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-green);
  box-shadow: var(--shadow-premium-hover);
}

.feat-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.feat-card__num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(107, 203, 119, 0.35);
  user-select: none;
}

.feat-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(107, 203, 119, 0.16), rgba(212, 240, 217, 0.42));
  color: var(--accent-strong);
  box-shadow: 0 10px 28px rgba(107, 203, 119, 0.14);
  transition: transform 0.45s var(--ease-out);
}

.feat-card:hover .feat-card__icon {
  transform: scale(1.06) rotate(-3deg);
}

.feat-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feat-card__h {
  margin: 0 0 10px;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--ink);
}

.feat-card__p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ——— Story ——— */
.story {
  padding: clamp(24px, 4vw, 40px) 0 clamp(64px, 10vw, 112px);
}

.story-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5.5vw, 64px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(238, 248, 239, 0.65) 55%, rgba(250, 246, 239, 0.35) 100%);
  border: 1px solid rgba(107, 203, 119, 0.14);
  box-shadow: var(--shadow-premium);
  transition: box-shadow 0.45s ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .story-card:hover {
    box-shadow: 0 24px 64px rgba(17, 41, 24, 0.1);
  }
}

.story-card__glow {
  position: absolute;
  width: min(90%, 480px);
  height: min(90%, 480px);
  right: -20%;
  top: -35%;
  background: radial-gradient(circle at 40% 40%, rgba(107, 203, 119, 0.2) 0%, transparent 65%);
  pointer-events: none;
  animation: orb-drift-a 24s ease-in-out infinite;
}

.story-card__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.story-card__eyebrow {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.story-card__title {
  margin: 0 0 24px;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.026em;
  line-height: 1.15;
  color: var(--ink);
}

.story-card__quote {
  margin: 0 0 22px;
  padding: 0 0 0 22px;
  border-left: 4px solid var(--accent);
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.story-card__quote p {
  margin: 0;
  font-weight: 500;
}

.story-card__text {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted-2);
}

.story-card__fine {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .story-card__glow {
    animation: none;
  }
}

/* ——— CTA final ——— */
.cta-final {
  position: relative;
  z-index: 1;
  padding: clamp(88px, 14vw, 160px) 0;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 75% at 50% 120%, rgba(107, 203, 119, 0.38) 0%, rgba(107, 203, 119, 0.1) 42%, transparent 62%),
    radial-gradient(ellipse 70% 55% at 15% -5%, rgba(184, 235, 198, 0.45) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 92% 20%, rgba(212, 240, 217, 0.35) 0%, transparent 48%),
    linear-gradient(180deg, var(--bg-mist) 0%, rgba(234, 245, 235, 0.92) 45%, var(--bg-milk) 100%);
  pointer-events: none;
}

.cta-final__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 40%, rgba(255, 255, 255, 0.5) 0%, transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final__title {
  margin: 0 0 20px;
  font-size: clamp(2.35rem, 5.5vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.034em;
  line-height: 1.08;
  color: var(--ink);
}

.cta-final__lead {
  margin: 0 0 40px;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  line-height: 1.65;
  color: var(--muted);
}

.cta-final .btn-pill--xl {
  padding: 20px 44px;
  font-size: 1.12rem;
  font-weight: 700;
  background: linear-gradient(180deg, #6fd47c 0%, var(--accent) 38%, var(--accent-cta) 100%);
  color: #0a1f0d;
  box-shadow:
    var(--shadow-glow),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 0 64px rgba(107, 203, 119, 0.25);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .cta-final .btn-pill--primary.btn-pill--xl:hover {
    filter: brightness(1.08);
    box-shadow:
      0 36px 88px rgba(61, 154, 77, 0.35),
      0 0 0 1px rgba(255, 255, 255, 0.4) inset,
      0 0 72px rgba(107, 203, 119, 0.45);
    transform: translateY(-3px) scale(1.03);
  }
}

/* ——— Footer ——— */
.foot {
  position: relative;
  z-index: 1;
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.foot__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.foot__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.foot__name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.foot__tagline {
  margin: 0;
  font-size: 0.9rem;
}

.foot__together {
  font-weight: 600;
  color: var(--accent-strong);
}

.foot__npd {
  margin: 18px 0 0;
  padding: 16px 18px 0;
  max-width: 36rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}

.foot__npd-lead {
  margin: 0 0 10px;
  font-size: 0.76rem;
  color: var(--muted-2);
}

.foot__npd-line {
  margin: 0 0 6px;
}

.foot__npd-line:last-child {
  margin-bottom: 0;
}

.foot__npd-k {
  font-weight: 600;
  color: var(--ink-soft);
  margin-right: 6px;
}

.foot__npd-a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.foot__npd-a:hover {
  color: var(--accent-cta);
}

.foot__npd-miss {
  font-style: italic;
  color: var(--muted-2);
}

.foot__legal {
  margin: 8px 0 0;
  font-size: 0.82rem;
  max-width: 420px;
  line-height: 1.45;
}

.foot__legal-links {
  max-width: 520px;
}

.foot__legal-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.foot__legal-links a:hover {
  color: var(--ink-soft);
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(3px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.75s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal--late {
  --reveal-delay: 0.14s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.feat-card.reveal {
  transition:
    opacity 0.85s var(--ease-out) var(--reveal-delay, 0s),
    transform 0.85s var(--ease-out) var(--reveal-delay, 0s),
    filter 0.85s var(--ease-out) var(--reveal-delay, 0s),
    box-shadow 0.45s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

.feat-card.reveal.is-visible {
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.45s var(--ease-out),
    filter 0.85s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

/* ——— Account page (/account.html) ——— */
.account-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg-milk);
}

.header--account {
  position: sticky;
  top: 0;
  z-index: 20;
}

.account-main {
  flex: 1;
  padding: 32px 20px 48px;
  max-width: 720px;
  margin: 0 auto;
}

.account-card {
  padding: 28px 24px 32px;
  border-radius: var(--radius-lg);
}

.account-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.account-lead {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 20px;
}

.account-email {
  font-weight: 600;
  word-break: break-all;
  margin: 0 0 24px;
  color: var(--accent-cta);
}

.account-email--sub {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.account-dashboard-loading {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

#dashboard-err {
  margin-bottom: 16px;
}

.account-profile-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.account-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line-green);
  background: var(--bg-soft);
}

.account-profile-meta {
  min-width: 0;
}

.account-display-name {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.account-section {
  margin-bottom: 28px;
}

.account-section-title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.account-section--mod {
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 203, 119, 0.35);
  background: linear-gradient(145deg, rgba(107, 203, 119, 0.08), rgba(255, 255, 255, 0.96));
}

.account-mod-big {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

.account-mod-meta {
  margin: 0 0 16px;
  font-size: 0.85rem;
}

.account-h3 {
  margin: 16px 0 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.account-mod-paths {
  margin: 0;
  padding: 12px 16px 12px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.9rem;
  line-height: 1.5;
}

.account-dl {
  margin: 0;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--white);
}

.account-dl__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.account-dl__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.account-dl__row:first-child {
  padding-top: 0;
}

.account-dl dt {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.account-dl dd {
  margin: 0;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.account-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--white);
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.account-table th,
.account-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.account-table th {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.account-table tbody tr:last-child td {
  border-bottom: 0;
}

.account-table td:last-child {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.account-empty {
  margin: 0;
  font-size: 0.9rem;
}

.account-food-count {
  margin: 0 0 10px;
  font-size: 0.88rem;
}

.account-food-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.account-food-item {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.9rem;
  line-height: 1.45;
}

.account-food-item__meta {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}

.account-pro {
  margin-bottom: 28px;
  padding: 22px 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-green);
  background: linear-gradient(145deg, var(--white) 0%, var(--accent-soft) 100%);
}

.account-pro__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.account-pro__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
}

.account-pro__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.account-pro__text {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.account-pro__cta {
  width: 100%;
  justify-content: center;
}

.account-pro__hint {
  margin: 12px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.account-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.account-tab {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.account-tab--active {
  background: var(--accent-soft);
  border-color: var(--line-green);
  color: var(--ink);
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.account-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.account-input {
  font: inherit;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.account-input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: transparent;
}

.account-err {
  min-height: 1.25em;
  margin: 0;
  font-size: 0.88rem;
  color: #b42318;
}

.account-submit {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

.account-foot {
  padding: 20px 0 28px;
  margin-top: auto;
}
