:root {
  --green-50: #f0f8f4;
  --green-100: #dcefe5;
  --green-200: #b8dfca;
  --green-400: #52a879;
  --green-500: #318d60;
  --green-600: #22754e;
  --green-700: #195b3e;
  --green-800: #144832;
  --green-900: #103629;

  --text: #16211c;
  --text-soft: #65716b;

  --white: #ffffff;
  --background: #fbfcfb;
  --border: #e4e9e6;

  --shadow:
    0 20px 60px rgba(16, 54, 41, 0.08);

  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 32px;

  --container: 1180px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  background: var(--background);
  color: var(--text);

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
}


a {
  color: inherit;
  text-decoration: none;
}


button {
  font: inherit;
}


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


/* HEADER */


.site-header {
  position: sticky;
  top: 0;

  z-index: 100;

  background: rgba(251, 252, 251, 0.88);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(228, 233, 230, 0.8);
}


.navbar {
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}


.brand {
  display: inline-flex;
  align-items: center;

  gap: 12px;
}


.brand-mark {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: var(--green-700);
  color: var(--white);

  font-size: 20px;
  font-weight: 800;
}


.brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1.15;
}


.brand-text strong {
  font-size: 16px;
  letter-spacing: 0.04em;
}


.brand-text span {
  margin-top: 4px;

  color: var(--text-soft);

  font-size: 11px;
}


.navigation {
  display: flex;
  align-items: center;

  gap: 28px;

  color: #48544e;

  font-size: 14px;
  font-weight: 600;
}


.navigation > a:not(.nav-cta) {
  transition:
    color 160ms ease,
    transform 160ms ease;
}


.navigation > a:not(.nav-cta):hover {
  color: var(--green-700);
}


.nav-cta {
  padding: 11px 17px;

  border-radius: 12px;

  background: var(--green-700);
  color: var(--white);

  transition:
    transform 160ms ease,
    background 160ms ease;
}


.nav-cta:hover {
  background: var(--green-800);
  transform: translateY(-1px);
}


.menu-button {
  display: none;

  width: 44px;
  height: 44px;

  border: 0;
  background: transparent;

  cursor: pointer;
}


.menu-button span {
  display: block;

  width: 23px;
  height: 2px;

  margin: 5px auto;

  background: var(--green-900);

  border-radius: 999px;
}


/* HERO */


.hero {
  position: relative;

  overflow: hidden;

  padding: 100px 0 110px;

  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(82, 168, 121, 0.15),
      transparent 31%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(49, 141, 96, 0.08),
      transparent 30%
    );
}


.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(380px, 0.95fr);

  align-items: center;

  gap: 80px;
}


.eyebrow {
  display: inline-flex;

  padding: 7px 11px;

  border: 1px solid var(--green-200);
  border-radius: 999px;

  background: var(--green-50);
  color: var(--green-700);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.05em;
  text-transform: uppercase;
}


.hero h1 {
  max-width: 720px;

  margin:
    24px
    0
    24px;

  font-size: clamp(45px, 6vw, 76px);

  line-height: 1.02;

  letter-spacing: -0.055em;
}


.hero h1 span {
  color: var(--green-600);
}


.hero-description {
  max-width: 650px;

  margin: 0;

  color: var(--text-soft);

  font-size: 19px;
  line-height: 1.7;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 34px;
}


.button {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 22px;

  border-radius: 14px;

  font-size: 15px;
  font-weight: 700;

  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}


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


.button-primary {
  background: var(--green-700);
  color: var(--white);
}


.button-primary:hover {
  background: var(--green-800);
}


.button-secondary {
  border: 1px solid var(--border);

  background: var(--white);
}


.button-secondary:hover {
  border-color: var(--green-200);
}


.hero-points {
  display: flex;
  flex-wrap: wrap;

  gap: 18px;

  margin-top: 34px;

  color: #536059;

  font-size: 13px;
  font-weight: 600;
}


.hero-point {
  display: flex;
  align-items: center;

  gap: 7px;
}


.check {
  color: var(--green-600);

  font-size: 15px;
  font-weight: 900;
}


/* MOCK PHONE */


.hero-visual {
  position: relative;

  min-height: 620px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.background-orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(4px);
}


.orb-one {
  width: 340px;
  height: 340px;

  background: var(--green-100);

  top: 10%;
  right: 2%;
}


.orb-two {
  width: 180px;
  height: 180px;

  background: rgba(82, 168, 121, 0.19);

  bottom: 5%;
  left: 5%;
}


