/* Add after site-prezentare/styles.css. Local styles only. */
.plans-section {
  padding-top: 88px;
  padding-bottom: 80px;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.plan-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px 27px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffefa;
}
.plan-card-free {
  border-color: #baa16b;
  background: #f5f0e5;
}
.plan-card-premium {
  border-top: 3px solid var(--gold-deep);
  padding-top: 28px;
}
.plan-kicker {
  color: var(--gold-deep);
  font-size: 0.68rem;
  letter-spacing: 1.4px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.plan-card h3 {
  font-size: 2.6rem;
  margin: 0 0 12px;
}
.plan-summary {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 30ch;
}
.plan-benefits {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}
.plan-benefits li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #495665;
}
.plan-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-deep);
}
.plan-action {
  margin-top: auto;
  gap: 12px;
  font-size: 0.875rem;
  padding: 14px 16px;
}
.plan-availability {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.plan-availability strong {
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.plan-availability .text-link {
  font-size: 0.8rem;
  gap: 12px;
}
.plans-note {
  max-width: 85ch;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.8;
}
.hero-actions .button {
  gap: 22px;
}
.launch-inner > .button {
  margin: 8px 0 0;
}
@media (max-width: 1050px) {
  .plans-grid {
    gap: 16px;
  }
  .plan-card {
    padding: 26px 20px;
  }
  .plan-card-premium {
    padding-top: 24px;
  }
  .plan-card h3 {
    font-size: 2.35rem;
  }
  .plan-benefits li {
    font-size: 0.8125rem;
  }
}
@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan-card {
    padding: 30px;
    max-width: 620px;
    width: 100%;
    margin: auto;
  }
  .plan-card-premium {
    padding-top: 28px;
  }
  .plan-summary {
    max-width: none;
  }
  .plan-benefits li {
    font-size: 0.9375rem;
  }
  .plan-action {
    align-self: flex-start;
  }
  .plan-availability {
    padding-top: 20px;
  }
  .plans-note {
    max-width: 620px;
    margin: 24px auto 0;
  }
}
@media (max-width: 760px) {
  .plans-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-actions .button {
    max-width: 100%;
  }
  .platform-note {
    flex-wrap: wrap;
  }
  .plan-card {
    padding: 25px;
  }
  .plan-card-premium {
    padding-top: 23px;
  }
}

/* A clear way into Free, with the original Amen composition. */
:root {
  --gold-deep: #806128;
}
html {
  scroll-padding-top: 104px;
}
.site-header {
  position: sticky;
  top: 0;
  height: 84px;
  gap: 24px;
  background: #0c192bf7;
  box-shadow: 0 3px 18px #06101e12;
}
.site-header .brand {
  order: 0;
}
.site-header nav {
  order: 1;
  gap: 28px;
}
.site-header .header-cta {
  order: 2;
  display: inline-flex;
  min-height: 48px;
  white-space: nowrap;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
  gap: 20px;
  padding: 11px 18px;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.header-cta:hover {
  background: #e6c991;
  box-shadow: 0 4px 18px #d5b17020;
}
.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.site-header nav a::after {
  bottom: 5px;
}
.site-header .menu-toggle {
  order: 3;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}
.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 20px;
  height: 24px;
}
.menu-icon > span {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s;
}
.menu-open .menu-icon > span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-open .menu-icon > span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.hero {
  padding-top: 54px;
  column-gap: 4%;
  row-gap: 30px;
}
.hero-copy {
  padding-bottom: 30px;
}
.hero h1 {
  font-size: clamp(4rem, 6.1vw, 6.2rem);
}
.hero-actions {
  gap: 22px 28px;
}
.hero-actions .button {
  min-height: 60px;
  padding: 17px 24px;
  font-size: 1rem;
  font-weight: 600;
  gap: 28px;
  box-shadow: 0 5px 24px #d5b17013;
}
.platform-note {
  color: #b3becd;
  margin-top: 18px;
}
.text-link {
  min-height: 44px;
  align-items: center;
}
.text-link.light:hover {
  color: #f1d5a2;
}
.hero-visual {
  padding: 32px 24px;
  min-height: 555px;
  margin: 0;
}
.arch {
  height: 100%;
  width: 94%;
  left: 3%;
  background: radial-gradient(
    ellipse at 50% 40%,
    #304056 0%,
    #192b40 44%,
    #101f32 76%
  );
}
.hero-brand-art {
  width: 100%;
  max-width: 360px;
  transform: none;
}
.hero-brand-art img {
  width: 86%;
}
.hero-brand-art > p {
  font-size: 60px;
}
.visual-caption {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 28px;
  text-align: center;
}
.visual-caption p {
  font-size: 18px;
  line-height: 1.5;
  color: #d0d5dc;
}
.caption-line {
  width: 32px;
  background: #b89b65;
}
.hero-bottom {
  padding: 22px 0;
}
.plan-kicker {
  color: #806128;
}
.button,
.header-cta {
  touch-action: manipulation;
}
.button > span[aria-hidden],
.header-cta > span[aria-hidden],
.text-link > span[aria-hidden] {
  display: inline-block;
  transition: transform 0.2s;
}
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.site-header :is(a, button):focus-visible,
.hero a:focus-visible,
.launch-section a:focus-visible {
  outline-color: #f1d5a2;
}

/* Movement is brief, runs once and never hides content while waiting for JS. */
@media (prefers-reduced-motion: no-preference) {
  .hero-brand-art {
    animation: amen-arrive 0.7s ease-out both;
  }
  .reveal-in {
    animation: amen-arrive 0.45s ease-out both;
  }
  @keyframes amen-arrive {
    from {
      opacity: 0.6;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @media (hover: hover) {
    .button:hover > span[aria-hidden],
    .header-cta:hover > span[aria-hidden],
    .text-link:hover > span[aria-hidden] {
      transform: translateX(3px);
    }
    .plan-card {
      transition:
        box-shadow 0.25s,
        border-color 0.25s;
    }
    .plan-card:hover {
      box-shadow: 0 12px 32px #1522380b;
      border-color: #b8a17a;
    }
  }
}
@media (max-width: 1100px) and (min-width: 761px) {
  .site-header {
    gap: 16px;
    padding-left: 4%;
    padding-right: 4%;
  }
  .site-header nav {
    gap: 18px;
  }
  .site-header .brand {
    font-size: 33px;
    gap: 9px;
  }
  .site-header .brand img {
    width: 38px;
    height: 38px;
  }
  .site-header .header-cta {
    gap: 12px;
    padding: 11px 14px;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 6.5vw, 4.8rem);
  }
  .hero-visual {
    padding: 26px 18px;
    min-height: 515px;
  }
  .hero-brand-art > p {
    font-size: 52px;
  }
  .hero-actions .button {
    font-size: 0.9375rem;
    padding: 16px 19px;
    gap: 20px;
  }
}
@media (max-width: 900px) and (min-width: 761px) {
  .site-header nav {
    gap: 12px;
  }
  .site-header nav a {
    font-size: 0.8125rem;
  }
  .site-header .brand img {
    display: none;
  }
  .site-header .header-cta {
    font-size: 0.8125rem;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 92px;
  }
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 76px;
    height: auto;
    gap: 10px;
    padding: 12px 5%;
    align-content: center;
  }
  .site-header .brand {
    font-size: 31px;
    gap: 9px;
    min-width: 0;
    justify-self: start;
  }
  .site-header .brand small {
    font-size: 8px;
    letter-spacing: 2.7px;
  }
  .site-header .brand img {
    width: 36px;
    height: 36px;
  }
  .site-header .header-cta {
    display: inline-flex;
    order: 1;
    margin: 0;
    font-size: 0.8125rem;
    min-height: 46px;
    gap: 12px;
    padding: 11px 14px;
  }
  .site-header .menu-toggle {
    order: 2;
    margin: 0;
    padding: 8px;
    gap: 8px;
    display: none;
  }
  .site-header.nav-ready .menu-toggle {
    display: flex;
  }
  .site-header nav {
    order: 3;
    grid-column: 1/-1;
    display: flex;
    position: static;
    gap: 0;
    padding: 12px 0 0;
    border: 0;
  }
  .site-header.nav-ready nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 76px);
    overflow: auto;
    padding: 12px 6% 18px;
    background: var(--navy);
    border-bottom: 1px solid #b4966940;
    box-shadow: 0 18px 28px #08142220;
  }
  .site-header.nav-ready.menu-open nav {
    display: flex;
  }
  .site-header:not(.nav-ready) {
    position: relative;
  }
  .site-header nav a {
    min-height: 48px;
    padding: 12px 0;
  }
  .hero {
    padding-top: 38px;
    gap: 28px;
  }
  .hero h1 {
    font-size: clamp(3.3rem, 11.7vw, 5.25rem);
    margin: 18px 0 24px;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero-description {
    max-width: 470px;
  }
  .hero-actions {
    gap: 16px 24px;
    margin-top: 24px;
  }
  .hero-actions .button {
    min-height: 58px;
    max-width: 100%;
  }
  .platform-note {
    font-size: 0.75rem;
    line-height: 1.8;
    margin-bottom: 8px;
  }
  .hero-visual {
    min-height: 395px;
    max-width: 440px;
    margin: 0 auto;
    padding: 30px 25px;
  }
  .hero-brand-art {
    width: 100%;
    max-width: 290px;
    transform: none;
  }
  .hero-brand-art img {
    width: 74%;
  }
  .hero-brand-art > p {
    font-size: 48px;
  }
  .visual-caption {
    margin-top: 22px;
    gap: 14px;
  }
  .visual-caption p {
    font-size: 17px;
  }
  .hero-bottom {
    margin-top: 0;
    padding: 20px 0;
  }
  .app-preview {
    min-height: 0;
    padding-top: 22px;
    padding-bottom: 24px;
  }
  .feature {
    grid-template-columns: 22px minmax(0, 1fr) 24px;
    gap: 14px;
  }
  .section-heading h2,
  .children-copy h2 {
    font-size: clamp(2.45rem, 7.4vw, 3.3rem);
  }
}
@media (max-width: 480px) {
  .menu-label {
    display: none;
  }
  .hero-actions {
    align-items: flex-start;
  }
  .hero-actions .button {
    width: 100%;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 0.9375rem;
    gap: 12px;
  }
  .hero-actions .text-link {
    font-size: 0.875rem;
  }
  .hero-bottom {
    font-size: 0.6rem;
    letter-spacing: 0.6px;
    gap: 12px;
  }
  .platform-note {
    gap: 6px;
  }
  .site-header .brand img {
    display: none;
  }
  .site-header .header-cta {
    font-size: 0.8125rem;
  }
}
@media (max-width: 350px) {
  .site-header {
    padding-left: 4%;
    padding-right: 4%;
    gap: 6px;
  }
  .site-header .brand {
    font-size: 29px;
  }
  .site-header .header-cta {
    font-size: 0.75rem;
    padding: 11px 10px;
    gap: 8px;
  }
  .hero h1 {
    font-size: 3.15rem;
  }
  .hero-actions .button {
    font-size: 0.875rem;
    padding-left: 16px;
    padding-right: 16px;
    gap: 8px;
  }
  .hero-visual {
    min-height: 360px;
    padding: 24px 20px;
  }
  .hero-brand-art > p {
    font-size: 44px;
  }
  .visual-caption p {
    font-size: 16px;
  }
  .plan-card {
    padding: 23px 20px;
  }
  .plan-action {
    gap: 12px;
    font-size: 0.8125rem;
  }
}

.download-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.download-status {
  font-size: 0.6875rem;
  line-height: 1.7;
  color: #b3becd;
}
@media (max-width: 760px) {
  .download-status {
    font-size: 0.75rem;
  }
  .hero-actions .download-action {
    gap: 0;
  }
}
