/* AggiustaSubito landing — iPhone demo interattiva */
:root {
  --ags-ink: #0e1f1c;
  --ags-muted: #5a6f69;
  --ags-teal: #0f766e;
  --ags-teal-deep: #0a4541;
  --ags-mint: #14a396;
  --ags-cream: #eef6f3;
  --ags-line: rgba(15, 118, 110, 0.14);
  --ags-gold: #c4a035;
  --ags-safe-bottom: env(safe-area-inset-bottom, 0px);
  --ags-phone-w: min(280px, 78vw);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ags-iphone, .ags-hero__copy, .ags-hero__visual, .ags-ui-slide { animation: none !important; transition: none !important; }
}

body.ags-lp {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ags-ink);
  background:
    radial-gradient(60% 40% at 8% 0%, rgba(20, 163, 150, 0.22), transparent 55%),
    radial-gradient(45% 30% at 100% 8%, rgba(196, 160, 53, 0.14), transparent 50%),
    linear-gradient(165deg, #dceee9 0%, var(--ags-cream) 38%, #e3ebe8 100%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.ags-lp a { color: inherit; }
.ags-wrap {
  width: min(1120px, calc(100% - 1.5rem));
  margin-inline: auto;
}

/* Header */
.ags-lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 246, 243, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ags-line);
}
.ags-lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: 3.5rem;
  padding-block: 0.35rem;
}
.ags-lp-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.ags-lp-brand strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ags-lp-brand span {
  display: none;
  font-size: 0.68rem;
  color: var(--ags-muted);
}
.ags-lp-nav { display: none; }
.ags-lp-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ags-lp-actions .ags-btn--ghost { display: none; }
.ags-lp-actions .ags-btn--primary {
  min-height: 40px;
  padding: 0 0.85rem;
  font-size: 0.82rem;
}

.ags-lang {
  display: inline-flex;
  border: 1.5px solid var(--ags-line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.ags-lang a {
  text-decoration: none;
  padding: 0.4rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ags-muted);
  min-width: 2rem;
  text-align: center;
}
.ags-lang a.is-on {
  background: var(--ags-teal);
  color: #fff;
}

.ags-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0 1.1rem;
  border-radius: 14px;
  border: 0;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.ags-btn--primary {
  background: linear-gradient(135deg, var(--ags-mint), var(--ags-teal-deep));
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(10, 69, 65, 0.28);
}
.ags-btn--ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--ags-teal-deep);
  border: 1.5px solid rgba(15, 118, 110, 0.28);
}
.ags-btn--lg {
  min-height: 52px;
  padding-inline: 1.25rem;
  width: 100%;
}
.ags-btn--block { width: 100%; }

.ags-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ags-teal);
  margin: 0 0 0.45rem;
}

/* Hero */
.ags-hero {
  padding: 1.5rem 0 1.75rem;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
.ags-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 9vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.55rem;
  line-height: 1.05;
}
.ags-hero__lead {
  margin: 0 0 1.15rem;
  color: var(--ags-muted);
  font-size: 1rem;
  max-width: 34rem;
}
.ags-hero__ctas {
  display: grid;
  gap: 0.55rem;
}
.ags-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 420px;
}