.phone {
  position: relative;

  width: 320px;

  z-index: 2;

  padding: 10px;

  border-radius: 42px;

  background: #16211c;

  box-shadow:
    0 40px 90px rgba(16, 54, 41, 0.22);
}


.phone-top {
  position: absolute;

  z-index: 3;

  top: 14px;
  left: 50%;

  transform: translateX(-50%);

  width: 100px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: #16211c;
}


.phone-top span {
  width: 38px;
  height: 4px;

  border-radius: 999px;

  background: #35403b;
}


.phone-screen {
  min-height: 610px;

  padding:
    52px
    17px
    20px;

  overflow: hidden;

  border-radius: 34px;

  background: #f7faf8;
}


.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 22px;
}


.app-header div:first-child {
  display: flex;
  flex-direction: column;
}


.app-header small {
  color: #78847e;
}


.app-header strong {
  color: var(--green-800);

  font-size: 20px;
}


.avatar {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--green-700);
  color: var(--white);

  font-weight: 800;
}


.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 10px;

  margin-bottom: 24px;
}


.mini-stat {
  padding: 15px;

  border: 1px solid #e0e8e3;
  border-radius: 15px;

  background: var(--white);
}


.mini-stat span {
  display: block;

  color: #7b8781;

  font-size: 10px;
}


.mini-stat strong {
  display: block;

  margin-top: 3px;

  color: var(--green-800);

  font-size: 24px;
}


.mock-section-title {
  margin-bottom: 10px;

  color: #4c5952;

  font-size: 12px;
  font-weight: 800;
}


.procedure-card {
  display: flex;
  align-items: center;

  gap: 11px;

  margin-bottom: 9px;
  padding: 12px;

  border: 1px solid #e3eae6;
  border-radius: 13px;

  background: var(--white);
}


.procedure-icon {
  width: 34px;
  height: 34px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: var(--green-100);
  color: var(--green-700);

  font-size: 22px;
}


.procedure-card div:last-child {
  display: flex;
  flex-direction: column;
}


.procedure-card strong {
  font-size: 11px;
}


.procedure-card span {
  color: #89938e;

  font-size: 9px;
}


.mock-bottom-nav {
  position: absolute;

  bottom: 30px;
  left: 28px;
  right: 28px;

  display: flex;
  justify-content: space-between;

  padding:
    13px
    17px;

  border: 1px solid #e4eae6;
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.94);

  color: #738078;

  font-size: 9px;
  font-weight: 700;
}


/* SECTIONS */


.section {
  padding: 110px 0;
}


.section-soft {
  background: var(--green-50);
}


.section-heading {
  max-width: 750px;

  margin-bottom: 58px;
}


.section-heading.centered {
  margin-left: auto;
  margin-right: auto;

  text-align: center;
}


.section h2 {
  margin:
    20px
    0
    20px;

  font-size: clamp(34px, 4vw, 50px);

  line-height: 1.1;

  letter-spacing: -0.04em;
}


.section-heading p,
.large-paragraph {
  color: var(--text-soft);

  font-size: 17px;
}


/* FEATURES */


.features-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}


.feature-card {
  min-height: 260px;

  padding: 28px;

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  background: var(--white);

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}


.feature-card:hover {
  transform: translateY(-5px);

  border-color: var(--green-200);

  box-shadow: var(--shadow);
}


.feature-number {
  margin-bottom: 35px;

  color: var(--green-500);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.08em;
}


.feature-card h3 {
  margin:
    0
    0
    12px;

  font-size: 20px;
}


.feature-card p {
  margin: 0;

  color: var(--text-soft);

  font-size: 14px;
}


/* SECURITY */


.security-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 100px;

  align-items: center;
}


.security-panel {
  padding: 28px;

  border: 1px solid var(--green-200);
  border-radius: var(--radius-large);

  background: rgba(255, 255, 255, 0.72);

  box-shadow: var(--shadow);
}


.security-item {
  display: flex;

  gap: 17px;

  padding: 20px 0;

  border-bottom: 1px solid var(--border);
}


.security-item:first-child {
  padding-top: 0;
}


.security-item:last-child {
  padding-bottom: 0;

  border-bottom: 0;
}


.security-icon {
  width: 35px;
  height: 35px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--green-100);
  color: var(--green-700);

  font-weight: 900;
}


.security-item strong {
  display: block;

  margin-bottom: 5px;
}


.security-item p {
  margin: 0;

  color: var(--text-soft);

  font-size: 13px;
}


