:root {
    --page: #f3f0eb;
    --paper: #fffdf9;
    --white: #ffffff;
  
    --ink: #17191c;
    --ink-soft: #64676d;
  
    --dark: #171819;
    --dark-soft: #222326;
    --dark-panel: #292b2f;
  
    --gold: #c99b55;
    --gold-dark: #9c7133;
    --gold-soft: #f4e8d5;
  
    --blue: #438ce5;
    --green: #38bc7f;
    --red: #dc6868;
    --orange: #e6a248;
  
    --line: #dfdbd3;
    --line-dark: rgba(221, 216, 207, 0.18);
  
    --text: #f6f4f0;
    --muted: #b9b6b0;
  
    --container: 1180px;
  
    --radius-large: 30px;
    --radius-medium: 18px;
  
    --shadow:
      0 28px 80px rgba(38, 31, 22, 0.14);
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    overflow-x: hidden;
  
    color: var(--ink);
    background: var(--page);
  
    font-family:
      Inter,
      "PingFang SC",
      "Microsoft YaHei",
      system-ui,
      -apple-system,
      sans-serif;
  
    line-height: 1.7;
    text-rendering: optimizeLegibility;
  }
  
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  a {
    -webkit-tap-highlight-color: transparent;
  }
  
  :focus-visible {
    outline: 3px solid rgba(201, 155, 85, 0.48);
    outline-offset: 4px;
  }
  
  .container {
    width: min(
      calc(100% - 40px),
      var(--container)
    );
  
    margin-inline: auto;
  }
  
  .skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
  
    padding: 10px 14px;
  
    color: var(--ink);
    background: var(--white);
  
    border-radius: 10px;
  
    transform: translateY(-160%);
  }
  
  .skip-link:focus {
    transform: translateY(0);
  }
  
  /* Header */
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
  
    color: var(--text);
  
    background: rgba(23, 24, 25, 0.9);
    border-bottom: 1px solid transparent;
  
    backdrop-filter: blur(20px);
  
    transition:
      background 180ms ease,
      border-color 180ms ease;
  }
  
  .site-header.is-scrolled {
    background: rgba(23, 24, 25, 0.98);
    border-color: var(--line-dark);
  }
  
  .header-inner {
    display: grid;
    grid-template-columns:
      auto
      1fr
      auto;
  
    align-items: center;
  
    gap: 30px;
  
    min-height: 72px;
  }
  
  .brand img {
    width: 132px;
    object-fit: contain;
  }
  
  .main-nav {
    justify-self: center;
  
    display: flex;
    gap: 28px;
  }
  
  .main-nav a {
    color: #cac6bf;
    font-size: 14px;
  }
  
  .main-nav a:hover {
    color: var(--white);
  }
  
  .header-button,
  .primary-button {
    display: inline-flex;
  
    min-height: 46px;
  
    align-items: center;
    justify-content: center;
  
    padding: 0 22px;
  
    color: #1b1308;
  
    background: linear-gradient(
      135deg,
      #e2bc7c,
      var(--gold)
    );
  
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
  
    font-weight: 850;
  
    box-shadow:
      0 14px 34px rgba(153, 105, 46, 0.23);
  
    transition:
      transform 180ms ease,
      box-shadow 180ms ease;
  }
  
  .header-button {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 13px;
  }
  
  .header-button:hover,
  .primary-button:hover {
    transform: translateY(-2px);
  
    box-shadow:
      0 19px 42px rgba(153, 105, 46, 0.31);
  }
  
  .secondary-button {
    display: inline-flex;
  
    min-height: 46px;
  
    align-items: center;
    justify-content: center;
  
    padding: 0 21px;
  
    color: var(--text);
  
    border: 1px solid rgba(235, 226, 214, 0.25);
    border-radius: 12px;
  
    font-weight: 800;
  }
  
  .secondary-button:hover {
    border-color: rgba(201, 155, 85, 0.7);
  }
  
  .full-button {
    width: 100%;
  }
  
  .text-link {
    color: var(--gold-dark);
    font-weight: 850;
  }
  
  .text-link:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  
  /* Typography */
  
  h1,
  h2,
  h3,
  p {
    margin-top: 0;
  }
  
  h1 {
    max-width: 760px;
  
    margin-bottom: 23px;
  
    font-size: clamp(
      42px,
      5.25vw,
      72px
    );
  
    line-height: 1.07;
    letter-spacing: -0.05em;
  }
  
  h2 {
    margin-bottom: 14px;
  
    font-size: clamp(
      30px,
      3.35vw,
      47px
    );
  
    line-height: 1.17;
    letter-spacing: -0.038em;
  }
  
  h3 {
    line-height: 1.35;
  }
  
  .eyebrow {
    margin: 0 0 10px;
  
    color: var(--gold-dark);
  
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
  
  /* Hero */
  
  .hero {
    position: relative;
    overflow: hidden;
  
    padding: 80px 0 76px;
  
    color: var(--text);
  
    background:
      radial-gradient(
        circle at 82% 18%,
        rgba(201, 155, 85, 0.18),
        transparent 30%
      ),
      linear-gradient(
        145deg,
        #151617,
        #202124
      );
  }
  
  .hero::before {
    content: "";
  
    position: absolute;
    top: -180px;
    right: -120px;
  
    width: 600px;
    height: 600px;
  
    border: 1px solid rgba(201, 155, 85, 0.13);
    border-radius: 50%;
  }
  
  .hero::after {
    content: "";
  
    position: absolute;
    bottom: -260px;
    left: -180px;
  
    width: 560px;
    height: 560px;
  
    background:
      radial-gradient(
        circle,
        rgba(201, 155, 85, 0.08),
        transparent 67%
      );
  }
  
  .hero-layout {
    position: relative;
    z-index: 1;
  
    display: grid;
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(430px, 1.1fr);
  
    align-items: center;
  
    gap: 66px;
  }
  
  .hero-kicker {
    display: inline-flex;
  
    margin: 0 0 18px;
    padding: 8px 13px;
  
    color: #e9c58d;
    background: rgba(201, 155, 85, 0.08);
  
    border: 1px solid rgba(201, 155, 85, 0.25);
    border-radius: 999px;
  
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
  }
  
  .hero-description {
    max-width: 690px;
  
    margin-bottom: 29px;
  
    color: #c8c5bf;
    font-size: 18px;
  }
  
  .hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  
    gap: 14px;
  }
  
  .hero-checks {
    display: flex;
    flex-wrap: wrap;
  
    gap: 13px;
  
    margin-top: 34px;
    padding-top: 22px;
  
    border-top: 1px solid var(--line-dark);
  }
  
  .hero-checks span {
    position: relative;
  
    padding-left: 17px;
  
    color: #c9c5be;
    font-size: 13px;
  }
  
  .hero-checks span::before {
    content: "";
  
    position: absolute;
    top: 8px;
    left: 0;
  
    width: 6px;
    height: 6px;
  
    background: var(--gold);
    border-radius: 50%;
  }
  
  /* iPhone workspace */
  
  .iphone-workspace {
    position: relative;
  
    min-height: 570px;
  }
  
  .workspace-label {
    position: absolute;
    top: 0;
    right: 0;
  
    color: #988970;
  
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
  
  .phone-device {
    position: absolute;
    top: 25px;
    left: 50%;
  
    width: 270px;
    height: 535px;
  
    padding: 10px;
  
    background: #0d0e10;
  
    border: 2px solid #46484c;
    border-radius: 50px;
  
    box-shadow:
      0 40px 90px rgba(0, 0, 0, 0.42);
  
    transform:
      translateX(-50%)
      rotate(-4deg);
  }
  
  .dynamic-island {
    position: absolute;
    z-index: 5;
    top: 18px;
    left: 50%;
  
    width: 88px;
    height: 24px;
  
    background: #060709;
    border-radius: 999px;
  
    transform: translateX(-50%);
  }
  
  .phone-screen {
    position: relative;
    height: 100%;
  
    overflow: hidden;
  
    background:
      radial-gradient(
        circle at 50% 29%,
        rgba(224, 188, 125, 0.31),
        transparent 29%
      ),
      linear-gradient(
        165deg,
        #ece6dc,
        #b8afa3 47%,
        #736c63
      );
  
    border-radius: 40px;
  }
  
  .screen-status {
    position: absolute;
    top: 17px;
    left: 24px;
    right: 24px;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    color: #141517;
    font-size: 10px;
    font-weight: 850;
  }
  
  .screen-status > div {
    display: flex;
    gap: 3px;
  }
  
  .screen-status i {
    display: block;
  
    width: 5px;
    height: 5px;
  
    background: #151617;
    border-radius: 50%;
  }
  
  .screen-content {
    display: flex;
    height: 100%;
  
    align-items: center;
    justify-content: center;
    flex-direction: column;
  
    padding: 30px;
    text-align: center;
  }
  
  .client-icon {
    display: grid;
  
    width: 92px;
    height: 92px;
  
    place-items: center;
  
    color: #201708;
  
    background: linear-gradient(
      145deg,
      #e7c88f,
      #bd8943
    );
  
    border-radius: 25px;
  
    box-shadow:
      0 22px 42px rgba(112, 75, 31, 0.25);
  
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.08em;
  }
  
  .screen-content h2 {
    margin: 18px 0 0;
  
    color: #171819;
    font-size: 22px;
  }
  
  .screen-content p {
    margin: 2px 0 22px;
  
    color: #69635c;
    font-size: 12px;
  }
  
  .screen-progress {
    overflow: hidden;
  
    width: 155px;
    height: 7px;
  
    background: rgba(255, 255, 255, 0.45);
    border-radius: 999px;
  }
  
  .screen-progress span {
    display: block;
  
    width: 38%;
    height: 100%;
  
    background: var(--gold);
    border-radius: inherit;
  }
  
  .screen-message {
    display: flex;
    align-items: center;
  
    gap: 7px;
  
    margin-top: 13px;
    padding: 7px 10px;
  
    color: #5d574f;
    background: rgba(255, 255, 255, 0.42);
  
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 999px;
  
    font-size: 9px;
  }
  
  .screen-message i {
    width: 7px;
    height: 7px;
  
    background: var(--orange);
    border-radius: 50%;
  }
  
  .screen-home-bar,
  .state-home-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
  
    width: 92px;
    height: 4px;
  
    background: rgba(16, 17, 19, 0.72);
    border-radius: 999px;
  
    transform: translateX(-50%);
  }
  
  .device-summary {
    position: absolute;
    z-index: 5;
  
    min-width: 160px;
  
    padding: 14px 16px;
  
    color: var(--ink);
    background: rgba(255, 253, 249, 0.91);
  
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 14px;
  
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.18);
  
    backdrop-filter: blur(14px);
  }
  
  .device-summary span,
  .device-summary strong {
    display: block;
  }
  
  .device-summary span {
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 900;
  }
  
  .device-summary strong {
    margin-top: 2px;
    font-size: 12px;
  }
  
  .summary-one {
    top: 85px;
    left: 0;
  }
  
  .summary-two {
    top: 190px;
    right: 0;
  }
  
  .summary-three {
    bottom: 40px;
    left: 8px;
  }
  
  /* Intro strip */
  
  .intro-strip {
    color: var(--text);
    background: #202124;
  
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }
  
  .intro-strip-inner {
    display: grid;
    grid-template-columns:
      repeat(4, 1fr);
  }
  
  .intro-strip-inner > div {
    display: flex;
    min-height: 76px;
  
    align-items: center;
  
    gap: 12px;
  
    padding: 0 22px;
  
    border-right: 1px solid var(--line-dark);
  }
  
  .intro-strip-inner > div:last-child {
    border-right: 0;
  }
  
  .intro-strip span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 950;
  }
  
  .intro-strip strong {
    font-size: 13px;
  }
  
  /* General sections */
  
  .section {
    padding: 96px 0;
  }
  
  .section-heading {
    max-width: 790px;
    margin-bottom: 47px;
  }
  
  .section-heading > p:last-child {
    color: var(--ink-soft);
  }
  
  .section-heading.centered {
    margin-inline: auto;
    text-align: center;
  }
  
  .section-heading-light > p:last-child {
    color: var(--muted);
  }
  
  .iphone-check-section,
  .install-state-section,
  .find-app-section,
  .permissions-section,
  .version-section,
  .related-section {
    background: var(--page);
  }
  
  .download-section,
  .iphone-help-section {
    color: var(--text);
    background: var(--dark);
  }
  
  .faq-section {
    background: #eae5dd;
  }
  
  /* Inspection */
  
  .inspection-layout {
    display: grid;
    grid-template-columns:
      minmax(0, 1.25fr)
      minmax(300px, 0.75fr);
  
    align-items: stretch;
  
    gap: 26px;
  }
  
  .inspection-board {
    overflow: hidden;
  
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-large);
  }
  
  .inspection-head {
    display: flex;
    min-height: 84px;
  
    align-items: center;
    justify-content: space-between;
  
    gap: 20px;
  
    padding: 0 26px;
  
    background: #f8f2e8;
    border-bottom: 1px solid var(--line);
  }
  
  .inspection-head small,
  .inspection-head strong {
    display: block;
  }
  
  .inspection-head small {
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.11em;
  }
  
  .inspection-head span {
    padding: 7px 11px;
  
    color: var(--gold-dark);
    background: var(--gold-soft);
  
    border-radius: 999px;
  
    font-size: 11px;
    font-weight: 900;
  }
  
  .inspection-list {
    padding: 8px 24px 20px;
  }
  
  .inspection-list article {
    display: grid;
    grid-template-columns:
      auto
      1fr
      auto;
  
    align-items: center;
  
    gap: 16px;
  
    min-height: 98px;
  
    border-bottom: 1px solid var(--line);
  }
  
  .inspection-list article:last-child {
    border-bottom: 0;
  }
  
  .inspection-icon {
    display: grid;
  
    width: 44px;
    height: 44px;
  
    place-items: center;
  
    color: var(--gold-dark);
    background: var(--gold-soft);
  
    border-radius: 12px;
  
    font-size: 10px;
    font-weight: 950;
  }
  
  .inspection-list h3 {
    margin-bottom: 4px;
  }
  
  .inspection-list p {
    margin: 0;
    color: var(--ink-soft);
  }
  
  .inspection-list b {
    color: #8b867f;
    font-size: 11px;
  }
  
  .inspection-note {
    padding: 32px;
  
    color: var(--text);
  
    background:
      radial-gradient(
        circle at top right,
        rgba(201, 155, 85, 0.18),
        transparent 35%
      ),
      var(--dark);
  
    border-radius: var(--radius-large);
  
    box-shadow: var(--shadow);
  }
  
  .note-symbol {
    display: grid;
  
    width: 50px;
    height: 50px;
  
    place-items: center;
  
    margin-bottom: 26px;
  
    color: #241707;
    background: var(--gold);
  
    border-radius: 50%;
  
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 700;
  }
  
  .inspection-note .eyebrow {
    color: var(--gold);
  }
  
  .inspection-note > p:not(.eyebrow) {
    color: var(--muted);
  }
  
  .note-links {
    margin-top: 28px;
    border-top: 1px solid var(--line-dark);
  }
  
  .note-links a {
    display: block;
  
    padding: 13px 0;
  
    color: #d5d0c8;
  
    border-bottom: 1px solid var(--line-dark);
  }
  
  .note-links a:hover {
    color: var(--gold);
  }
  
  /* Download records */
  
  .download-layout {
    display: grid;
    grid-template-columns:
      minmax(0, 1.25fr)
      minmax(300px, 0.75fr);
  
    gap: 50px;
  }
  
  .download-records article {
    display: grid;
    grid-template-columns:
      80px
      34px
      minmax(0, 1fr);
  
    gap: 15px;
  
    min-height: 135px;
  }
  
  .record-time {
    padding-top: 13px;
  
    color: #8f8a82;
  
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
  }
  
  .record-line {
    position: relative;
  }
  
  .record-line::before {
    content: "";
  
    position: absolute;
    top: 23px;
    bottom: -23px;
    left: 16px;
  
    width: 1px;
  
    background: linear-gradient(
      var(--gold),
      rgba(201, 155, 85, 0.05)
    );
  }
  
  .download-records article:last-child .record-line::before {
    display: none;
  }
  
  .record-line span {
    position: relative;
    z-index: 2;
  
    display: block;
  
    width: 33px;
    height: 33px;
  
    margin-top: 7px;
  
    background: var(--dark);
    border: 2px solid var(--gold);
    border-radius: 50%;
  
    box-shadow:
      0 0 0 7px rgba(201, 155, 85, 0.08);
  }
  
  .record-content {
    padding: 2px 0 30px;
  }
  
  .record-content small {
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.11em;
  }
  
  .record-content h3 {
    margin: 3px 0 7px;
  }
  
  .record-content p {
    margin: 0;
    color: var(--muted);
  }
  
  .download-entry-card {
    align-self: start;
  
    overflow: hidden;
  
    background: var(--dark-soft);
    border: 1px solid var(--line-dark);
    border-top: 4px solid var(--gold);
    border-radius: 20px;
  }
  
  .entry-card-top {
    display: flex;
    align-items: center;
  
    gap: 14px;
  
    padding: 25px;
  
    border-bottom: 1px solid var(--line-dark);
  }
  
  .entry-app-icon {
    display: grid;
  
    width: 52px;
    height: 52px;
  
    place-items: center;
  
    color: #251806;
    background: linear-gradient(
      145deg,
      #e5c285,
      #ba843d
    );
  
    border-radius: 15px;
  
    font-weight: 950;
  }
  
  .entry-card-top small,
  .entry-card-top strong {
    display: block;
  }
  
  .entry-card-top small {
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
  }
  
  .entry-card-status {
    padding: 8px 25px 20px;
  }
  
  .entry-card-status > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    gap: 18px;
  
    padding: 14px 0;
  
    border-bottom: 1px solid var(--line-dark);
  }
  
  .entry-card-status span {
    color: var(--muted);
    font-size: 12px;
  }
  
  .entry-card-status strong {
    text-align: right;
    font-size: 12px;
  }
  
  .download-entry-card .primary-button {
    width: calc(100% - 50px);
    margin: 0 25px;
  }
  
  .download-entry-card > p {
    margin: 16px 25px 24px;
  
    color: #908c85;
    font-size: 11px;
  }
  
  /* Install pending */
  
  .install-state-layout {
    display: grid;
    grid-template-columns:
      minmax(0, 1fr)
      minmax(360px, 0.9fr);
  
    align-items: center;
  
    gap: 70px;
  }
  
  .install-state-copy > p:not(.eyebrow) {
    color: var(--ink-soft);
  }
  
  .state-check-list {
    margin: 28px 0 0;
    padding: 0;
  
    list-style: none;
  
    border-top: 1px solid var(--line);
  }
  
  .state-check-list li {
    position: relative;
  
    padding: 13px 0 13px 28px;
  
    border-bottom: 1px solid var(--line);
  }
  
  .state-check-list li::before {
    content: "✓";
  
    position: absolute;
    left: 0;
  
    color: var(--gold-dark);
    font-weight: 950;
  }
  
  .install-state-phone {
    position: relative;
  
    min-height: 520px;
  }
  
  .state-phone-frame {
    position: absolute;
    top: 0;
    left: 50%;
  
    width: 255px;
    height: 500px;
  
    padding: 9px;
  
    background: #111214;
  
    border-radius: 47px;
  
    box-shadow:
      0 33px 72px rgba(40, 31, 22, 0.25);
  
    transform:
      translateX(-50%)
      rotate(4deg);
  }
  
  .state-phone-island {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 50%;
  
    width: 82px;
    height: 23px;
  
    background: #050607;
    border-radius: 999px;
  
    transform: translateX(-50%);
  }
  
  .state-phone-screen {
    position: relative;
    height: 100%;
  
    overflow: hidden;
  
    background:
      radial-gradient(
        circle at top right,
        rgba(218, 179, 112, 0.33),
        transparent 34%
      ),
      linear-gradient(
        160deg,
        #9a9288,
        #d8d2c8
      );
  
    border-radius: 38px;
  }
  
  .state-status-bar {
    position: absolute;
    top: 18px;
    left: 23px;
    right: 23px;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    color: #161719;
    font-size: 10px;
    font-weight: 850;
  }
  
  .state-status-bar > div {
    display: flex;
    gap: 3px;
  }
  
  .state-status-bar i {
    display: block;
  
    width: 5px;
    height: 5px;
  
    background: #161719;
    border-radius: 50%;
  }
  
  .state-app-grid {
    display: grid;
    grid-template-columns:
      repeat(2, 1fr);
  
    gap: 30px 24px;
  
    padding: 90px 34px;
  }
  
  .state-app {
    position: relative;
    text-align: center;
  }
  
  .state-generic,
  .pending-circle {
    display: grid;
  
    width: 62px;
    height: 62px;
  
    place-items: center;
  
    margin-inline: auto;
  
    border-radius: 17px;
  }
  
  .state-generic.blue {
    background: linear-gradient(
      145deg,
      #69a9ed,
      #347cd1
    );
  }
  
  .state-generic.green {
    background: linear-gradient(
      145deg,
      #60d49d,
      #2cad70
    );
  }
  
  .state-generic.gray {
    background: linear-gradient(
      145deg,
      #bfc5cc,
      #878f98
    );
  }
  
  .state-app small {
    display: block;
  
    margin-top: 6px;
  
    color: #26282b;
    font-size: 9px;
  }
  
  .pending-circle {
    position: relative;
  
    background: rgba(255, 255, 255, 0.34);
  
    border: 2px solid rgba(255, 255, 255, 0.58);
    border-radius: 17px;
  }
  
  .pending-circle::before {
    content: "AA";
  
    position: absolute;
  
    color: rgba(39, 31, 22, 0.34);
  
    font-size: 16px;
    font-weight: 950;
  }
  
  .pending-circle i {
    position: absolute;
    inset: 8px;
  
    border: 3px solid rgba(54, 48, 41, 0.18);
    border-top-color: var(--gold-dark);
    border-radius: 50%;
  }
  
  .pending-app b {
    display: inline-block;
  
    margin-top: 5px;
    padding: 3px 7px;
  
    color: #735424;
    background: rgba(255, 246, 226, 0.75);
  
    border-radius: 999px;
  
    font-size: 8px;
  }
  
  .pending-note {
    position: absolute;
    right: 0;
    bottom: 40px;
  
    display: flex;
    align-items: center;
  
    gap: 12px;
  
    min-width: 245px;
  
    padding: 15px 17px;
  
    background: rgba(255, 253, 249, 0.94);
  
    border: 1px solid var(--white);
    border-radius: 14px;
  
    box-shadow:
      0 18px 40px rgba(46, 34, 20, 0.18);
  }
  
  .pending-note > span {
    width: 11px;
    height: 11px;
  
    background: var(--orange);
    border-radius: 50%;
  
    box-shadow:
      0 0 0 7px rgba(230, 162, 72, 0.13);
  }
  
  .pending-note small,
  .pending-note strong {
    display: block;
  }
  
  .pending-note small {
    color: var(--gold-dark);
  }
  
  /* Find app */
  
  .find-app-layout {
    display: grid;
    grid-template-columns:
      repeat(3, 1fr);
  
    gap: 22px;
  }
  
  .find-app-layout article {
    position: relative;
  
    padding: 28px;
  
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 23px;
  }
  
  .find-step-number {
    position: absolute;
    top: 18px;
    right: 20px;
  
    color: #c2b8aa;
  
    font-size: 11px;
    font-weight: 950;
  }
  
  .find-visual {
    display: grid;
    min-height: 230px;
  
    place-items: center;
  
    margin-bottom: 24px;
  
    background: #eee8df;
    border-radius: 18px;
  }
  
  .small-screen-grid {
    display: grid;
    grid-template-columns:
      repeat(3, 38px);
  
    gap: 12px;
  
    padding: 25px;
  
    background: linear-gradient(
      145deg,
      #92897d,
      #c5beb3
    );
  
    border: 5px solid #26272a;
    border-radius: 23px;
  }
  
  .small-screen-grid span,
  .small-screen-grid b {
    display: grid;
  
    width: 38px;
    height: 38px;
  
    place-items: center;
  
    border-radius: 10px;
  }
  
  .small-screen-grid span {
    background: rgba(255, 255, 255, 0.56);
  }
  
  .small-screen-grid b {
    color: #211707;
    background: var(--gold);
  
    font-size: 11px;
  }
  
  .library-visual {
    position: relative;
  }
  
  .library-grid {
    display: grid;
    grid-template-columns:
      repeat(2, 50px);
  
    gap: 10px;
  }
  
  .library-grid span {
    width: 50px;
    height: 50px;
  
    background: #b7afa4;
    border-radius: 13px;
  }
  
  .library-visual > b {
    position: absolute;
  
    display: grid;
  
    width: 48px;
    height: 48px;
  
    place-items: center;
  
    color: #211707;
    background: var(--gold);
  
    border-radius: 13px;
  
    box-shadow:
      0 13px 28px rgba(91, 62, 27, 0.21);
  
    font-size: 12px;
  }
  
  .search-visual {
    display: flex;
  
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
  
    gap: 15px;
  
    padding: 26px;
  }
  
  .search-field {
    display: flex;
    align-items: center;
  
    gap: 8px;
  
    min-height: 39px;
  
    padding: 0 13px;
  
    color: #7b746c;
    background: var(--white);
  
    border: 1px solid var(--line);
    border-radius: 999px;
  
    font-size: 12px;
  }
  
  .search-result {
    display: flex;
    align-items: center;
  
    gap: 13px;
  
    padding: 14px;
  
    background: var(--white);
    border-radius: 13px;
  }
  
  .search-result > b {
    display: grid;
  
    width: 42px;
    height: 42px;
  
    place-items: center;
  
    color: #211707;
    background: var(--gold);
  
    border-radius: 11px;
  
    font-size: 11px;
  }
  
  .search-result strong,
  .search-result small {
    display: block;
  }
  
  .search-result small {
    color: var(--ink-soft);
  }
  
  .find-app-layout h3 {
    margin-bottom: 8px;
  }
  
  .find-app-layout p {
    margin-bottom: 0;
    color: var(--ink-soft);
  }
  
  /* Permissions */
  
  .permissions-layout {
    display: grid;
    grid-template-columns:
      minmax(380px, 1.05fr)
      minmax(0, 0.95fr);
  
    align-items: center;
  
    gap: 70px;
  }
  
  .permissions-panel {
    overflow: hidden;
  
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 25px;
  
    box-shadow: var(--shadow);
  }
  
  .permissions-head {
    display: flex;
    min-height: 86px;
  
    align-items: center;
    justify-content: space-between;
  
    gap: 20px;
  
    padding: 0 24px;
  
    background: #f8f3eb;
    border-bottom: 1px solid var(--line);
  }
  
  .permissions-head > div {
    display: flex;
    align-items: center;
  
    gap: 14px;
  }
  
  .permissions-head > div > span {
    display: grid;
  
    width: 46px;
    height: 46px;
  
    place-items: center;
  
    color: #211707;
    background: var(--gold);
  
    border-radius: 13px;
  
    font-weight: 950;
  }
  
  .permissions-head small,
  .permissions-head strong {
    display: block;
  }
  
  .permissions-head b {
    color: var(--gold-dark);
    font-size: 12px;
  }
  
  .permissions-list {
    padding: 10px 22px 20px;
  }
  
  .permissions-list > div {
    display: flex;
    min-height: 82px;
  
    align-items: center;
    justify-content: space-between;
  
    gap: 24px;
  
    border-bottom: 1px solid var(--line);
  }
  
  .permissions-list > div > div {
    display: flex;
    align-items: center;
  
    gap: 14px;
  }
  
  .permission-symbol {
    display: grid;
  
    width: 43px;
    height: 43px;
  
    place-items: center;
  
    color: var(--gold-dark);
    background: var(--gold-soft);
  
    border-radius: 11px;
  
    font-size: 9px;
    font-weight: 950;
  }
  
  .permissions-list strong,
  .permissions-list small {
    display: block;
  }
  
  .permissions-list small {
    color: var(--ink-soft);
  }
  
  .permission-switch {
    position: relative;
  
    width: 44px;
    height: 25px;
  
    flex-shrink: 0;
  
    background: #c9c5bf;
    border-radius: 999px;
  }
  
  .permission-switch i {
    position: absolute;
    top: 4px;
    left: 4px;
  
    width: 17px;
    height: 17px;
  
    background: var(--white);
    border-radius: 50%;
  
    box-shadow:
      0 2px 7px rgba(0, 0, 0, 0.15);
  }
  
  .permission-switch.active {
    background: var(--green);
  }
  
  .permission-switch.active i {
    left: 23px;
  }
  
  .permission-status {
    padding: 6px 10px;
  
    color: var(--gold-dark);
    background: var(--gold-soft);
  
    border-radius: 999px;
  
    font-size: 10px;
    font-weight: 850;
  }
  
  .permissions-copy > p:not(.eyebrow) {
    color: var(--ink-soft);
  }
  
  .permissions-notice {
    margin-top: 28px;
    padding: 20px 22px;
  
    background: #f7efe3;
    border-left: 4px solid var(--gold);
  }
  
  .permissions-notice strong {
    color: var(--gold-dark);
  }
  
  .permissions-notice p {
    margin: 5px 0 0;
    color: #6e6253;
  }
  
  /* Help */
  
  .help-layout {
    display: grid;
    grid-template-columns:
      minmax(220px, 0.62fr)
      minmax(0, 1.38fr);
  
    gap: 34px;
  }
  
  .help-navigation {
    align-self: start;
  
    overflow: hidden;
  
    border: 1px solid var(--line-dark);
    border-radius: 17px;
  }
  
  .help-navigation a {
    display: grid;
    grid-template-columns: 42px 1fr;
  
    align-items: center;
  
    min-height: 66px;
  
    color: #d2cec7;
    border-bottom: 1px solid var(--line-dark);
  
    font-size: 13px;
  }
  
  .help-navigation a:last-child {
    border-bottom: 0;
  }
  
  .help-navigation a:hover {
    background: rgba(201, 155, 85, 0.08);
  }
  
  .help-navigation span {
    display: grid;
  
    height: 100%;
  
    place-items: center;
  
    color: var(--gold);
  
    border-right: 1px solid var(--line-dark);
  
    font-size: 11px;
    font-weight: 950;
  }
  
  .help-content {
    display: grid;
    gap: 16px;
  }
  
  .help-content article {
    padding: 24px;
  
    background: var(--dark-soft);
    border: 1px solid var(--line-dark);
    border-radius: 17px;
  }
  
  .help-title {
    display: flex;
    align-items: center;
  
    gap: 15px;
  }
  
  .help-title > span {
    display: grid;
  
    width: 43px;
    height: 43px;
  
    place-items: center;
  
    color: var(--gold);
    background: rgba(201, 155, 85, 0.09);
  
    border-radius: 12px;
  
    font-size: 11px;
    font-weight: 950;
  }
  
  .help-title small {
    color: var(--gold);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
  }
  
  .help-title h3 {
    margin: 2px 0 0;
  }
  
  .help-content ul {
    display: grid;
    grid-template-columns:
      repeat(2, 1fr);
  
    gap: 8px 26px;
  
    margin: 20px 0 0;
    padding: 0;
  
    list-style: none;
  }
  
  .help-content li {
    position: relative;
  
    padding-left: 18px;
  
    color: var(--muted);
    font-size: 13px;
  }
  
  .help-content li::before {
    content: "";
  
    position: absolute;
    top: 10px;
    left: 0;
  
    width: 6px;
    height: 6px;
  
    background: var(--gold);
    border-radius: 50%;
  }
  
  /* Version */
  
  .version-section {
    background: var(--gold-soft);
    border-top: 1px solid #e1cfb3;
    border-bottom: 1px solid #e1cfb3;
  }
  
  .version-layout {
    display: grid;
    grid-template-columns:
      auto
      minmax(0, 1fr)
      auto;
  
    align-items: center;
  
    gap: 30px;
  }
  
  .version-status {
    display: flex;
    align-items: center;
  
    gap: 15px;
  }
  
  .version-circle span {
    display: grid;
  
    width: 65px;
    height: 65px;
  
    place-items: center;
  
    color: #221708;
    background: var(--gold);
  
    border-radius: 20px;
  
    font-size: 29px;
  }
  
  .version-status small,
  .version-status strong {
    display: block;
  }
  
  .version-status small {
    color: var(--gold-dark);
    font-size: 9px;
    font-weight: 900;
  }
  
  .version-copy h2 {
    margin-bottom: 7px;
    font-size: clamp(26px, 2.6vw, 39px);
  }
  
  .version-copy p {
    max-width: 700px;
  
    margin-bottom: 0;
    color: var(--ink-soft);
  }
  
  .version-actions {
    display: flex;
    align-items: center;
  
    gap: 15px;
  }
  
  /* FAQ */
  
  .faq-layout {
    display: grid;
    grid-template-columns:
      minmax(260px, 0.72fr)
      minmax(0, 1.28fr);
  
    gap: 58px;
  }
  
  .faq-list {
    border-top: 1px solid #cbc5bc;
  }
  
  .faq-list details {
    border-bottom: 1px solid #cbc5bc;
  }
  
  .faq-list summary {
    position: relative;
  
    padding: 22px 48px 22px 0;
  
    cursor: pointer;
    list-style: none;
  
    font-weight: 850;
  }
  
  .faq-list summary::-webkit-details-marker {
    display: none;
  }
  
  .faq-list summary::after {
    content: "+";
  
    position: absolute;
    top: 19px;
    right: 4px;
  
    color: var(--gold-dark);
  
    font-size: 25px;
    line-height: 1;
  }
  
  .faq-list details[open] summary::after {
    content: "−";
  }
  
  .faq-list details p {
    margin: 0;
  
    padding: 0 42px 22px 0;
  
    color: var(--ink-soft);
  }
  
  /* Related */
  
  .related-section {
    padding: 92px 0;
  }
  
  .related-grid {
    display: grid;
    grid-template-columns:
      repeat(2, 1fr);
  
    gap: 13px;
  }
  
  .related-grid a {
    display: grid;
    grid-template-columns: 50px 1fr;
  
    align-items: center;
  
    gap: 16px;
  
    min-height: 92px;
  
    padding: 16px 20px;
  
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 15px;
  
    transition:
      transform 160ms ease,
      border-color 160ms ease,
      box-shadow 160ms ease;
  }
  
  .related-grid a:hover {
    transform: translateY(-3px);
  
    border-color: #d3b989;
  
    box-shadow:
      0 14px 32px rgba(49, 37, 22, 0.08);
  }
  
  .related-grid > a > span {
    display: grid;
  
    width: 42px;
    height: 42px;
  
    place-items: center;
  
    color: var(--gold-dark);
    background: var(--gold-soft);
  
    border-radius: 12px;
  
    font-size: 11px;
    font-weight: 950;
  }
  
  .related-grid small,
  .related-grid strong {
    display: block;
  }
  
  .related-grid small {
    color: var(--gold-dark);
    font-weight: 800;
  }
  
  /* Bottom CTA */
  
  .bottom-cta {
    color: var(--text);
  
    background:
      radial-gradient(
        circle at 84% 20%,
        rgba(201, 155, 85, 0.21),
        transparent 30%
      ),
      var(--dark);
  }
  
  .bottom-cta-layout {
    display: flex;
    min-height: 250px;
  
    align-items: center;
    justify-content: space-between;
  
    gap: 46px;
  }
  
  .bottom-label {
    margin-bottom: 10px;
  
    color: var(--gold);
  
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.14em;
  }
  
  .bottom-cta h2 {
    max-width: 790px;
    margin-bottom: 8px;
  }
  
  .bottom-cta p:not(.bottom-label) {
    margin-bottom: 0;
    color: var(--muted);
  }
  
  .bottom-actions {
    display: flex;
    align-items: center;
  
    gap: 17px;
  
    flex-shrink: 0;
  }
  
  .bottom-cta .text-link {
    color: var(--gold);
  }
  
  /* Footer */
  
  .site-footer {
    padding: 34px 0;
  
    color: #aca8a1;
    background: #101112;
  
    border-top: 1px solid var(--line-dark);
  }
  
  .footer-layout {
    display: grid;
    grid-template-columns:
      0.75fr
      1.55fr
      0.7fr;
  
    align-items: center;
  
    gap: 32px;
  }
  
  .footer-layout img {
    width: 120px;
    margin-bottom: 10px;
  }
  
  .footer-layout p {
    margin: 0;
    font-size: 13px;
  }
  
  .footer-layout p:last-child {
    text-align: right;
  }
  
  /* Back to top */
  
  .back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
  
    width: 44px;
    height: 44px;
  
    color: #211607;
    background: var(--gold);
  
    border: 0;
    border-radius: 50%;
  
    box-shadow:
      0 14px 34px rgba(89, 58, 21, 0.26);
  
    cursor: pointer;
  
    opacity: 0;
    pointer-events: none;
  
    transform: translateY(10px);
  
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }
  
  .back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
  
    transform: translateY(0);
  }
  
  /* Tablet */
  
  @media (max-width: 980px) {
  
    .main-nav {
      display: none;
    }
  
    .hero-layout,
    .inspection-layout,
    .download-layout,
    .install-state-layout,
    .permissions-layout,
    .help-layout,
    .faq-layout {
      grid-template-columns: 1fr;
    }
  
    .hero-copy {
      max-width: 780px;
    }
  
    .iphone-workspace {
      max-width: 650px;
    }
  
    .inspection-note,
    .download-entry-card {
      max-width: 650px;
    }
  
    .find-app-layout {
      grid-template-columns: 1fr;
    }
  
    .find-app-layout article {
      max-width: 760px;
    }
  
    .help-navigation {
      display: grid;
      grid-template-columns:
        repeat(2, 1fr);
    }
  
    .version-layout {
      grid-template-columns:
        auto
        1fr;
    }
  
    .version-actions {
      grid-column: 2;
      flex-wrap: wrap;
    }
  
    .bottom-cta-layout {
      min-height: 0;
  
      align-items: flex-start;
      flex-direction: column;
  
      padding-block: 50px;
    }
  
    .footer-layout {
      grid-template-columns: 1fr;
    }
  
    .footer-layout p:last-child {
      text-align: left;
    }
  }
  
  /* Mobile */
  
  @media (max-width: 780px) {
  
    .container {
      width: min(
        calc(100% - 32px),
        var(--container)
      );
    }
  
    .header-inner {
      min-height: 64px;
      gap: 14px;
    }
  
    .brand img {
      width: 108px;
    }
  
    .header-button {
      min-height: 38px;
      padding-inline: 11px;
      font-size: 11px;
    }
  
    .hero {
      padding: 55px 0 48px;
    }
  
    h1 {
      font-size: clamp(
        38px,
        12vw,
        55px
      );
    }
  
    .iphone-workspace {
      min-height: 500px;
    }
  
    .phone-device {
      width: 230px;
      height: 460px;
    }
  
    .summary-three {
      display: none;
    }
  
    .intro-strip-inner {
      grid-template-columns:
        repeat(2, 1fr);
    }
  
    .intro-strip-inner > div {
      border-bottom: 1px solid var(--line-dark);
    }
  
    .section {
      padding: 72px 0;
    }
  
    .inspection-list article {
      grid-template-columns:
        auto
        1fr;
    }
  
    .inspection-list b {
      grid-column: 2;
    }
  
    .download-records article {
      grid-template-columns:
        66px
        32px
        1fr;
    }
  
    .state-phone-frame {
      width: 225px;
      height: 445px;
    }
  
    .help-navigation {
      grid-template-columns: 1fr;
    }
  
    .help-content ul {
      grid-template-columns: 1fr;
    }
  
    .related-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 520px) {
  
    .container {
      width: min(
        calc(100% - 24px),
        var(--container)
      );
    }
  
    .header-inner {
      grid-template-columns:
        1fr
        auto;
    }
  
    .hero-description {
      font-size: 16px;
    }
  
    .hero-actions {
      align-items: stretch;
      flex-direction: column;
    }
  
    .hero-actions a {
      width: 100%;
    }
  
    .iphone-workspace {
      min-height: 420px;
    }
  
    .phone-device {
      width: 190px;
      height: 380px;
    }
  
    .client-icon {
      width: 68px;
      height: 68px;
    }
  
    .summary-one {
      top: 50px;
    }
  
    .summary-two {
      top: 150px;
    }
  
    .intro-strip-inner {
      grid-template-columns: 1fr;
    }
  
    .intro-strip-inner > div {
      border-right: 0;
    }
  
    .inspection-head {
      align-items: flex-start;
      flex-direction: column;
  
      padding-block: 18px;
    }
  
    .inspection-list {
      padding-inline: 18px;
    }
  
    .inspection-note {
      padding: 26px 19px;
    }
  
    .download-records article {
      grid-template-columns:
        30px
        1fr;
  
      gap: 14px;
    }
  
    .record-time {
      display: none;
    }
  
    .record-line {
      grid-column: 1;
    }
  
    .record-content {
      grid-column: 2;
    }
  
    .install-state-phone {
      min-height: 450px;
    }
  
    .state-phone-frame {
      left: 44%;
    }
  
    .pending-note {
      right: -4px;
      bottom: 15px;
  
      min-width: 220px;
    }
  
    .find-app-layout article {
      padding: 22px 18px;
    }
  
    .permissions-list > div {
      align-items: flex-start;
    }
  
    .permissions-list > div > div {
      align-items: flex-start;
    }
  
    .version-layout {
      grid-template-columns: 1fr;
    }
  
    .version-actions {
      grid-column: 1;
  
      align-items: stretch;
      flex-direction: column;
    }
  
    .bottom-actions {
      align-items: stretch;
      flex-direction: column;
    }
  
    .faq-list summary {
      padding-right: 36px;
    }
  
    .faq-list details p {
      padding-right: 0;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
  
    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      transition: none !important;
    }
  }