:root {
  --bg: #05080d;
  --bg-soft: #0a111c;
  --panel: rgba(16, 26, 37, 0.78);
  --panel-strong: #142230;
  --text: #f6fbff;
  --muted: #a9b7c7;
  --line: rgba(255, 255, 255, 0.1);
  --green: #35e38b;
  --green-soft: rgba(53, 227, 139, 0.12);
  --blue: #55a8ff;
  --blue-soft: rgba(85, 168, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(53, 227, 139, 0.1), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(85, 168, 255, 0.1), transparent 26rem),
    linear-gradient(180deg, #07101a 0%, var(--bg) 44rem);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 13, 0.86);
  backdrop-filter: blur(16px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  font-weight: 850;
  text-decoration: none;
}

.brand-icon {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.7rem;
  box-shadow: 0 0 28px rgba(53, 227, 139, 0.16);
  object-fit: cover;
}

.site-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.site-nav a,
.footer-links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active,
.footer-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.split-grid,
.privacy-grid {
  display: grid;
  gap: 2rem;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.65rem;
  font-size: clamp(3rem, 14vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 8vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-subtitle {
  color: var(--blue);
  font-size: clamp(1.35rem, 6vw, 2rem);
  font-weight: 780;
}

.hero-intro,
.page-hero p,
.privacy-band p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border-radius: 0.85rem;
  font-weight: 850;
  padding: 0.85rem 1.15rem;
  text-decoration: none;
}

.button-primary {
  border: 1px solid rgba(53, 227, 139, 0.45);
  background: linear-gradient(135deg, var(--green), #91ffc2);
  color: #04100a;
  box-shadow: 0 16px 48px rgba(53, 227, 139, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.hero-visual {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.phone-preview {
  width: min(100%, 17.5rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2.2rem;
  padding: 0.85rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.phone-preview-image {
  min-height: 0;
  overflow: hidden;
  padding: 0.5rem;
}

.phone-preview-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.55rem;
}

.screenshot-section {
  padding-top: 1rem;
}

.screenshot-grid {
  display: grid;
  grid-auto-columns: minmax(13.5rem, 68vw);
  grid-auto-flow: column;
  gap: 1rem;
  margin-inline: -1rem;
  overflow-x: auto;
  padding: 0 1rem 1rem;
  scroll-snap-type: x mandatory;
}

.screenshot-card {
  margin: 0;
  scroll-snap-align: start;
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.4rem;
  background: #07111d;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.screenshot-card figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  margin-top: 0.75rem;
  text-align: center;
}

.app-store-placeholder {
  width: min(100%, 18rem);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 0.85rem;
  color: var(--muted);
  padding: 0.9rem 1rem;
  text-align: center;
}

.section,
.page-hero {
  padding: 3.5rem 0;
}

.section-tight {
  padding-top: 1rem;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 1.5rem;
}

.section-heading p,
.feature-card p,
.support-card p,
.legal-content p,
.legal-content li,
.pricing-card li,
.fine-print {
  color: var(--muted);
}

.fine-print {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.card-grid,
.support-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.support-card,
.pricing-card,
.privacy-list {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  padding: 1.2rem;
}

.feature-card h3,
.support-card h2,
.support-card h3,
.pricing-card h3 {
  color: var(--text);
}

.split-section {
  background: linear-gradient(90deg, rgba(53, 227, 139, 0.07), rgba(85, 168, 255, 0.07));
  border-block: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(5, 8, 13, 0.45);
  padding: 0.9rem;
  font-weight: 750;
}

.steps span {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}

.privacy-band {
  background: rgba(16, 26, 37, 0.72);
  border-block: 1px solid var(--line);
}

.privacy-list {
  align-self: start;
}

.privacy-list p {
  margin: 0;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 760;
}

.privacy-list p:last-child {
  border-bottom: 0;
}

.pricing-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.pricing-card-featured {
  border-color: rgba(53, 227, 139, 0.42);
  box-shadow: 0 24px 70px rgba(53, 227, 139, 0.08);
}

.price {
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 850;
}

.final-cta {
  text-align: center;
}

.final-cta .button {
  margin-top: 0.6rem;
}

.legal-content a,
.support-card a,
.footer-meta a {
  color: var(--green);
  font-weight: 800;
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(85, 168, 255, 0.09), transparent),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.legal-content {
  padding: 3rem 0 4rem;
}

.legal-content h2 {
  margin-top: 2.1rem;
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
}

.support-content {
  padding-top: 2rem;
}

.support-card h2 {
  font-size: 1.35rem;
}

.support-card h3 {
  margin-top: 1.2rem;
  font-size: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #04070b;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-meta {
  margin-top: 0.25rem;
}

@media (max-width: 720px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .footer-links {
    justify-content: flex-start;
  }
}

@media (min-width: 760px) {
  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 24rem;
    align-items: center;
  }

  .split-grid,
  .privacy-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1fr);
    align-items: start;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-grid {
    grid-auto-flow: initial;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-inline: 0;
    overflow: visible;
    padding: 0;
  }

  .support-card-wide {
    grid-column: 1 / -1;
  }
}

/* Premium visual polish for the AI Truth Mirror launch site. */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5.25rem 0 3.6rem;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  filter: blur(10px);
}

.hero::before {
  inset: 4rem auto auto 50%;
  width: min(38rem, 80vw);
  height: min(38rem, 80vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 227, 139, 0.13), transparent 64%);
  transform: translateX(-8%);
}

.hero::after {
  right: -12rem;
  bottom: 1rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 168, 255, 0.16), transparent 66%);
}

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

.hero-intro {
  font-size: clamp(1.08rem, 2vw, 1.24rem);
  line-height: 1.72;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.hero-points span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
  padding: 0.42rem 0.68rem;
}

.button {
  position: relative;
  isolation: isolate;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary:hover {
  box-shadow: 0 18px 58px rgba(53, 227, 139, 0.28);
}

.button-secondary:hover {
  border-color: rgba(85, 168, 255, 0.34);
  background: rgba(85, 168, 255, 0.11);
}

.hero-device {
  position: relative;
  border-radius: 2.8rem;
  padding: 0.55rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48), 0 0 90px rgba(85, 168, 255, 0.1);
}

.hero-device::before {
  position: absolute;
  inset: 1.1rem 30% auto;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
  z-index: 2;
}

.phone-preview {
  border-radius: 2.35rem;
  padding: 0.42rem;
}

.phone-preview-image img,
.screenshot-card img {
  border-radius: 1.72rem;
}

.app-store-placeholder {
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.swipe-hint {
  display: inline-flex;
  margin: -0.8rem 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.screenshot-grid {
  scrollbar-width: none;
}

.screenshot-grid::-webkit-scrollbar {
  display: none;
}

.screenshot-card {
  position: relative;
}

.screenshot-card::before {
  position: absolute;
  inset: -0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.9rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  content: "";
  z-index: -1;
}

.feature-card,
.pricing-card,
.support-card,
.privacy-list {
  backdrop-filter: blur(18px);
}

.feature-card {
  min-height: 14.5rem;
  padding: 1.25rem;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover {
  border-color: rgba(53, 227, 139, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.26);
  transform: translateY(-3px);
}

.feature-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.15rem;
  place-items: center;
  border: 1px solid rgba(53, 227, 139, 0.24);
  border-radius: 0.9rem;
  background: linear-gradient(145deg, rgba(53, 227, 139, 0.14), rgba(85, 168, 255, 0.08));
  color: var(--green);
}

.feature-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.steps {
  position: relative;
}

.steps li {
  position: relative;
  align-items: flex-start;
  flex-direction: column;
  min-height: 8rem;
  padding: 1.05rem;
}

.steps li strong {
  font-size: 1.1rem;
  line-height: 1.15;
}

.steps li small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.steps span {
  box-shadow: 0 0 32px rgba(53, 227, 139, 0.12);
}

.privacy-band {
  position: relative;
  overflow: hidden;
}

.privacy-band::before {
  position: absolute;
  inset: -14rem auto auto -10rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 227, 139, 0.1), transparent 66%);
  content: "";
}

.privacy-grid {
  position: relative;
  z-index: 1;
}

.privacy-list {
  padding: 0.65rem;
}

.privacy-list p {
  display: grid;
  gap: 0.18rem;
  border: 0;
  border-radius: 0.9rem;
  padding: 0.9rem;
}

.privacy-list p + p {
  margin-top: 0.35rem;
}

.privacy-list p:hover {
  background: rgba(255, 255, 255, 0.045);
}

.privacy-list span {
  color: var(--text);
  font-weight: 820;
}

.privacy-list small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.final-cta {
  background: radial-gradient(circle at 50% 0%, rgba(53, 227, 139, 0.12), transparent 34rem);
}

.site-footer {
  background: linear-gradient(180deg, #05080d, #030508);
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.25rem, 1120px);
  }

  .hero {
    padding-top: 3.2rem;
  }

  h1 {
    font-size: clamp(3.25rem, 18vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .phone-preview {
    width: min(100%, 15.8rem);
  }

  .screenshot-grid {
    grid-auto-columns: minmax(13.75rem, 73vw);
  }

  .section {
    padding: 3rem 0;
  }
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 26rem);
    gap: 4rem;
  }

  .swipe-hint {
    display: none;
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps::before {
    position: absolute;
    top: 2.05rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(53, 227, 139, 0.36), transparent);
    content: "";
  }

  .steps li {
    min-height: 9.4rem;
  }
}

/* Targeted polish fixes: center hero screenshot and remove line through step cards. */
.hero-device {
  display: inline-grid;
  justify-items: center;
  width: fit-content;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018));
}

