:root {
  color-scheme: light;
  --ink: #0b2728;
  --ink-soft: #234748;
  --muted: #637b7a;
  --teal: #087b79;
  --teal-bright: #11a49f;
  --teal-pale: #dff4f1;
  --mint: #eaf8f0;
  --green: #13824b;
  --line: #d9e7e4;
  --paper: #ffffff;
  --canvas: #f2f8f7;
  --warm: #fff9ee;
  --amber: #a66205;
  --danger: #b13c43;
  --focus-ring: #006b68;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(9, 45, 45, 0.11);
  --font: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 84% 7%, rgba(53, 198, 190, 0.1), transparent 24rem),
    var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.wordmark strong,
.wordmark small {
  display: block;
  line-height: 1.1;
}

.wordmark strong {
  font-size: 14px;
  letter-spacing: -0.01em;
}

.wordmark small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ticket-logo {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(145deg, #0c6570, #0b3e49);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 8px 20px rgba(6, 35, 42, 0.16);
}

.ticket-logo::after {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff785c;
  box-shadow: 0 0 0 3px rgba(255, 120, 92, 0.13);
  content: "";
}

.ticket-logo i {
  position: relative;
  display: block;
  width: 24px;
  height: 16px;
  border-radius: 4px;
  background: #43e2c3;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 30%,
    87% 50%,
    100% 70%,
    100% 100%,
    0 100%,
    0 70%,
    13% 50%,
    0 30%
  );
}

.ticket-logo i::after {
  position: absolute;
  top: 3px;
  left: 8px;
  width: 7px;
  height: 4px;
  border-bottom: 2.5px solid #061a21;
  border-left: 2.5px solid #061a21;
  content: "";
  transform: rotate(-45deg);
}

.ticket-logo--small {
  width: 31px;
  height: 31px;
  border-radius: 10px;
}

.ticket-logo--small::after {
  top: 5px;
  right: 5px;
  width: 4px;
  height: 4px;
}

.ticket-logo--small i {
  width: 20px;
  height: 13px;
}

.ticket-logo--small i::after {
  top: 2px;
  left: 6px;
  width: 6px;
  height: 3px;
  border-width: 0 0 2px 2px;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-links > a {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.header-links > a:hover {
  color: var(--teal);
}

.language-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switch button {
  min-width: 34px;
  min-height: 29px;
  padding: 0 7px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
}

.language-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: #ffffff;
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(43px, 6.7vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.eyebrow {
  margin-bottom: 11px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  align-items: center;
  gap: clamp(40px, 7vw, 95px);
  min-height: 660px;
  padding: 66px 0 94px;
}

.success-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  margin-bottom: 28px;
  padding: 15px 20px 15px 14px;
  border: 2px solid #a9dfc0;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4fcf7 0%, var(--mint) 100%);
  color: var(--green);
  box-shadow: 0 14px 34px rgba(19, 130, 75, 0.13);
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.success-check {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(19, 130, 75, 0.22);
  font-size: 22px;
  font-weight: 900;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 29px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 150ms ease,
    background 150ms ease,
    border-color 150ms ease;
}

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

.button--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 25px rgba(8, 123, 121, 0.2);
}

.button--primary:hover {
  background: #066a68;
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink-soft);
}

.fine-print {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.hero-product {
  position: relative;
  display: grid;
  min-height: 490px;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(8, 123, 121, 0.11);
  border-radius: 50%;
}

.orbit--one {
  width: 480px;
  height: 480px;
}

.orbit--two {
  width: 355px;
  height: 355px;
  border-style: dashed;
}

.product-window {
  position: relative;
  z-index: 2;
  width: min(430px, 100%);
  padding: 22px;
  border: 1px solid rgba(17, 109, 107, 0.15);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.product-window__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.product-brand strong {
  font-size: 13px;
}

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

.product-progress {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
  padding: 26px 2px 22px;
}

.product-progress__ring {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--teal-bright) 78%, var(--teal-pale) 0);
}

.product-progress__ring::before {
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: var(--paper);
  content: "";
}

.product-progress__ring span {
  z-index: 1;
  font-size: 19px;
  font-weight: 850;
}

.product-label,
.product-progress strong,
.product-progress small {
  display: block;
}

.product-label {
  margin-bottom: 3px;
  color: var(--teal);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-progress strong {
  font-size: 15px;
  line-height: 1.35;
}

.product-progress small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.product-savings {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--canvas);
  color: var(--muted);
  font-size: 10px;
}

.product-savings b {
  color: var(--ink-soft);
  font-size: 11px;
}

.product-savings__best {
  color: var(--green) !important;
}

.product-button {
  display: grid;
  min-height: 47px;
  margin-top: 12px;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}

.floating-ticket {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 10px;
  box-shadow: 0 16px 35px rgba(9, 45, 45, 0.14);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.floating-ticket::before,
.floating-ticket::after {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--canvas);
  content: "";
  transform: translateY(-50%);
}

.floating-ticket::before {
  left: -7px;
}

.floating-ticket::after {
  right: -7px;
}

.floating-ticket--left {
  top: 92px;
  left: 3px;
  width: 88px;
  height: 49px;
  background: #ffd987;
  color: #714a00;
  transform: rotate(-9deg);
}

.floating-ticket--right {
  right: 0;
  bottom: 62px;
  width: 65px;
  height: 47px;
  background: var(--teal);
  color: #fff;
  font-size: 17px;
  transform: rotate(7deg);
}

.pin-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: 45px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 12px 35px rgba(9, 45, 45, 0.05);
}

