:root {
  --brand: #18b894;
  --brand-dark: #087c67;
  --brand-soft: #dff6ef;
  --ink: #15191d;
  --muted: #6e767c;
  --white: #ffffff;
  --silver: #f1f2f4;
  --silver-light: #f8f9fa;
  --silver-dark: #e1e4e7;
  --line: #dce0e3;
  --dark: #111519;
  --blue: #4e7ce4;
  --red: #cf5550;
  --shadow: 0 28px 80px rgba(30, 38, 43, 0.11);
  --shadow-phone: 0 40px 85px rgba(26, 33, 38, 0.23);
  --container: 1220px;
  --radius-large: 34px;
  --radius-medium: 22px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "Segoe UI",
    "PingFang SC",
    "Microsoft YaHei",
    Arial,
    sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  color: #ffffff;
  background: #000000;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

.section {
  padding: 110px 28px;
}

.content-container,
.header-inner,
.footer-inner,
.footer-bottom {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.58);
}

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

.section-heading h2,
.download-copy h2,
.entry-types-heading h2,
.testflight-copy h2,
.settings-copy h2,
.install-heading h2,
.experience-heading h2,
.security-copy h2,
.final-copy h2 {
  margin: 0;
  font-size: clamp(37px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.052em;
}

.section-heading > p {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 15px;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 20, 16, 0.94);
  backdrop-filter: blur(18px);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(5, 20, 16, 0.94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 32px;
  padding: 0 28px;
}

.brand-logo {
  width: 172px;
  flex-shrink: 0;
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 29px;
}

.desktop-nav a {
  position: relative;
  color: rgba(231, 244, 239, 0.68);
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--dark);
  font-size: 13px;
  font-weight: 750;
  transition:
    transform var(--transition),
    background var(--transition);
}

.header-action:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 5px auto;
  background: #ffffff;
  transition: transform var(--transition);
}

.menu-toggle.active span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-navigation {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 145px 28px 80px;
  background:
    linear-gradient(140deg, #ffffff 0%, #f5f6f8 52%, #e9edf0 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -120px;
  left: 0;
  height: 310px;
  background:
    linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.86));
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.hero-glow-one {
  top: 140px;
  left: -170px;
  width: 420px;
  height: 420px;
  background: rgba(25, 184, 148, 0.09);
}

.hero-glow-two {
  top: 110px;
  right: -180px;
  width: 450px;
  height: 450px;
  background: rgba(88, 119, 211, 0.07);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1260px);
  margin: 0 auto;
  grid-template-columns: minmax(450px, 0.95fr) minmax(430px, 1.05fr);
  gap: 80px;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 11px;
  color: #687176;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.ios-symbol {
  position: relative;
  display: block;
  width: 18px;
  height: 21px;
  border-radius: 50% 50% 46% 46%;
  background: currentColor;
}

.ios-symbol::before {
  position: absolute;
  top: -5px;
  right: 1px;
  width: 8px;
  height: 7px;
  border-radius: 80% 20% 70% 30%;
  background: currentColor;
  content: "";
  transform: rotate(-28deg);
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 6.8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.067em;
}

.hero h1 span {
  display: block;
  max-width: 690px;
  margin-top: 22px;
  color: #727b80;
  font-size: 0.38em;
  font-weight: 470;
  line-height: 1.18;
  letter-spacing: -0.039em;
}

.hero-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  margin-top: 33px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.button img {
  width: 25px;
  height: 25px;
  border-radius: 6px;
}

.button-dark {
  color: #ffffff;
  background: var(--dark);
  box-shadow: 0 15px 35px rgba(17, 21, 25, 0.17);
}

.button-dark:hover {
  background: var(--brand-dark);
}

.button-light {
  border-color: #d4d8db;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.button-light:hover {
  background: #ffffff;
}

.button-white {
  color: var(--dark);
  background: #ffffff;
}

.button-white:hover {
  background: #e9f8f4;
}

.hero-details {
  display: grid;
  max-width: 650px;
  margin-top: 42px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d4d8db;
  border-bottom: 1px solid #d4d8db;
}