/* PLANS */


.plans-grid {
  max-width: 850px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 20px;

  margin: 0 auto;
}


.plan-card {
  position: relative;

  padding: 35px;

  border: 1px solid var(--border);
  border-radius: 26px;

  background: var(--white);
}


.plan-pro {
  border-color: var(--green-400);

  background:
    linear-gradient(
      145deg,
      #ffffff,
      var(--green-50)
    );

  box-shadow: var(--shadow);
}


.pro-label {
  position: absolute;

  top: 20px;
  right: 20px;

  padding:
    5px
    9px;

  border-radius: 999px;

  background: var(--green-700);
  color: var(--white);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 0.07em;
}


.plan-header {
  display: flex;
  flex-direction: column;

  gap: 7px;

  padding-bottom: 25px;

  border-bottom: 1px solid var(--border);
}


.plan-name {
  color: var(--green-600);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.06em;
}


.plan-header strong {
  font-size: 28px;
}


.plan-features {
  display: flex;
  flex-direction: column;

  gap: 13px;

  margin-top: 25px;

  color: #526058;

  font-size: 14px;
}


/* ABOUT */


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


.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;
}


.eyebrow-light {
  border-color: rgba(255, 255, 255, 0.15);

  background: rgba(255, 255, 255, 0.08);
  color: #cce9d9;
}


.about-grid p {
  margin:
    0
    0
    20px;

  color: #c7d3cd;

  font-size: 17px;
}


/* ANDROID */


.android-section {
  padding-top: 90px;
}


.android-card {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 50px;

  padding: 50px;

  border: 1px solid var(--green-200);
  border-radius: var(--radius-large);

  background:
    linear-gradient(
      135deg,
      var(--green-50),
      var(--white)
    );
}


.android-card p {
  max-width: 550px;

  margin-bottom: 0;

  color: var(--text-soft);
}


.android-badge {
  min-width: 220px;

  padding:
    15px
    22px;

  border-radius: 14px;

  background: #15201b;
  color: var(--white);
}


.android-badge span {
  display: block;

  color: #bac5bf;

  font-size: 11px;
}


.android-badge strong {
  display: block;

  font-size: 22px;
}


/* FOOTER */


.footer {
  padding:
    65px
    0
    30px;

  border-top: 1px solid var(--border);

  background: var(--white);
}


.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 50px;

  padding-bottom: 45px;
}


.footer-brand {
  margin-bottom: 20px;
}


.footer-grid p {
  max-width: 380px;

  color: var(--text-soft);

  font-size: 13px;
}


.footer-links {
  display: flex;
  flex-direction: column;

  gap: 10px;

  font-size: 13px;
}


.footer-links strong {
  margin-bottom: 5px;
}


.footer-links a,
.footer-links span {
  color: var(--text-soft);
}


.footer-links a:hover {
  color: var(--green-700);
}


.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-top: 25px;

  border-top: 1px solid var(--border);

  color: #87918c;

  font-size: 12px;
}


/* RESPONSIVE */

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green-700);
  outline-offset: 4px;
}


@media (max-width: 900px) {

  .navigation {
    position: absolute;

    top: 78px;
    left: 20px;
    right: 20px;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 12px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: var(--white);

    box-shadow: var(--shadow);
  }


  .navigation.open {
    display: flex;
  }


  .navigation a {
    padding: 13px;
  }


  .nav-cta {
    margin-top: 5px;

    text-align: center;
  }


  .menu-button {
    display: block;
  }


  .hero {
    padding-top: 70px;
  }


  .hero-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }


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


  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }


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


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


  .security-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .about-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }


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

}


@media (max-width: 620px) {

  .container {
    width: min(calc(100% - 28px), var(--container));
  }


  .brand-text span {
    display: none;
  }


  .hero {
    padding:
      60px
      0
      80px;
  }


  .hero h1 {
    font-size: 46px;
  }


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


  .hero-actions {
    flex-direction: column;
  }


  .button {
    width: 100%;
  }


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


  .phone {
    width: min(310px, 90vw);
  }


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


  .section {
    padding: 80px 0;
  }


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


  .security-panel {
    padding: 22px;
  }


  .android-card {
    padding: 30px;
  }


  .android-badge {
    width: 100%;
  }


  .footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }


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

    gap: 7px;
  }

}

/* =========================================================
   RESIDENT - REAL BRAND LOGO
   ========================================================= */