/* iPhone frame */
.ags-phone-glow {
  position: absolute;
  inset: 12% 18%;
  background: radial-gradient(circle, rgba(20, 163, 150, 0.35), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}
.ags-phone-glow--lg {
  inset: 8% 10%;
  background: radial-gradient(circle, rgba(20, 163, 150, 0.4), rgba(196, 160, 53, 0.12), transparent 70%);
}

.ags-iphone {
  position: relative;
  z-index: 1;
  width: var(--ags-phone-w);
  filter: drop-shadow(0 28px 48px rgba(14, 31, 28, 0.35));
}
.ags-iphone--demo {
  --ags-phone-w: min(300px, 84vw);
}
.ags-iphone__frame {
  position: relative;
  border-radius: 44px;
  padding: 11px;
  background:
    linear-gradient(145deg, #3a3f42 0%, #1a1d1f 42%, #0d0f10 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}
.ags-iphone__side {
  position: absolute;
  width: 3px;
  background: linear-gradient(#2c3033, #151719);
  border-radius: 2px;
}
.ags-iphone__side--l {
  left: -2px;
  top: 110px;
  height: 28px;
  box-shadow: 0 42px 0 #151719, 0 78px 0 #151719;
}
.ags-iphone__side--r {
  right: -2px;
  top: 150px;
  height: 56px;
}
.ags-iphone__bezel {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: #050708;
  aspect-ratio: 9 / 19.4;
}
.ags-iphone__island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  border-radius: 20px;
  background: #000;
  z-index: 5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.ags-iphone__island::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1e3a5f, #0a1520 70%);
  box-shadow: 0 0 0 1.5px #111;
}
.ags-iphone__home {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.28);
  z-index: 5;
}
.ags-iphone__screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(120% 50% at 50% -5%, rgba(20, 163, 150, 0.2), transparent 50%),
    linear-gradient(180deg, #f4fbf9 0%, #e7f1ee 100%);
  display: flex;
  flex-direction: column;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}

/* In-phone UI */
.ags-ui {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.55rem 0.72rem 1.15rem;
  opacity: 0;
  transform: translate3d(18px, 0, 0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.ags-ui.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.ags-ui.is-out {
  opacity: 0;
  transform: translate3d(-18px, 0, 0);
}

.ags-ui__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--ags-ink);
  margin-bottom: 0.55rem;
  padding-inline: 0.2rem;
}
.ags-ui__status-right {
  display: flex;
  gap: 0.28rem;
  align-items: center;
  font-size: 0.58rem;
  color: var(--ags-muted);
}
.ags-ui__product {
  font-size: 0.62rem;
  font-weight: 650;
  color: var(--ags-teal);
  margin: 0 0 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ags-ui__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  margin: 0 0 0.1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.ags-ui__sub {
  font-size: 0.68rem;
  color: var(--ags-muted);
  margin: 0 0 0.65rem;
}
.ags-ui__fault {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 650;
  background: #fff;
  border: 1px solid var(--ags-line);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.55rem;
  color: var(--ags-teal-deep);
}

.ags-ui__slot {
  background: #fff;
  border: 1px solid var(--ags-line);
  border-radius: 14px;
  padding: 0.58rem 0.62rem;
  margin-bottom: 0.4rem;
  font-size: 0.74rem;
  font-weight: 650;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  box-shadow: 0 6px 14px rgba(14, 31, 28, 0.04);
}
.ags-ui__slot-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e8f7f4, #d5efe9);
  flex-shrink: 0;
  font-size: 0.95rem;
}
.ags-ui__slot em {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: var(--ags-muted);
  font-size: 0.64rem;
  margin-top: 0.1rem;
}

.ags-ui__field {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--ags-line);
  padding: 0.48rem 0.58rem;
  margin-bottom: 0.35rem;
}
.ags-ui__field span {
  display: block;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ags-muted);
  font-weight: 700;
}
.ags-ui__field strong {
  font-size: 0.76rem;
  font-weight: 650;
}

.ags-ui__scroll {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  min-height: 0;
}

.ags-ui__card {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid var(--ags-line);
  padding: 0.5rem 0.55rem;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  touch-action: manipulation;
}
.ags-ui__card:hover,
.ags-ui__card:focus-visible {
  border-color: rgba(15, 118, 110, 0.45);
  outline: none;
}
.ags-ui__card.is-selected {
  border-color: var(--ags-teal);
  background: #eef9f5;
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.12);
}
.ags-ui__card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.35rem;
  align-items: flex-start;
}
.ags-ui__card-top strong {
  font-size: 0.74rem;
  line-height: 1.2;
}
.ags-ui__card-meta {
  font-size: 0.6rem;
  color: var(--ags-muted);
  margin-top: 0.18rem;
}
.ags-ui__card-parts {
  margin-top: 0.28rem;
  font-size: 0.62rem;
  font-weight: 650;
  color: var(--ags-teal-deep);
  background: rgba(20, 163, 150, 0.1);
  border-radius: 8px;
  padding: 0.22rem 0.4rem;
}
.ags-ui__card-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
}
.ags-ui__card-foot em {
  font-style: normal;
  color: var(--ags-muted);
  font-weight: 600;
  font-size: 0.6rem;
}