.hero-device::before {
  display: none;
}

.hero-device .phone-preview {
  width: min(100%, 17.5rem);
  margin-inline: auto;
}

@media (min-width: 760px) {
  .steps::before {
    display: none;
  }
}

/* App Store badge polish. */
.app-store-placeholder {
  width: auto;
  border: 0;
  background: transparent;
  padding: 0;
}

.app-store-placeholder a {
  display: inline-flex;
  border-radius: 0.82rem;
  transition: filter 160ms ease, transform 160ms ease;
}

.app-store-placeholder a:hover {
  filter: drop-shadow(0 14px 34px rgba(53, 227, 139, 0.16));
  transform: translateY(-2px);
}

.app-store-placeholder img {
  display: block;
  width: 11.5rem;
  max-width: 100%;
  height: auto;
}

/* Calm premium styling for legal and support pages. */
.page-hero-polished {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 3.25rem;
}

.page-hero-polished::before {
  position: absolute;
  inset: -12rem -10rem auto auto;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 168, 255, 0.13), transparent 66%);
  content: "";
}

.page-hero-polished .container {
  position: relative;
  z-index: 1;
}

.page-hero-polished h1 {
  font-size: clamp(2.55rem, 9vw, 4.75rem);
  max-width: 12ch;
}

.legal-content-polished {
  background: radial-gradient(circle at 50% 0%, rgba(53, 227, 139, 0.055), transparent 28rem);
}

