* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #16201e;
  --muted: #5f6c68;
  --green: #147566;
  --green-dark: #0d5348;
  --mint: #dcefeb;
  --mint-soft: #eef7f4;
  --ivory: #f7f4ed;
  --paper: #fffefb;
  --white: #ffffff;
  --line: #dfe6e2;
  --coral: #cf4d3f;
  --shadow: 0 24px 70px rgba(20, 70, 61, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

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

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(223, 230, 226, 0.78);
  background: rgba(255, 254, 251, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(20, 117, 102, 0.16);
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  margin: 0 auto;
}

.main-nav a {
  position: relative;
  color: #41504c;
  font-size: 14px;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 10px 28px rgba(20, 117, 102, 0.18);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 14px 32px rgba(20, 117, 102, 0.24);
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

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

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(182, 226, 216, 0.52), transparent 31%),
    linear-gradient(135deg, #fbf9f4 0%, #f7f4ed 55%, #eef7f4 100%);
}

.hero::before {
  position: absolute;
  top: -180px;
  left: -160px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(20, 117, 102, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 70px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(50px, 6.3vw, 82px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: #4e5d59;
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-points {
  margin: 34px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

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

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(20, 117, 102, 0.16);
  border-radius: 50%;
}

.visual-orbit-one {
  width: 520px;
  height: 520px;
}

.visual-orbit-two {
  width: 410px;
  height: 410px;
  border-style: dashed;
  transform: rotate(-18deg);
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: 306px;
  height: 590px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(21, 45, 40, 0.13);
  border-radius: 44px;
  background: #101614;
  box-shadow: 0 36px 80px rgba(16, 52, 46, 0.24);
  transform: rotate(2deg);
}

.phone-shell img {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  object-fit: cover;
  object-position: top;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 21px;
  left: 50%;
  width: 72px;
  height: 20px;
  border-radius: 999px;
  background: #101614;
  transform: translateX(-50%);
}

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 192px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 117, 102, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(20, 70, 61, 0.14);
  backdrop-filter: blur(12px);
}

.floating-card div {
  display: grid;
}

.floating-card strong {
  font-size: 14px;
}

.floating-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.floating-card-top {
  top: 92px;
  left: -4px;
}

.floating-card-bottom {
  right: -14px;
  bottom: 96px;
}

.floating-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--mint);
  color: var(--green);
  font-weight: 900;
}

.status-dot {
  width: 13px;
  height: 13px;
  border: 4px solid #bde5da;
  border-radius: 50%;
  background: var(--green);
  box-sizing: content-box;
}

.section {
  padding: 110px 0;
}

.section-heading h2,
.showcase-copy h2,
.service-panel h2,
.about-grid h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.section-heading > p:last-child,
.showcase-copy > p,
.service-panel > p,
.about-grid > div > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  margin: 0;
}

.facts-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(35, 63, 56, 0.06);
}