.ags-badge {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.14rem 0.36rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ags-badge--ok { background: #d1fae5; color: #047857; }
.ags-badge--warn { background: #fef3c7; color: #92400e; }
.ags-badge--info { background: #e0f2fe; color: #075985; }

.ags-ui__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem;
  display: grid;
  gap: 0.4rem;
}
.ags-ui__steps li {
  background: #fff;
  border: 1px solid var(--ags-line);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 650;
}
.ags-ui__picked {
  background: linear-gradient(135deg, #e8f7f4, #fff);
  border: 1.5px solid rgba(15, 118, 110, 0.35);
  border-radius: 14px;
  padding: 0.6rem;
  margin-bottom: 0.55rem;
}
.ags-ui__picked strong { display: block; font-size: 0.8rem; }
.ags-ui__picked span {
  display: block;
  font-size: 0.66rem;
  color: var(--ags-muted);
  margin-top: 0.15rem;
}

.ags-ui__vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.35rem;
  align-items: stretch;
  margin-bottom: 0.5rem;
}
.ags-ui__vs-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--ags-line);
  padding: 0.5rem 0.4rem;
  text-align: center;
}
.ags-ui__vs-box.is-win {
  border-color: var(--ags-teal);
  background: #eef9f5;
}
.ags-ui__vs-box span {
  display: block;
  font-size: 0.55rem;
  color: var(--ags-muted);
  font-weight: 650;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.ags-ui__vs-box strong {
  font-size: 0.82rem;
  font-family: "Fraunces", Georgia, serif;
}
.ags-ui__vs-mid {
  align-self: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--ags-muted);
}
.ags-ui__verdict {
  background: linear-gradient(135deg, var(--ags-mint), var(--ags-teal-deep));
  color: #fff;
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  text-align: center;
  margin-bottom: 0.45rem;
}
.ags-ui__verdict strong {
  display: block;
  font-size: 0.8rem;
}
.ags-ui__verdict span {
  font-size: 0.65rem;
  opacity: 0.9;
}
.ags-ui__source {
  font-size: 0.58rem;
  color: var(--ags-muted);
  text-align: center;
  margin: 0 0 0.4rem;
}

.ags-ui__cta {
  margin-top: auto;
  background: linear-gradient(135deg, var(--ags-mint), var(--ags-teal-deep));
  color: #fff;
  text-align: center;
  border-radius: 14px;
  padding: 0.72rem 0.6rem;
  font-weight: 700;
  font-size: 0.78rem;
  border: 0;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  box-shadow: 0 10px 20px rgba(10, 69, 65, 0.22);
  touch-action: manipulation;
}
.ags-ui__cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}
.ags-ui__cta.is-done {
  background: #047857;
}
.ags-ui__hint {
  text-align: center;
  font-size: 0.62rem;
  color: var(--ags-muted);
  margin: 0.35rem 0 0;
  font-weight: 600;
}

/* Sections */
.ags-sec {
  padding: 2.5rem 0;
}
.ags-sec--band {
  background: rgba(255, 255, 255, 0.5);
  border-block: 1px solid var(--ags-line);
}
.ags-sec--demo {
  background:
    radial-gradient(50% 60% at 80% 40%, rgba(20, 163, 150, 0.12), transparent),
    rgba(255, 255, 255, 0.35);
}
.ags-sec h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 5.5vw, 2.05rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}
.ags-sec__lead {
  color: var(--ags-muted);
  max-width: 38rem;
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
}
.ags-steps { display: grid; gap: 0; }
.ags-step {
  padding: 1rem 0;
  border-top: 1px solid var(--ags-line);
}
.ags-step__n {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ags-teal);
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
}
.ags-step h3 { margin: 0 0 0.2rem; font-size: 1.02rem; }
.ags-step p { margin: 0; color: var(--ags-muted); font-size: 0.92rem; }