.hero-details div {
  min-height: 82px;
  padding: 18px 15px;
  border-right: 1px solid #d4d8db;
}

.hero-details div:last-child {
  border-right: 0;
}

.hero-details small {
  display: block;
  color: #9aa1a5;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-details strong {
  display: block;
  margin-top: 5px;
  color: #495156;
  font-size: 10px;
}

.hero-device {
  position: relative;
  min-height: 660px;
}

.device-ring {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(72, 85, 92, 0.1);
  border-radius: 50%;
  transform: translateX(-50%);
}

.device-ring::before,
.device-ring::after {
  position: absolute;
  border: 1px solid rgba(72, 85, 92, 0.08);
  border-radius: 50%;
  content: "";
}

.device-ring::before {
  inset: 42px;
}

.device-ring::after {
  inset: 90px;
}

.iphone {
  position: relative;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(35, 42, 47, 0.25);
  border-radius: 41px;
  background: #111518;
  box-shadow: var(--shadow-phone);
}

.iphone-main {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 336px;
  transform: translateX(-50%) rotate(2deg);
}

.iphone-island {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 5;
  width: 86px;
  height: 22px;
  border-radius: 999px;
  background: #050607;
  transform: translateX(-50%);
}

.iphone-screen {
  overflow: hidden;
  border-radius: 33px;
  background: #ffffff;
}