.fact-card {
  min-height: 192px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.fact-card:last-child {
  border-right: 0;
}

.fact-card > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.fact-card h3 {
  margin: 38px 0 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.fact-card p {
  margin: 0;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.45;
}

.boundary-note {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 23px 26px;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--mint-soft);
}

.boundary-note strong {
  color: var(--green-dark);
}

.boundary-note p {
  margin: 0;
  color: #52635e;
}

.feature-section {
  background: var(--ivory);
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p:last-child {
  margin: 20px auto 0;
}

.feature-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #e6e4dd;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  box-shadow: 0 20px 50px rgba(31, 67, 59, 0.1);
  transform: translateY(-5px);
}

.feature-card-accent {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.feature-index {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.feature-card-accent .feature-index {
  color: #bfeadd;
}

.feature-card h3 {
  margin: 66px 0 12px;
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.feature-card-accent p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #dff7ef;
  font-size: 11px;
}

.showcase-section {
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(470px, 1.15fr);
  align-items: center;
  gap: 90px;
}

.showcase-copy > p {
  margin: 24px 0 0;
}

.showcase-list {
  margin: 36px 0;
}

.showcase-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.showcase-list dt {
  font-weight: 800;
}

.showcase-list dd {
  margin: 0;
  color: var(--muted);
}

.screenshots {
  position: relative;
  min-height: 690px;
}

.screenshots::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  transform: translate(-50%, -50%);
}

.screenshot-card {
  position: absolute;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
}

.screenshot-card img {
  width: 270px;
  height: 570px;
  border-radius: 23px;
  object-fit: cover;
  object-position: top;
}

.screenshot-card figcaption {
  padding: 11px 8px 5px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.screenshot-card-front {
  z-index: 2;
  top: 15px;
  left: 54px;
  transform: rotate(-4deg);
}

.screenshot-card-back {
  right: 36px;
  bottom: 4px;
  transform: rotate(5deg);
}

.steps-section {
  border-top: 1px solid var(--line);
  background: #fbfcfa;
}

.steps-grid {
  margin: 54px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  list-style: none;
  overflow: hidden;
}

.steps-grid li {
  min-height: 230px;
  padding: 28px;
  background: white;
}

.steps-grid li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.steps-grid h3 {
  margin: 48px 0 10px;
  font-size: 19px;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-section {
  background: var(--green-dark);
  color: white;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 70px;
  align-items: center;
}

.eyebrow-light {
  color: #9fddcf;
}

.service-panel > p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.service-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-light {
  border-color: white;
  background: white;
  color: var(--green-dark);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--mint);
  color: var(--green-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  box-shadow: none;
}

.service-cards {
  display: grid;
  gap: 14px;
}

.service-cards article {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.service-cards span {
  color: #9fddcf;
  font-size: 12px;
}

.service-cards h3 {
  margin: 8px 0 22px;
  font-size: 19px;
}

.service-cards a {
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--green);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

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

.faq-list details p {
  margin: -5px 50px 24px 0;
  color: var(--muted);
}

.about-section {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 90px;
}

.about-grid > div > p:last-child {
  margin: 24px 0 0;
}

.company-info {
  margin: 0;
  border-top: 1px solid #d9d8d2;
}

.company-info div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid #d9d8d2;
}

.company-info dt {
  color: var(--muted);
}

.company-info dd {
  margin: 0;
  font-weight: 750;
}

.download-cta {
  padding: 54px 0;
  background: var(--white);
}

.download-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, #f7fbf9, #eef7f4);
}

.download-cta-inner img {
  border-radius: 20px;
}

.download-cta-inner p {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.download-cta-inner h2 {
  margin: 4px 0 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
}

.site-footer {
  padding: 64px 0 24px;
  background: #121b19;
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  padding-bottom: 44px;
}

.footer-brand .brand small,
.footer-brand > p {
  color: rgba(255, 255, 255, 0.52);
}

.footer-brand > p {
  margin: 20px 0 0;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  text-decoration: none;
}

.policy-body {
  background: var(--ivory);
}

.policy-shell {
  padding: 62px 0 90px;
}

.policy-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 18px 50px rgba(35, 63, 56, 0.06);
}

.policy-header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.policy-header h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 58px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.policy-meta {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.policy-intro {
  margin: 22px 0 0;
  color: #475651;
}

.policy-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.policy-section:last-child {
  border-bottom: 0;
}

.policy-section h2 {
  margin: 0 0 14px;
  font-size: 21px;
}

.policy-section p {
  margin: 10px 0 0;
  color: #46534f;
}

.policy-section .strong {
  color: var(--ink);
  font-weight: 750;
}

.policy-back {
  margin-bottom: 20px;
}

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

  .header-inner {
    justify-content: space-between;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(620px, 100%);
    margin: 0 auto;
  }

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

  .fact-card:nth-child(2) {
    border-right: 0;
  }

  .fact-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .showcase-grid,
  .service-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    max-width: 720px;
  }

  .screenshots {
    width: min(650px, 100%);
    margin: 0 auto;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .site-header .button-small {
    display: none;
  }

  .header-inner {
    min-height: 70px;
  }

  .hero-grid {
    padding-top: 58px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-points {
    gap: 10px 18px;
  }

  .hero-visual {
    min-height: 530px;
  }

  .visual-orbit-one {
    width: 430px;
    height: 430px;
  }

  .visual-orbit-two {
    width: 340px;
    height: 340px;
  }

  .phone-shell {
    width: 260px;
    height: 500px;
  }

  .floating-card {
    min-width: 166px;
    padding: 11px 12px;
  }

  .floating-card-top {
    top: 60px;
    left: -10px;
  }

  .floating-card-bottom {
    right: -4px;
    bottom: 74px;
  }

  .section {
    padding: 78px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .fact-card,
  .fact-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-card:last-child {
    border-bottom: 0;
  }

  .boundary-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .showcase-grid {
    gap: 50px;
  }

  .screenshots {
    min-height: 570px;
  }

  .screenshots::before {
    width: 400px;
    height: 400px;
  }

  .screenshot-card img {
    width: 210px;
    height: 445px;
  }

  .screenshot-card-front {
    top: 8px;
    left: 0;
  }

  .screenshot-card-back {
    right: 0;
    bottom: 0;
  }

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

  .steps-grid li {
    min-height: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
  }

  .steps-grid h3 {
    margin: 0 0 8px;
  }

  .company-info div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .download-cta-inner {
    grid-template-columns: auto 1fr;
    padding: 28px 24px;
  }

  .download-cta-inner .button {
    grid-column: 1 / -1;
  }

  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 42px;
  }

  .footer-links {
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-shell {
    padding: 28px 0 60px;
  }

  .policy-card {
    border-radius: var(--radius-md);
  }
}

@media (max-width: 430px) {
  .floating-card-top {
    left: -18px;
  }

  .floating-card-bottom {
    right: -14px;
  }

  .screenshots {
    min-height: 510px;
  }

  .screenshot-card {
    padding: 7px;
    border-radius: 22px;
  }

  .screenshot-card img {
    width: 182px;
    height: 390px;
    border-radius: 17px;
  }

  .screenshot-card-front {
    left: -7px;
  }

  .screenshot-card-back {
    right: -7px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