.brand-logo {
  width: 42px;
  height: 42px;

  display: block;

  object-fit: contain;

  border-radius: 10px;
}


/* =========================================================
   RESIDENT - INTERNAL PAGES
   ========================================================= */


.internal-main {
  min-height: 70vh;
}


.internal-hero {
  padding:
    90px
    0
    65px;

  border-bottom: 1px solid var(--border);

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(82, 168, 121, 0.13),
      transparent 30%
    ),
    var(--background);
}


.internal-hero-content {
  max-width: 820px;
}


.internal-hero h1 {
  margin:
    22px
    0
    20px;

  font-size: clamp(42px, 6vw, 66px);

  line-height: 1.05;

  letter-spacing: -0.05em;
}


.internal-hero p {
  max-width: 720px;

  margin: 0;

  color: var(--text-soft);

  font-size: 18px;
  line-height: 1.7;
}


.internal-content {
  padding:
    75px
    0
    110px;
}


.content-document {
  max-width: 820px;

  margin: 0 auto;
}


.content-document section {
  margin-bottom: 48px;
}


.content-document h2 {
  margin:
    0
    0
    16px;

  font-size: 27px;

  line-height: 1.2;

  letter-spacing: -0.025em;
}


.content-document h3 {
  margin:
    26px
    0
    10px;

  font-size: 18px;
}


.content-document p {
  margin:
    0
    0
    16px;

  color: #536059;

  font-size: 16px;
  line-height: 1.8;
}


.content-document ul {
  margin:
    15px
    0
    20px;

  padding-left: 22px;

  color: #536059;
}


.content-document li {
  margin-bottom: 10px;

  line-height: 1.7;
}


.info-box {
  margin:
    30px
    0;

  padding: 24px;

  border: 1px solid var(--green-200);
  border-radius: 18px;

  background: var(--green-50);
}


.info-box strong {
  display: block;

  margin-bottom: 8px;

  color: var(--green-800);
}


.info-box p {
  margin: 0;

  color: #536059;
}


.warning-box {
  margin:
    30px
    0;

  padding: 24px;

  border: 1px solid #e3d9b6;
  border-radius: 18px;

  background: #fffdf5;
}


.warning-box strong {
  display: block;

  margin-bottom: 8px;
}


.warning-box p {
  margin: 0;

  color: #645d48;
}


.contact-card {
  max-width: 700px;

  padding: 34px;

  border: 1px solid var(--border);
  border-radius: 24px;

  background: var(--white);

  box-shadow: var(--shadow);
}


.contact-card h2 {
  margin-top: 0;
}


.contact-card p {
  color: var(--text-soft);

  line-height: 1.8;
}


.contact-placeholder {
  display: inline-flex;

  margin-top: 12px;

  padding:
    12px
    16px;

  border-radius: 12px;

  background: var(--green-50);
  color: var(--green-800);

  font-weight: 700;
}


.back-link {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  margin-top: 25px;

  color: var(--green-700);

  font-size: 14px;
  font-weight: 700;
}


.back-link:hover {
  text-decoration: underline;
}


.document-meta {
  margin-bottom: 45px;

  padding-bottom: 22px;

  border-bottom: 1px solid var(--border);

  color: #849089;

  font-size: 13px;
}


/* =========================================================
   INTERNAL PAGES - MOBILE
   ========================================================= */


@media (max-width: 620px) {

  .internal-hero {
    padding:
      60px
      0
      45px;
  }


  .internal-hero h1 {
    font-size: 42px;
  }


  .internal-hero p {
    font-size: 16px;
  }


  .internal-content {
    padding:
      55px
      0
      80px;
  }


  .content-document h2 {
    font-size: 24px;
  }


  .contact-card {
    padding: 24px;
  }

}

/* =========================================================
   WEB-3 - HERO WITH REAL RESIDENT SCREENSHOT
   ========================================================= */

.real-phone {
  position: relative;

  z-index: 2;

  width: 330px;

  padding: 9px;

  border-radius: 44px;

  background: #18231e;

  box-shadow:
    0 45px 100px rgba(16, 54, 41, 0.22);
}


.real-phone-frame {
  width: 100%;

  overflow: hidden;

  border-radius: 35px;

  background: #ffffff;
}


.real-phone-screenshot {
  width: 100%;
  height: auto;

  display: block;
}


@media (max-width: 620px) {

  .real-phone {
    width: min(300px, 88vw);
  }

}

/* =========================================================
   WEB-3 - PRODUCT SHOWCASE
   ========================================================= */