.iphone-screen img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-floating-card {
  position: absolute;
  right: -5px;
  bottom: 135px;
  z-index: 5;
  display: flex;
  min-width: 225px;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(34, 42, 47, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 48px rgba(35, 43, 48, 0.13);
  backdrop-filter: blur(18px);
}

.hero-floating-card img {
  width: 46px;
  height: 46px;
  border-radius: 11px;
}

.hero-floating-card small {
  display: block;
  color: #959da1;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-floating-card strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}

.hero-floating-card span {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.hero-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7d878c;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.hero-note span {
  width: 35px;
  height: 1px;
  background: #aeb6ba;
}

.hero-note-top {
  top: 72px;
  right: 5px;
}

.hero-note-bottom {
  bottom: 68px;
  left: 0;
}

/* Compatibility */

.compatibility-section {
  padding: 100px 28px;
  background: #ffffff;
}

.compatibility-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compatibility-strip article {
  min-height: 245px;
  padding: 35px 27px;
  border-right: 1px solid var(--line);
}

.compatibility-strip article:last-child {
  border-right: 0;
}

.compatibility-icon {
  display: flex;
  width: 46px;
  height: 46px;
  margin-bottom: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #596268;
  background: var(--silver);
}

.phone-icon span {
  width: 18px;
  height: 29px;
  border: 1.5px solid currentColor;
  border-radius: 5px;
}

.ios-icon span {
  font-size: 10px;
  font-weight: 800;
}

.safari-icon span {
  width: 23px;
  height: 23px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.safari-icon span::after {
  display: block;
  width: 1.5px;
  height: 9px;
  margin: 3px auto;
  background: currentColor;
  content: "";
  transform: rotate(32deg);
}

.network-icon {
  align-items: flex-end;
  gap: 3px;
}

.network-icon i {
  width: 3px;
  background: currentColor;
}

.network-icon i:nth-child(1) {
  height: 9px;
}

.network-icon i:nth-child(2) {
  height: 16px;
}

.network-icon i:nth-child(3) {
  height: 23px;
}

.compatibility-strip small {
  display: block;
  color: #969da1;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.compatibility-strip h3 {
  margin: 8px 0 9px;
  font-size: 18px;
}

.compatibility-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.compatibility-note {
  display: flex;
  max-width: 850px;
  margin: 27px auto 0;
  align-items: flex-start;
  gap: 12px;
  color: #758087;
  font-size: 11px;
}

.compatibility-note > span {
  display: flex;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd4d7;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

.compatibility-note p {
  margin: 1px 0 0;
}

/* Download */

.download-section {
  background: var(--silver-light);
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 85px;
  align-items: center;
}

.download-copy > p {
  max-width: 660px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.download-options {
  display: grid;
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.download-option {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.download-option > span {
  color: #9ca3a7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.download-option.active > span {
  color: var(--brand-dark);
}

.download-option small {
  display: block;
  color: #959da1;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.download-option strong {
  display: block;
  margin-top: 3px;
  font-size: 14px;
}

.download-option p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.download-phone-area {
  position: relative;
  min-height: 690px;
}

.download-iphone {
  position: absolute;
  top: 0;
  left: 50%;
  width: 336px;
  transform: translateX(-50%);
}

.download-caption {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  text-align: center;
}

.download-caption span {
  display: block;
  color: #91999e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.download-caption strong {
  display: block;
  margin-top: 5px;
  color: #4b5459;
  font-size: 11px;
}

/* Entry Types */

.entry-types-section {
  background: #ffffff;
}

.entry-types-heading {
  max-width: 800px;
  margin-bottom: 50px;
}

.entry-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.entry-type {
  position: relative;
  min-height: 390px;
  padding: 35px 32px;
  border-right: 1px solid var(--line);
}

.entry-type:last-child {
  border-right: 0;
}

.entry-type-primary {
  background: var(--silver-light);
}

.entry-index {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #a1a8ac;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.entry-symbol {
  display: flex;
  width: 58px;
  height: 58px;
  margin-bottom: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.web-symbol span {
  width: 30px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

.web-symbol span::before {
  display: block;
  height: 5px;
  border-bottom: 1px solid currentColor;
  content: "";
}

.testflight-symbol {
  color: #486fd0;
  background: #e6ecfb;
}

.testflight-symbol span,
.store-symbol span {
  font-size: 13px;
  font-weight: 850;
}

.store-symbol {
  color: #8c9499;
  background: #eef0f2;
}

.entry-type small {
  display: block;
  color: #989fa3;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.entry-type h3 {
  margin: 11px 0 13px;
  font-size: 27px;
  letter-spacing: -0.03em;
}

.entry-type p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.entry-status {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}

.entry-status.available {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.entry-status.missing {
  color: #8d6260;
  background: #f4e7e6;
}

/* TestFlight */

.testflight-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 28% 45%, rgba(92, 124, 214, 0.16), transparent 25%),
    linear-gradient(140deg, #10151c, #151b24);
}

.testflight-layout {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 90px;
  align-items: center;
}

.testflight-device {
  min-height: 680px;
}

.testflight-iphone {
  width: 336px;
  margin: 0 auto;
}

.testflight-copy > p {
  max-width: 680px;
  margin: 23px 0 0;
  color: rgba(231, 237, 244, 0.58);
  font-size: 15px;
}

.testflight-steps {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testflight-steps > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.testflight-steps span {
  color: #8eabea;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.testflight-steps p {
  margin: 0;
  color: rgba(230, 237, 244, 0.55);
  font-size: 10px;
}

.testflight-steps strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 12px;
}

.testflight-alert {
  display: flex;
  margin-top: 28px;
  align-items: flex-start;
  gap: 12px;
  padding: 17px;
  border: 1px solid rgba(91, 123, 215, 0.28);
  border-radius: 13px;
  background: rgba(91, 123, 215, 0.08);
}

.testflight-alert span {
  display: flex;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(142, 171, 234, 0.35);
  border-radius: 50%;
  color: #9bb7ef;
  font-size: 10px;
  font-weight: 800;
}

.testflight-alert p {
  margin: 2px 0 0;
  color: rgba(232, 238, 245, 0.62);
  font-size: 10px;
}

/* Settings */

.settings-section {
  background: var(--silver-light);
}

.settings-layout {
  display: grid;
  min-height: 670px;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 80px;
  align-items: center;
}

.settings-copy > p {
  max-width: 650px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.settings-copy ul {
  display: grid;
  margin: 30px 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.settings-copy li {
  position: relative;
  padding-left: 23px;
  color: #566066;
  font-size: 12px;
  font-weight: 650;
}

.settings-copy li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  transition: transform var(--transition);
}

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

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

.settings-iphone {
  width: 336px;
  margin: 0 auto;
}

.settings-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}

.settings-label small {
  display: block;
  color: #979fa3;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.settings-label strong {
  display: block;
  margin-top: 5px;
  color: #515a5f;
  font-size: 11px;
}

/* Install */

.install-section {
  background: #ffffff;
}

.install-heading {
  display: grid;
  margin-bottom: 55px;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 38px;
}

.install-heading > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 65px;
  align-items: end;
}

.install-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.install-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.install-flow article {
  min-height: 445px;
  padding: 30px 23px;
  border-right: 1px solid var(--line);
}

.install-flow article:last-child {
  border-right: 0;
}

.install-visual {
  display: flex;
  height: 170px;
  align-items: center;
  justify-content: center;
}

.mini-phone {
  position: relative;
  width: 88px;
  height: 148px;
  overflow: hidden;
  border: 2px solid #273036;
  border-radius: 18px;
  background: var(--silver-light);
}

.mini-island {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 26px;
  height: 7px;
  border-radius: 999px;
  background: #252b2f;
  transform: translateX(-50%);
}

.mini-browser {
  display: grid;
  margin-top: 28px;
  padding: 14px 11px;
  gap: 8px;
}

.mini-browser span {
  height: 6px;
  border-radius: 999px;
  background: #d7dce0;
}

.mini-browser span:nth-child(2) {
  width: 75%;
}

.mini-browser span:nth-child(3) {
  width: 54%;
  background: var(--brand);
}

.choice-lines {
  display: grid;
  margin-top: 31px;
  padding: 13px 10px;
  gap: 8px;
}

.choice-lines span {
  height: 22px;
  border: 1px solid #d5dade;
  border-radius: 7px;
  background: #ffffff;
}

.choice-lines span.active {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.mini-app {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mini-app img,
.launch-app img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.mini-app span {
  width: 49px;
  height: 5px;
  margin-top: 12px;
  border-radius: 999px;
  background: #d1d7da;
}

.mini-app span:last-child {
  width: 33px;
  margin-top: 6px;
}

.mini-prompt {
  margin: 46px 9px 0;
  padding: 11px 8px;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(33, 40, 45, 0.12);
}

.mini-prompt > span {
  display: block;
  height: 5px;
  margin-bottom: 7px;
  border-radius: 999px;
  background: #d3d9dc;
}

.mini-prompt > span:nth-child(2) {
  width: 65%;
}

.mini-prompt div {
  display: grid;
  margin-top: 10px;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.mini-prompt i {
  height: 14px;
  border-radius: 4px;
  background: #e4e8ea;
}

.mini-prompt i:last-child {
  background: var(--brand-soft);
}

.launch-app {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.launch-app strong {
  margin-top: 14px;
  padding: 5px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-dark);
  font-size: 7px;
}

.install-copy {
  margin-top: 28px;
}

.install-number {
  color: var(--brand-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.install-copy small {
  display: block;
  margin-top: 7px;
  color: #989fa3;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.install-copy h3 {
  margin: 11px 0 10px;
  font-size: 18px;
  line-height: 1.22;
}

.install-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.install-summary {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.install-summary > div {
  display: grid;
  min-height: 108px;
  grid-template-columns: 47px 1fr;
  gap: 13px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--silver-light);
}

.install-summary span {
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 9px;
  font-weight: 800;
}

.install-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

/* Experience */

.experience-section {
  background: var(--silver-light);
}

.experience-heading {
  display: grid;
  margin-bottom: 45px;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 35px;
}

.experience-heading > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.55fr);
  gap: 60px;
  align-items: end;
}

.experience-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.experience-showcase {
  display: grid;
  overflow: hidden;
  grid-template-columns: 230px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.experience-tabs {
  display: flex;
  flex-direction: column;
  padding: 25px 18px;
  background: var(--dark);
}

.experience-tabs button {
  display: flex;
  min-height: 67px;
  align-items: center;
  gap: 13px;
  padding: 0 14px;
  border-radius: 9px;
  color: rgba(229, 236, 239, 0.5);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.experience-tabs button span {
  color: rgba(105, 222, 191, 0.5);
  font-size: 8px;
  font-weight: 800;
}

.experience-tabs button.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.experience-tabs button.active span {
  color: #69dfbf;
}

.experience-panels {
  min-width: 0;
  background: #edf1f2;
}

.experience-panel {
  display: none;
}

.experience-panel.active {
  display: block;
  animation: panelFade 430ms ease;
}

.experience-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.experience-details {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-details article {
  min-height: 180px;
  padding: 28px 25px;
  border-right: 1px solid var(--line);
}

.experience-details article:last-child {
  border-right: 0;
}

.experience-details span {
  color: var(--brand-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.experience-details h3 {
  margin: 25px 0 7px;
  font-size: 17px;
}

.experience-details p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

/* Security */

.security-section {
  background: #ffffff;
}

.security-layout {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(390px, 0.72fr) minmax(0, 1.28fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--silver-light);
}

.security-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 62px 52px;
}

.security-copy > p {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.security-list {
  width: 100%;
  margin: 28px 0 30px;
  border-top: 1px solid var(--line);
}

.security-list > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.security-list span {
  color: var(--brand-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.security-list p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.security-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 12px;
}

.security-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background:
    radial-gradient(circle at 50% 50%, rgba(207, 85, 80, 0.06), transparent 38%),
    #edf1f2;
}

.security-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Final CTA */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 105px 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #111519 0%, #192127 100%);
}

.final-background {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1240px);
  margin: 0 auto;
  grid-template-columns: minmax(390px, 0.72fr) minmax(580px, 1.28fr);
  gap: 65px;
  align-items: center;
}

.final-app {
  display: flex;
  margin-bottom: 27px;
  align-items: center;
  gap: 13px;
}

.final-app img {
  width: 55px;
  height: 55px;
  border-radius: 13px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.final-app small {
  display: block;
  color: rgba(227, 234, 238, 0.38);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.final-app strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}

.final-copy > p {
  max-width: 550px;
  margin: 22px 0 30px;
  color: rgba(229, 236, 239, 0.57);
  font-size: 15px;
}

.final-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.3));
}

/* Footer */

.site-footer {
  padding: 72px 28px 30px;
  color: rgba(228, 236, 239, 0.61);
  background: #090c0e;
}

.footer-inner {
  display: grid;
  padding-bottom: 50px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  width: 184px;
}

.footer-brand p {
  max-width: 450px;
  margin: 18px 0 0;
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 60px;
}

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

.footer-links strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 12px;
}

.footer-links a {
  font-size: 12px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #6de0c2;
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  font-size: 10px;
}

.footer-bottom p {
  max-width: 790px;
  margin: 0;
}

.footer-bottom > span {
  white-space: nowrap;
}

/* Back to top */

.back-to-top {
  position: fixed;
  right: 23px;
  bottom: 23px;
  z-index: 900;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2d7d9;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(26, 34, 38, 0.12);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    background var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  color: #ffffff;
  background: var(--dark);
}

/* Reveal */

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-enabled [data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

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

  .header-action {
    margin-left: auto;
  }

  .hero-container {
    grid-template-columns: minmax(390px, 0.9fr) minmax(410px, 1.1fr);
    gap: 45px;
  }

  .compatibility-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .compatibility-strip article:nth-child(2) {
    border-right: 0;
  }

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

  .install-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .install-flow article:nth-child(3) {
    border-right: 0;
  }

  .install-flow article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 920px) {
  .section {
    padding: 88px 22px;
  }

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

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

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

  .download-layout,
  .settings-layout {
    grid-template-columns: 1fr;
  }

  .download-phone-area,
  .settings-device {
    width: min(100%, 440px);
    margin: 0 auto;
  }

  .entry-types-grid {
    grid-template-columns: 1fr;
  }

  .entry-type {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .entry-type:last-child {
    border-bottom: 0;
  }

  .testflight-layout {
    grid-template-columns: 1fr;
  }

  .testflight-device {
    width: min(100%, 420px);
    min-height: auto;
    margin: 0 auto;
  }

  .install-heading,
  .experience-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .install-heading > div,
  .experience-heading > div {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .install-summary {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .final-cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 68px;
    padding: 0 18px;
  }

  .brand-logo {
    width: 145px;
  }

  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-navigation {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    border-bottom: 1px solid transparent;
    background: rgba(5, 20, 16, 0.98);
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 320ms ease,
      padding 320ms ease,
      opacity 220ms ease;
  }

  .mobile-navigation.open {
    max-height: 470px;
    padding-top: 14px;
    padding-bottom: 23px;
    border-color: rgba(255, 255, 255, 0.08);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-navigation a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    color: rgba(231, 244, 239, 0.78);
    font-size: 13px;
  }

  .mobile-action {
    margin-top: 13px;
    border: 0 !important;
    border-radius: 999px;
    color: #ffffff !important;
    background: var(--dark);
    text-align: center;
    font-weight: 800;
  }

  .hero {
    min-height: auto;
    padding: 110px 18px 55px;
  }

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

  .hero h1 span {
    font-size: 0.42em;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

  .hero-details div {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid #d4d8db;
  }

  .hero-details div:last-child {
    border-bottom: 0;
  }

  .hero-device {
    min-height: 590px;
    margin-top: 25px;
  }

  .device-ring {
    top: 75px;
    width: 360px;
    height: 360px;
  }

  .iphone-main {
    width: 280px;
  }

  .hero-floating-card {
    right: 0;
    bottom: 90px;
    min-width: 195px;
  }

  .hero-note {
    display: none;
  }

  .compatibility-section {
    padding: 72px 18px;
  }

  .section-heading h2,
  .download-copy h2,
  .entry-types-heading h2,
  .testflight-copy h2,
  .settings-copy h2,
  .install-heading h2,
  .experience-heading h2,
  .security-copy h2,
  .final-copy h2 {
    font-size: clamp(32px, 10vw, 45px);
  }

  .compatibility-strip {
    grid-template-columns: 1fr;
  }

  .compatibility-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .compatibility-strip article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 18px;
  }

  .download-phone-area,
  .settings-device {
    min-height: 620px;
  }

  .download-iphone,
  .settings-iphone,
  .testflight-iphone {
    width: 280px;
  }

  .entry-type {
    padding: 30px 24px;
  }

  .testflight-device {
    min-height: 590px;
  }

  .install-flow {
    grid-template-columns: 1fr;
  }

  .install-flow article {
    display: grid;
    min-height: auto;
    grid-template-columns: 115px 1fr;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .install-flow article:last-child {
    border-bottom: 0;
  }

  .install-visual {
    height: auto;
  }

  .install-copy {
    margin-top: 0;
  }

  .install-summary {
    grid-template-columns: 1fr;
  }

  .experience-showcase {
    grid-template-columns: 1fr;
    border-radius: 21px;
  }

  .experience-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px;
  }

  .experience-tabs button {
    min-height: 55px;
    justify-content: center;
    padding: 0 8px;
    font-size: 9px;
  }

  .experience-details {
    grid-template-columns: 1fr;
  }

  .experience-details article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .experience-details article:last-child {
    border-bottom: 0;
  }

  .security-layout {
    border-radius: 21px;
  }

  .security-copy {
    padding: 42px 24px 15px;
  }

  .security-image {
    padding: 10px;
  }

  .final-cta {
    padding: 82px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 43px;
  }

  .footer-links {
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 17px;
  }

  .footer-bottom > span {
    white-space: normal;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 43px;
  }

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

  .iphone-main {
    width: 245px;
  }

  .hero-floating-card {
    bottom: 50px;
    min-width: 180px;
    padding: 12px;
  }

  .experience-tabs button span {
    display: none;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