.ags-split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
.ags-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.ags-bullets li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.92rem;
}
.ags-bullets i {
  color: var(--ags-teal);
  margin-top: 0.12rem;
  flex-shrink: 0;
}

.ags-demo {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.ags-demo__hints {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.45rem;
}
.ags-demo__hints li {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ags-muted);
}
.ags-demo__hints i { color: var(--ags-teal); }
.ags-demo__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}
.ags-chip-btn {
  border: 1.5px solid var(--ags-line);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: inherit;
  color: var(--ags-teal-deep);
  touch-action: manipulation;
}
.ags-chip-btn:hover { border-color: var(--ags-teal); }
.ags-demo__dots {
  display: flex;
  gap: 0.35rem;
  margin-left: 0.35rem;
}
.ags-demo__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(15, 118, 110, 0.25);
  cursor: pointer;
}
.ags-demo__dots button.is-on {
  background: var(--ags-teal);
  transform: scale(1.2);
}
.ags-demo__stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 1rem;
  min-height: 520px;
}

.ags-feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.ags-fcard {
  background: #fff;
  border: 1px solid var(--ags-line);
  border-radius: 16px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 10px 24px rgba(14, 31, 28, 0.05);
}
.ags-fcard.is-hot {
  border-color: rgba(15, 118, 110, 0.45);
  background: linear-gradient(160deg, #eef9f5, #fff);
}
.ags-fcard strong { font-size: 0.88rem; }
.ags-fcard em {
  font-style: normal;
  font-weight: 700;
  color: var(--ags-teal-deep);
  font-family: "Fraunces", Georgia, serif;
}
.ags-fcard__badge {
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}

.ags-vs-preview {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.55rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--ags-line);
  border-radius: 22px;
  padding: 1.15rem;
  box-shadow: 0 16px 36px rgba(14, 31, 28, 0.07);
}
.ags-vs-card {
  text-align: center;
  padding: 0.75rem 0.4rem;
  border-radius: 14px;
  background: #eef9f5;
}
.ags-vs-card span {
  display: block;
  font-size: 0.65rem;
  color: var(--ags-muted);
  font-weight: 650;
  margin-bottom: 0.25rem;
}
.ags-vs-card strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
}
.ags-vs-card--new { background: #f5f5f4; }
.ags-vs-mid {
  font-weight: 800;
  color: var(--ags-muted);
  font-size: 0.85rem;
}
.ags-vs-verdict {
  grid-column: 1 / -1;
  text-align: center;
  font-weight: 700;
  color: #047857;
  font-size: 0.9rem;
  padding-top: 0.35rem;
}

.ags-si {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 1.75rem;
}
.ags-si__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  justify-self: center;
  padding: 1.1rem 1rem 0.9rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(20, 163, 150, 0.16), transparent 58%),
    linear-gradient(165deg, #0b2e2b 0%, #06201d 100%);
  box-shadow:
    0 0 0 1px rgba(20, 163, 150, 0.28),
    0 22px 40px rgba(6, 32, 29, 0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  max-width: 17rem;
  width: 100%;
}
.ags-si__link:hover,
.ags-si__link:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(20, 163, 150, 0.45),
    0 28px 48px rgba(6, 32, 29, 0.38),
    0 0 36px rgba(20, 163, 150, 0.22);
  outline: none;
}
.ags-si__ring {
  position: absolute;
  inset: 0.55rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.ags-si__star {
  position: relative;
  z-index: 1;
  width: min(13.5rem, 58vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.45));
}
.ags-si__cta {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #b8f3e8;
  text-align: center;
}
.ags-si__headline {
  margin: 0.35rem 0 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ags-ink);
  max-width: 34rem;
}
.ags-si .ags-sec__lead { max-width: 38rem; margin-bottom: 0; }
.ags-si__more {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  font-weight: 700;
}
.ags-si__more a {
  color: var(--ags-teal, #0f766e);
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 118, 110, 0.35);
}
.ags-si__more a:hover,
.ags-si__more a:focus-visible {
  border-bottom-color: currentColor;
}