.pin-copy {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--teal);
  font-size: 9px;
  font-weight: 850;
}

.pin-copy h2 {
  font-size: clamp(26px, 3.2vw, 36px);
}

.pin-copy p:last-child {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.toolbar-demo {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 78px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbfa;
  box-shadow: inset 0 -1px #edf3f2;
}

.toolbar-pill {
  flex: 1;
  height: 34px;
  border-radius: 99px;
  background: #e8efee;
}

.toolbar-extension,
.toolbar-pin {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: #e8efee;
  color: var(--ink-soft);
  font-size: 15px;
}

.toolbar-divider {
  width: 1px;
  height: 29px;
  background: var(--line);
}

.toolbar-ticket {
  position: relative;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  background: linear-gradient(145deg, #0c6570, #0b3e49);
  box-shadow: 0 0 0 5px var(--teal-pale);
}

.toolbar-ticket::after {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff785c;
  content: "";
}

.toolbar-ticket i {
  position: relative;
  width: 20px;
  height: 13px;
  border-radius: 3px;
  background: #43e2c3;
  clip-path: polygon(
    0 0, 100% 0, 100% 30%, 87% 50%, 100% 70%, 100% 100%,
    0 100%, 0 70%, 13% 50%, 0 30%
  );
}

.toolbar-ticket i::after {
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 3px;
  border-bottom: 2px solid #061a21;
  border-left: 2px solid #061a21;
  content: "";
  transform: rotate(-45deg);
}

.toolbar-pin {
  background: var(--teal-pale);
  color: var(--teal);
  transform: rotate(-10deg);
}

.toolbar-more {
  color: var(--muted);
  letter-spacing: 0.1em;
}

.how-section {
  padding: 125px 0 115px;
}

.section-heading {
  max-width: 690px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading > p:last-child {
  margin: 17px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step-grid li {
  position: relative;
  min-height: 305px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.step-grid li::after {
  position: absolute;
  right: -37px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--teal-pale);
  content: "";
  opacity: 0.55;
}

.step-grid .step-number {
  margin-left: auto;
}

.step-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 21px 0 24px;
  place-items: center;
  border-radius: 18px;
  background: var(--teal-pale);
}

.bag-shape {
  position: relative;
  width: 27px;
  height: 25px;
  border: 2px solid var(--teal);
  border-radius: 4px 4px 7px 7px;
}

.bag-shape::before {
  position: absolute;
  top: -9px;
  left: 6px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--teal);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  content: "";
}

.scan-shape {
  position: relative;
  width: 29px;
  height: 29px;
  border: 2px dashed var(--teal);
  border-radius: 8px;
}

.scan-shape::after {
  position: absolute;
  top: 12px;
  left: 5px;
  width: 15px;
  height: 2px;
  background: var(--teal);
  box-shadow: 0 -5px var(--teal), 0 5px var(--teal);
  content: "";
}

.check-shape {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.step-grid p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 16px;
}

.trust-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-height: 280px;
  padding: 38px;
  border-radius: var(--radius-md);
}

.trust-card h2 {
  font-size: clamp(26px, 3.6vw, 38px);
}

.trust-card p:not(.eyebrow):not(.service-status) {
  max-width: 610px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.trust-card--privacy {
  border: 1px solid #cfe7da;
  background: var(--mint);
}

.trust-card--status {
  border: 1px solid var(--line);
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

.privacy-seal {
  display: grid;
  min-width: 150px;
  min-height: 150px;
  place-items: center;
  align-content: center;
  border: 1px solid #bae0c9;
  border-radius: 50%;
  color: var(--green);
  text-align: center;
}

.shield-shape {
  display: grid;
  width: 43px;
  height: 49px;
  place-items: center;
  border-radius: 20px 20px 25px 25px;
  background: var(--green);
  color: #fff;
  clip-path: polygon(50% 0, 95% 18%, 90% 72%, 50% 100%, 10% 72%, 5% 18%);
}

.privacy-seal small {
  margin-top: 9px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.service-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 21px 0 11px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(19, 130, 75, 0.1);
}

.service-dot--checking {
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(166, 98, 5, 0.1);
}

.service-dot--unknown {
  background: var(--muted);
  box-shadow: 0 0 0 5px rgba(99, 123, 122, 0.1);
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
}

.status-monogram {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--canvas);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.faq-section {
  padding: 120px 0;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 42px 23px 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 4px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  content: "+";
  font-size: 17px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  margin: -8px 0 23px;
  color: var(--muted);
  font-size: 13px;
}

.closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 88px;
  padding: clamp(32px, 6vw, 65px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(62, 220, 208, 0.2), transparent 20rem),
    var(--ink);
  color: #fff;
}

.closing-card .eyebrow {
  color: #70dcd5;
}

.closing-card h2 {
  color: #fff;
}

.closing-card p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  color: #a9c4c2;
  font-size: 13px;
}

.button--light {
  flex: 0 0 auto;
  background: #fff;
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  width: min(1180px, calc(100% - 40px));
  min-height: 110px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer nav a,
.site-footer p {
  color: var(--muted);
  font-size: 10px;
}

.site-footer nav a {
  font-weight: 750;
  text-decoration: none;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

/* Interior pages */
.interior-main {
  max-width: 900px;
  padding: 76px 0 110px;
}

.interior-hero {
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line);
}

.interior-hero h1 {
  max-width: 790px;
  font-size: clamp(42px, 7vw, 70px);
}

.interior-hero > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.content-stack {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.content-card {
  padding: clamp(25px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.content-card h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.content-card h3 {
  margin-top: 29px;
  font-size: 16px;
}

.content-card p,
.content-card li {
  color: var(--muted);
  font-size: 13px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card ul,
.content-card ol {
  display: grid;
  gap: 9px;
  padding-left: 20px;
}

.content-card a {
  color: var(--teal);
  font-weight: 750;
}

.plain-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.plain-facts li {
  padding: 15px;
  border-radius: 11px;
  background: var(--canvas);
}

.plain-facts strong,
.plain-facts span {
  display: block;
}

.plain-facts strong {
  color: var(--ink);
  font-size: 11px;
}

.plain-facts span {
  margin-top: 3px;
  font-size: 10px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.support-grid .content-card {
  min-height: 250px;
}

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

.support-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.support-meta span {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  font-size: 9px;
}

.uninstall-card {
  max-width: 720px;
  margin: 30px auto 0;
  text-align: center;
}

.uninstall-icon {
  position: relative;
  display: grid;
  width: 72px;
  height: 58px;
  margin: 0 auto 25px;
  place-items: center;
  border-radius: 15px;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 20px;
  font-weight: 850;
}

.uninstall-icon::before,
.uninstall-icon::after {
  position: absolute;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.uninstall-icon::before {
  left: -10px;
}

.uninstall-icon::after {
  right: -10px;
}

.uninstall-card .hero-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

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

  .hero-copy h1,
  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .pin-card {
    grid-template-columns: 1fr;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .step-grid li {
    min-height: 250px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 15px;
    padding: 30px 0;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    padding: 18px 0;
  }

  .header-links {
    gap: 10px;
  }

  .header-links > a {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 70px;
  }

  .success-chip {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    font-size: 17px;
  }

  .success-check {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-product {
    min-height: 390px;
  }

  .orbit--one {
    width: min(350px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .orbit--two {
    width: 275px;
    height: 275px;
  }

  .product-window {
    padding: 17px;
  }

  .floating-ticket--left {
    left: -4px;
  }

  .floating-ticket--right {
    right: -4px;
  }

  .pin-card {
    gap: 28px;
  }

  .toolbar-demo {
    gap: 9px;
    padding: 0 12px;
  }

  .toolbar-pill {
    display: none;
  }

  .how-section,
  .faq-section {
    padding: 88px 0;
  }

  .trust-card {
    align-items: flex-start;
    padding: 28px;
  }

  .privacy-seal,
  .status-monogram {
    display: none;
  }

  .closing-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .plain-facts,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-grid .content-card--wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