.product-showcase {
  overflow: hidden;

  border-top: 1px solid var(--border);

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbf9 45%,
      #ffffff 100%
    );
}


.showcase-list {
  display: flex;
  flex-direction: column;

  gap: 120px;
}


.showcase-row {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(360px, 1.1fr);

  align-items: center;

  gap: 100px;
}


.showcase-row-reverse {
  grid-template-columns:
    minmax(360px, 1.1fr)
    minmax(0, 0.9fr);
}


.showcase-row-reverse .showcase-copy {
  order: 2;
}


.showcase-row-reverse .showcase-visual {
  order: 1;
}


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


.showcase-number {
  display: inline-flex;

  margin-bottom: 20px;

  color: var(--green-600);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.1em;
}


.showcase-copy h3 {
  margin:
    0
    0
    20px;

  font-size: clamp(32px, 4vw, 48px);

  line-height: 1.08;

  letter-spacing: -0.04em;
}


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

  color: var(--text-soft);

  font-size: 17px;
  line-height: 1.75;
}


.showcase-points {
  display: flex;
  flex-direction: column;

  gap: 11px;

  margin: 0;

  padding: 0;

  list-style: none;
}


.showcase-points li {
  position: relative;

  padding-left: 27px;

  color: #4e5d55;

  font-size: 14px;
  font-weight: 600;
}


.showcase-points li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--green-600);

  font-weight: 900;
}


.showcase-visual {
  min-height: 650px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 55px;

  border: 1px solid var(--green-100);
  border-radius: 36px;

  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(82, 168, 121, 0.19),
      rgba(240, 248, 244, 0.8) 50%,
      rgba(255, 255, 255, 0.9) 100%
    );
}


.screenshot-phone {
  width: 295px;

  overflow: hidden;

  border: 9px solid #18231e;
  border-radius: 38px;

  background: #18231e;

  box-shadow:
    0 30px 70px rgba(16, 54, 41, 0.2);

  transform: rotate(1.5deg);

  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}


.screenshot-phone:hover {
  transform:
    rotate(0deg)
    translateY(-6px);

  box-shadow:
    0 38px 85px rgba(16, 54, 41, 0.25);
}


.screenshot-phone img {
  width: 100%;
  height: auto;

  display: block;

  border-radius: 28px;
}


.showcase-double {
  min-height: 690px;
}


.screenshot-phone-small {
  position: absolute;

  width: 245px;

  left: 15%;

  transform: rotate(-5deg);
}


.screenshot-phone-offset {
  left: auto;
  right: 15%;

  transform:
    rotate(5deg)
    translateY(35px);
}


.screenshot-phone-small:hover {
  z-index: 3;

  transform:
    rotate(0deg)
    translateY(-5px);
}


.privacy-inline {
  margin-top: 28px;

  padding: 20px;

  border: 1px solid var(--green-200);
  border-radius: 16px;

  background: var(--green-50);
}


.privacy-inline strong {
  display: block;

  margin-bottom: 5px;

  color: var(--green-800);

  font-size: 14px;
}


.privacy-inline span {
  display: block;

  color: #5d6a63;

  font-size: 13px;
  line-height: 1.6;
}


/* TABLET */


@media (max-width: 900px) {

  .showcase-list {
    gap: 90px;
  }


  .showcase-row,
  .showcase-row-reverse {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .showcase-row-reverse .showcase-copy,
  .showcase-row-reverse .showcase-visual {
    order: initial;
  }


  .showcase-copy {
    max-width: 680px;

    margin: 0 auto;

    text-align: center;
  }


  .showcase-points {
    max-width: 360px;

    margin-left: auto;
    margin-right: auto;

    text-align: left;
  }


  .privacy-inline {
    text-align: left;
  }


  .showcase-visual {
    width: 100%;

    min-height: 620px;
  }

}


/* MOBILE */


@media (max-width: 620px) {

  .showcase-list {
    gap: 75px;
  }


  .showcase-copy h3 {
    font-size: 34px;
  }


  .showcase-copy > p {
    font-size: 15px;
  }


  .showcase-visual {
    min-height: 570px;

    padding:
      35px
      15px;
  }


  .screenshot-phone {
    width: min(270px, 80vw);
  }


  .showcase-double {
    min-height: 610px;
  }


  .screenshot-phone-small {
    width: min(205px, 59vw);

    left: 5%;
  }


  .screenshot-phone-offset {
    left: auto;
    right: 5%;
  }

}