.ags-trust-grid { display: grid; gap: 0; }
.ags-trust-item {
  padding: 0.85rem 0;
  border-top: 1px solid var(--ags-line);
  font-weight: 650;
  font-size: 0.95rem;
}

.ags-final {
  text-align: center;
  padding: 2.75rem 0 5.75rem;
}
.ags-final h2 { margin-bottom: 0.45rem; }
.ags-final p {
  margin: 0 auto 1.15rem;
  color: var(--ags-muted);
  max-width: 32rem;
  font-size: 0.98rem;
}
.ags-final .ags-hero__ctas {
  max-width: 480px;
  margin-inline: auto;
}

.ags-lp-footer {
  padding: 1.25rem 0 calc(5.25rem + var(--ags-safe-bottom));
  border-top: 1px solid var(--ags-line);
  font-size: 0.78rem;
  color: var(--ags-muted);
}
.ags-lp-footer p { margin: 0 0 0.35rem; }

.ags-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.7rem 0.75rem calc(0.7rem + var(--ags-safe-bottom));
  background: rgba(238, 246, 243, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--ags-line);
}
.ags-sticky__inner {
  width: min(480px, 100%);
  margin: 0 auto;
}

@media (min-width: 860px) {
  .ags-wrap { width: min(1120px, calc(100% - 2rem)); }
  .ags-lp-header__inner { min-height: 4rem; }
  .ags-lp-brand strong { font-size: 1.2rem; }
  .ags-lp-brand span { display: block; }
  .ags-lp-nav {
    display: flex;
    gap: 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ags-muted);
  }
  .ags-lp-nav a { text-decoration: none; }
  .ags-lp-nav a:hover { color: var(--ags-teal-deep); }
  .ags-lp-actions .ags-btn--ghost { display: inline-flex; }
  .ags-lp-actions .ags-btn--primary {
    min-height: 44px;
    font-size: 0.9rem;
  }
  .ags-hero {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 2.75rem 0 3.25rem;
    min-height: calc(100vh - 4.5rem);
    gap: 2rem;
  }
  .ags-hero h1 { font-size: clamp(2.6rem, 4vw, 3.5rem); }
  .ags-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
  }
  .ags-btn--lg { width: auto; }
  .ags-hero__visual { min-height: 560px; }
  .ags-iphone--hero { --ags-phone-w: min(290px, 100%); }
  .ags-iphone--demo { --ags-phone-w: min(320px, 100%); }
  .ags-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .ags-step { border-top: 0; padding-top: 0; }
  .ags-demo {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .ags-demo__stage { min-height: 620px; }
  .ags-split { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .ags-si {
    grid-template-columns: minmax(14rem, 17rem) 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  .ags-si__link { justify-self: start; max-width: 17rem; }
  .ags-si__star { width: 13.5rem; }
  .ags-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem 2rem;
  }
  .ags-sec { padding: 3.5rem 0; }
  .ags-final { padding: 3.75rem 0 4rem; }
  .ags-final .ags-hero__ctas { display: flex; justify-content: center; }
  .ags-sticky { display: none; }
  .ags-lp-footer { padding-bottom: 2rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .ags-iphone--hero { animation: ags-float 6.5s ease-in-out infinite; }
  .ags-iphone--demo { animation: ags-float 7.5s ease-in-out infinite; }
  .ags-hero__copy { animation: ags-rise 0.65s ease-out both; }
  .ags-hero__visual { animation: ags-rise 0.85s 0.08s ease-out both; }
  .ags-si__star { animation: ags-si-pulse 5.5s ease-in-out infinite; }
}
@keyframes ags-si-pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.02); }
}
@keyframes ags-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}
@keyframes ags-rise {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