.legal-content-polished .narrow {
  max-width: 860px;
}

.legal-summary,
.support-intro-grid {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.legal-summary article,
.support-highlight {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
  padding: 1rem;
}

.legal-summary span,
.support-highlight span {
  display: block;
  color: var(--text);
  font-weight: 850;
  margin-bottom: 0.25rem;
}

.legal-summary small,
.support-highlight p {
  color: var(--muted);
  line-height: 1.5;
}

.legal-content-polished .container > p,
.legal-content-polished h2,
.legal-content-polished h2 + p {
  max-width: 760px;
}

.legal-content-polished h2 {
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.support-content-polished {
  background: radial-gradient(circle at 15% 0%, rgba(53, 227, 139, 0.06), transparent 26rem);
}

.support-intro-grid {
  margin-bottom: 1rem;
}

.support-highlight a {
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 850;
}

.support-card {
  position: relative;
  overflow: hidden;
}

.support-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(53, 227, 139, 0.7), rgba(85, 168, 255, 0.18));
  content: "";
  opacity: 0.65;
}

.support-card h2 {
  margin-bottom: 0.8rem;
}

.support-card h3 {
  color: var(--green);
}

@media (min-width: 760px) {
  .legal-summary,
  .support-intro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .page-hero-polished {
    padding: 3.3rem 0 2.4rem;
  }

  .page-hero-polished h1 {
    max-width: 11ch;
  }

  .legal-summary article,
  .support-highlight,
  .support-card {
    border-radius: 1rem;
  }
}

/* Error pages: shared 404/500 styling. */
.error-body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(53, 227, 139, 0.12), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(85, 168, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #07101a 0%, var(--bg) 58%);
  color: var(--text);
}

.error-container {
  position: relative;
  width: min(100%, 42rem);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42), 0 0 80px rgba(85, 168, 255, 0.08);
  overflow: hidden;
  padding: clamp(1.4rem, 5vw, 3rem);
  text-align: center;
}

.error-container::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(53, 227, 139, 0.78), rgba(85, 168, 255, 0.24));
  content: "";
}

.error-container::after {
  position: absolute;
  inset: -10rem -10rem auto auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 227, 139, 0.12), transparent 68%);
  content: "";
  pointer-events: none;
}

.error-title {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 10vw, 4.7rem);
  line-height: 0.98;
}

.error-text {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 0 auto 1.7rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  line-height: 1.7;
}

.error-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  border: 1px solid rgba(53, 227, 139, 0.45);
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--green), #91ffc2);
  box-shadow: 0 16px 48px rgba(53, 227, 139, 0.18);
  color: #04100a;
  font-weight: 850;
  padding: 0.82rem 1.15rem;
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.error-button:hover {
  box-shadow: 0 18px 58px rgba(53, 227, 139, 0.28);
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .error-body {
    padding: 1rem;
  }

  .error-container {
    border-radius: 1.15rem;
    text-align: left;
  }

  .error-text {
    margin-left: 0;
    margin-right: 0;
  }

  .error-button {
    width: 100%;
  }
}
