.home-v2 {
  --page-bg: #ffffff;
  --surface: #f5f5f7;
  --surface-deep: #ececf0;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --green: #23a55a;
  color: var(--ink);
  background: var(--page-bg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Display", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.012em;
}

.home-v2 .icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.home-v2 svg:not(.icon-sprite) {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-v2 .site-header {
  min-height: 48px;
  padding: 7px max(22px, calc((100vw - 1024px) / 2));
  border-bottom: 0;
  background: rgba(250, 250, 252, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
}

.home-v2 .brand {
  gap: 8px;
}

.home-v2 .brand-icon-wrap {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
}

.home-v2 .brand-icon-wrap img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}

.home-v2 .brand-copy {
  display: block;
}

.home-v2 .brand-copy strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.home-v2 .brand-copy small {
  display: none;
}

.home-v2 .top-nav {
  gap: 26px;
  color: #343437;
  font-size: 12px;
  font-weight: 400;
}

.home-v2 .top-nav a {
  transition: color 160ms ease;
}

.home-v2 .top-nav a:hover {
  color: #000;
}

.home-v2 .top-nav .nav-download {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 5px 12px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: none;
}

.home-v2 .top-nav .nav-download:hover {
  color: #fff;
  background: var(--blue-hover);
}

.home-v2 .nav-download svg {
  font-size: 12px;
}

.home-v2 .home-main {
  background: #fff;
}

.home-v2 .home-hero {
  position: relative;
  overflow: hidden;
  border: 0;
  background: #fff;
}

.home-v2 .home-hero::before,
.home-v2 .home-hero::after {
  display: none;
}

.home-v2 .home-hero-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 0;
}

.home-v2 .home-copy {
  width: min(100%, 980px);
  padding: 94px 24px 62px;
  text-align: center;
}

.home-v2 .home-eyebrow {
  display: block;
  margin: 0 0 14px;
  color: #6e6e73;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.home-v2 .home-eyebrow span {
  display: none;
}

.home-v2 .home-copy h1 {
  max-width: none;
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(58px, 6.2vw, 88px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.home-v2 .home-copy .title-main {
  display: inline;
  color: inherit;
  white-space: normal;
}

.home-v2 .home-copy .title-accent {
  color: inherit;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.home-v2 .home-subtitle {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.home-v2 .home-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.home-v2 .platform-button {
  display: grid;
  align-items: center;
  width: auto;
  min-width: 206px;
  min-height: 66px;
  padding: 10px 15px 10px 13px;
  grid-template-columns: 34px minmax(0, 1fr) 16px;
  gap: 11px;
  border-radius: 18px;
  text-align: left;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.home-v2 .platform-button:hover {
  transform: translateY(-1px);
}

.home-v2 .primary-action {
  border: 1px solid #1d1d1f;
  color: #fff;
  background: #1d1d1f;
  box-shadow: none;
}

.home-v2 .primary-action:hover {
  background: #000;
  box-shadow: none;
}

.home-v2 .secondary-action {
  border: 1px solid #e5e5e7;
  color: #1d1d1f;
  background: #f5f5f7;
  box-shadow: none;
}

.home-v2 .secondary-action:hover {
  color: #1d1d1f;
  background: #ededf0;
  box-shadow: none;
}

.home-v2 .platform-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 11px;
  background: transparent;
}

.home-v2 .primary-action .platform-icon {
  background: transparent;
}

.home-v2 .platform-brand-logo {
  display: block;
  width: 26px;
  height: 26px;
}

.home-v2 .apple-brand-logo {
  filter: brightness(0) invert(1);
}

.home-v2 .android-brand-logo {
  width: 28px;
  height: 28px;
}

.home-v2 .web-button .platform-icon > svg {
  font-size: 26px;
  stroke-width: 1.7;
}

.home-v2 .action-copy strong,
.home-v2 .platform-button small {
  display: block;
}

.home-v2 .action-copy strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.15;
}

.home-v2 .platform-button small {
  margin-top: 4px;
  color: #86868b;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.15;
}

.home-v2 .primary-action small {
  color: #a1a1a6;
}

.home-v2 .action-arrow {
  display: block;
  justify-self: end;
  font-size: 15px;
  stroke-width: 1.8;
}

.home-v2 .safety-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 66px;
  padding: 0 8px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 400;
}

.home-v2 .safety-link > svg:first-child {
  display: block;
  color: #1d1d1f;
  font-size: 19px;
}

.home-v2 .safety-link .action-arrow {
  display: block;
  font-size: 12px;
}

.home-v2 .hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 28px auto 0;
  color: #86868b;
  font-size: 12px;
  font-weight: 400;
}

.home-v2 .hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.home-v2 .hero-trust svg {
  color: #86868b;
  font-size: 12px;
  stroke-width: 2;
}

.home-v2 .secure-stage {
  position: relative;
  width: calc(100% - 24px);
  min-height: 660px;
  margin: 0 auto 12px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: #f5f5f7;
  background: #000;
  box-shadow: none;
}

.home-v2 .secure-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -360px;
  width: 920px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.075);
  filter: blur(90px);
  transform: translateX(-50%);
}

.home-v2 .stage-orbit,
.home-v2 .stage-glow {
  display: none;
}

.home-v2 .secure-phone {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -54px;
  width: 326px;
  height: 610px;
  padding: 7px;
  border: 1px solid #3a3a3c;
  border-radius: 48px;
  background: linear-gradient(145deg, #4b4b4e, #080808 40%, #2c2c2e);
  box-shadow: 0 42px 76px rgba(0, 0, 0, 0.72);
  transform: translateX(-50%);
}

.home-v2 .secure-phone::before {
  content: "";
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 14px;
  width: 84px;
  height: 24px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.home-v2 .secure-phone-shell {
  height: 100%;
  overflow: hidden;
  border-radius: 40px;
  color: #1d1d1f;
  background: #f5f5f7;
}

.home-v2 .secure-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 8px 20px 0;
  font-size: 10px;
  font-weight: 600;
}

.home-v2 .secure-chat-head {
  display: grid;
  align-items: center;
  height: 62px;
  padding: 8px 14px;
  grid-template-columns: 15px 36px minmax(0, 1fr) 18px;
  gap: 9px;
  border-bottom: 1px solid #e5e5e7;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.home-v2 .secure-back {
  color: var(--blue);
  font-size: 25px;
}

.home-v2 .secure-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: #2c2c2e;
  font-size: 12px;
  font-weight: 600;
}

.home-v2 .secure-chat-head strong,
.home-v2 .secure-chat-head small {
  display: block;
}

.home-v2 .secure-chat-head strong {
  font-size: 12px;
  line-height: 1.2;
}

.home-v2 .secure-chat-head small {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  color: #86868b;
  font-size: 8px;
}

.home-v2 .secure-chat-head small i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #30d158;
}

.home-v2 .secure-more {
  color: #86868b;
  font-size: 15px;
}

.home-v2 .secure-chat-body {
  display: flex;
  height: 425px;
  padding: 18px 15px;
  flex-direction: column;
  gap: 11px;
}

.home-v2 .secure-day {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 4px;
  margin-bottom: 2px;
  color: #86868b;
  font-size: 8px;
}

.home-v2 .secure-day svg {
  font-size: 10px;
}

.home-v2 .secure-message {
  max-width: 80%;
  padding: 10px 12px;
  border-radius: 6px 16px 16px 16px;
  color: #1d1d1f;
  background: #e9e9eb;
  box-shadow: none;
  font-size: 10px;
  line-height: 1.5;
}

.home-v2 .secure-message.outgoing {
  align-self: flex-end;
  border-radius: 16px 6px 16px 16px;
  color: #fff;
  background: var(--blue);
  box-shadow: none;
}

.home-v2 .secure-message.short {
  max-width: 40%;
}

.home-v2 .burn-card {
  position: relative;
  display: grid;
  align-items: center;
  align-self: flex-end;
  width: 82%;
  padding: 11px;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 9px;
  border: 1px solid #e1e1e4;
  border-radius: 16px 6px 16px 16px;
  background: #fff;
}

.home-v2 .burn-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 2px;
  background: var(--blue);
}

.home-v2 .burn-ring {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--blue);
  background: #f5f5f7;
  font-size: 16px;
}

.home-v2 .burn-card small,
.home-v2 .burn-card strong {
  display: block;
}

.home-v2 .burn-card small {
  color: #86868b;
  font-size: 7px;
}

.home-v2 .burn-card strong {
  margin-top: 2px;
  font-size: 10px;
}

.home-v2 .secure-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  margin: 0 11px;
  padding: 6px 6px 6px 14px;
  border: 1px solid #dedee2;
  border-radius: 18px;
  color: #a1a1a6;
  background: #fff;
  font-size: 9px;
}

.home-v2 .secure-input button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 15px;
}

.home-v2 .security-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 184px;
  padding: 11px 14px;
  border: 1px solid #2c2c2e;
  border-radius: 14px;
  color: #f5f5f7;
  background: rgba(28, 28, 30, 0.82);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
}

.home-v2 .security-chip small,
.home-v2 .security-chip strong {
  display: block;
}

.home-v2 .security-chip small {
  color: #8e8e93;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.home-v2 .security-chip strong {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 500;
}

.home-v2 .chip-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: #f5f5f7;
  background: #3a3a3c;
  font-size: 16px;
}

.home-v2 .chip-encrypted {
  left: calc(50% - 360px);
  top: 24%;
}

.home-v2 .chip-burn {
  right: calc(50% - 370px);
  top: 33%;
}

.home-v2 .chip-device {
  left: calc(50% - 340px);
  bottom: 17%;
}

.home-v2 .chip-dot {
  width: 8px;
  height: 8px;
  margin: 0 10px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 0 6px rgba(48, 209, 88, 0.12);
}

.home-v2 .stage-caption {
  position: absolute;
  right: 26px;
  bottom: 22px;
  color: #6e6e73;
  font-size: 10px;
  letter-spacing: 0;
}

.home-v2 .stage-caption span {
  display: none;
}

.home-v2 .capabilities-section,
.home-v2 .download-section {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 150px 28px;
}

.home-v2 .section-heading {
  display: grid;
  max-width: 860px;
  margin-bottom: 70px;
}

.home-v2 .section-kicker {
  display: block;
  margin: 0 0 16px;
  color: #6e6e73;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.home-v2 .section-kicker span {
  display: none;
}

.home-v2 .section-heading h2,
.home-v2 .story-copy h2,
.home-v2 .closing-cta h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(48px, 5.4vw, 72px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.06;
}

.home-v2 .section-heading h2 em {
  color: inherit;
  font-style: normal;
}

.home-v2 .section-heading > p:last-child {
  max-width: 650px;
  margin: 26px 0 0;
  color: #6e6e73;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

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

.home-v2 .bento-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 42px;
  border: 0;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: none;
}

.home-v2 .bento-primary {
  display: grid;
  min-height: 580px;
  grid-row: span 2;
  grid-template-rows: auto 1fr;
  background: #f5f5f7;
}

.home-v2 .bento-secondary {
  min-height: 282px;
  background: #f5f5f7;
}

.home-v2 .bento-wide {
  display: grid;
  min-height: 340px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  align-items: center;
  background: #f5f5f7;
}

.home-v2 .feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  color: #1d1d1f;
  background: #fff;
  font-size: 24px;
}

.home-v2 .privacy-icon-main,
.home-v2 .cyan-icon,
.home-v2 .orange-icon,
.home-v2 .blue-icon {
  color: #1d1d1f;
  border-color: transparent;
  background: #fff;
}

.home-v2 .feature-label {
  margin: 24px 0 8px;
  color: #6e6e73;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.home-v2 .bento-card h3 {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.home-v2 .bento-secondary h3 {
  font-size: 30px;
}

.home-v2 .bento-card p:not(.feature-label) {
  max-width: 500px;
  margin: 15px 0 0;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.55;
}

.home-v2 .privacy-control {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  margin-top: 24px;
}

.home-v2 .privacy-control::before,
.home-v2 .privacy-control::after {
  display: none;
}

.home-v2 .privacy-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  border: 0;
  border-radius: 34px;
  color: #fff;
  background: #1d1d1f;
  box-shadow: none;
  font-size: 60px;
  transform: none;
}

.home-v2 .privacy-core svg {
  transform: none;
}

.home-v2 .privacy-core i {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 16px;
  height: 16px;
  border: 4px solid #1d1d1f;
  border-radius: 50%;
  background: #30d158;
}

.home-v2 .privacy-tag {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  color: #3a3a3c;
  background: #fff;
  box-shadow: none;
  font-size: 11px;
  font-weight: 500;
}

.home-v2 .privacy-tag svg {
  color: #30a14e;
  font-size: 12px;
  stroke-width: 2.3;
}

.home-v2 .tag-one { left: 2%; top: 18%; }
.home-v2 .tag-two { right: 1%; top: 28%; }
.home-v2 .tag-three { left: 12%; bottom: 7%; }

.home-v2 .signal-line {
  position: absolute;
  right: 36px;
  bottom: 34px;
  display: flex;
  align-items: center;
  width: 42%;
}

.home-v2 .signal-line span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
}

.home-v2 .signal-line i {
  width: 50%;
  height: 1px;
  background: #c7c7cc;
}

.home-v2 .timer-visual {
  position: absolute;
  right: 38px;
  bottom: 32px;
  display: grid;
  justify-items: end;
  width: 42%;
}

.home-v2 .timer-visual strong {
  color: #1d1d1f;
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.home-v2 .timer-visual span {
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #d9d9de;
}

.home-v2 .timer-visual i {
  display: block;
  width: 64%;
  height: 100%;
  background: var(--blue);
}

.home-v2 .network-visual {
  position: relative;
  min-height: 190px;
}

.home-v2 .network-visual::before {
  display: none;
}

.home-v2 .network-node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  color: #3a3a3c;
  background: #fff;
  box-shadow: none;
  font-size: 11px;
  font-weight: 500;
}

.home-v2 .network-node i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #30d158;
}

.home-v2 .node-a { left: 1%; top: 56%; }
.home-v2 .node-b { left: 50%; top: 16%; color: #fff; background: #1d1d1f; transform: translateX(-50%); }
.home-v2 .node-c { right: 1%; top: 56%; }

.home-v2 .network-path {
  position: absolute;
  top: 52%;
  width: 31%;
  height: 1px;
  background: #b8b8bd;
  transform-origin: center;
}

.home-v2 .path-a { left: 17%; transform: rotate(-18deg); }
.home-v2 .path-b { right: 17%; transform: rotate(18deg); }

.home-v2 .security-story {
  padding: 0 12px;
}

.home-v2 .security-story-inner {
  display: grid;
  width: 100%;
  min-height: 620px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 118px) max(28px, calc((100vw - 1080px) / 2));
  grid-template-columns: minmax(340px, 0.8fr) minmax(460px, 1.2fr);
  align-items: center;
  gap: 90px;
  border: 0;
  border-radius: 0;
  color: #f5f5f7;
  background: #000;
  box-shadow: none;
}

.home-v2 .light-kicker {
  color: #86868b;
}

.home-v2 .story-copy h2 {
  color: #f5f5f7;
}

.home-v2 .story-copy > p:not(.section-kicker) {
  max-width: 470px;
  margin: 24px 0 0;
  color: #a1a1a6;
  font-size: 18px;
  line-height: 1.5;
}

.home-v2 .story-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  color: #2997ff;
  font-size: 17px;
  font-weight: 400;
}

.home-v2 .story-copy > a svg {
  font-size: 14px;
}

.home-v2 .security-flow {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  list-style: none;
  background: #2c2c2e;
}

.home-v2 .security-flow::before {
  display: none;
}

.home-v2 .security-flow li {
  display: grid;
  align-items: center;
  min-height: 100px;
  padding: 18px 22px;
  grid-template-columns: 32px 48px minmax(0, 1fr);
  gap: 16px;
  border: 0;
  border-radius: 0;
  background: #1c1c1e;
}

.home-v2 .flow-number {
  color: #636366;
  font-size: 10px;
  font-weight: 500;
}

.home-v2 .flow-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  color: #f5f5f7;
  background: #2c2c2e;
  font-size: 22px;
}

.home-v2 .security-flow strong,
.home-v2 .security-flow small {
  display: block;
}

.home-v2 .security-flow strong {
  font-size: 15px;
  font-weight: 600;
}

.home-v2 .security-flow small {
  margin-top: 4px;
  color: #86868b;
  font-size: 11px;
}

.home-v2 .download-section {
  padding-top: 150px;
}

.home-v2 .download-heading {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.home-v2 .download-heading > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

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

.home-v2 .download-card-v2 {
  position: relative;
  min-height: 520px;
  padding: 42px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #f5f5f7;
  box-shadow: none;
}

.home-v2 .ios-download-card,
.home-v2 .android-download-card {
  background: #f5f5f7;
}

.home-v2 .download-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-v2 .download-platform-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 0;
  color: #1d1d1f;
  background: transparent;
  box-shadow: none;
}

.home-v2 .download-platform-icon img {
  display: block;
  width: 37px;
  height: 37px;
}

.home-v2 .android-platform img {
  width: 40px;
  height: 40px;
}

.home-v2 .apple-platform,
.home-v2 .android-platform {
  background: transparent;
}

.home-v2 .android-platform {
  color: #27834f;
}

.home-v2 .download-badge {
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  color: #6e6e73;
  background: #e8e8ed;
  font-size: 10px;
  font-weight: 500;
}

.home-v2 .green-badge {
  color: #28784d;
  background: #e3f3e9;
}

.home-v2 .download-card-v2 h3 {
  margin: 30px 0 0;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.home-v2 .download-card-v2 > p {
  max-width: 420px;
  margin: 13px 0 0;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.55;
}

.home-v2 .download-card-v2 ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.home-v2 .download-card-v2 li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #515154;
  font-size: 12px;
}

.home-v2 .download-card-v2 li svg {
  color: #30a14e;
  font-size: 13px;
  stroke-width: 2.3;
}

.home-v2 .download-cta {
  position: absolute;
  z-index: 3;
  left: 42px;
  bottom: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: none;
  font-size: 14px;
  font-weight: 400;
  transition: background 160ms ease;
}

.home-v2 .download-cta:hover {
  background: var(--blue-hover);
  transform: none;
}

.home-v2 .ios-download-cta,
.home-v2 .android-download-cta {
  color: #fff;
  background: var(--blue);
  box-shadow: none;
}

.home-v2 .download-cta svg {
  font-size: 14px;
}

.home-v2 .device-art {
  position: absolute;
  right: 38px;
  bottom: -64px;
  width: 184px;
  height: 300px;
  padding: 6px;
  border: 1px solid #d2d2d7;
  border-radius: 34px;
  background: #1d1d1f;
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.16);
  transform: rotate(7deg);
}

.home-v2 .device-screen {
  display: grid;
  align-content: center;
  justify-items: center;
  height: 100%;
  gap: 10px;
  border-radius: 28px;
  background: #fff;
}

.home-v2 .device-screen img {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  box-shadow: none;
}

.home-v2 .device-screen i {
  width: 64px;
  height: 5px;
  border-radius: 999px;
  background: #d2d2d7;
}

.home-v2 .device-screen i:last-child {
  width: 46px;
}

.home-v2 .download-qr {
  position: absolute;
  right: 42px;
  bottom: 36px;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 9px;
  border: 0;
  border-radius: 14px;
  color: #6e6e73;
  background: #fff;
  box-shadow: none;
  font-size: 10px;
}

.home-v2 .download-qr img {
  width: 98px;
  height: 98px;
  border-radius: 7px;
}

.home-v2 .download-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 24px 0 0;
  color: #86868b;
  font-size: 11px;
}

.home-v2 .download-note svg {
  font-size: 14px;
}

.home-v2 .closing-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: calc(100% - 24px);
  min-height: 460px;
  margin: 0 auto 12px;
  padding: clamp(56px, 8vw, 110px) max(28px, calc((100vw - 1080px) / 2));
  border-radius: 0;
  color: #1d1d1f;
  background: #f5f5f7;
  box-shadow: none;
}

.home-v2 .closing-cta h2 {
  color: #1d1d1f;
}

.home-v2 .closing-cta .light-kicker {
  color: #6e6e73;
}

.home-v2 .closing-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-v2 .closing-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  background: transparent;
  font-size: 14px;
  font-weight: 400;
}

.home-v2 .closing-actions a:first-child {
  color: #fff;
  background: var(--blue);
  box-shadow: none;
}

.home-v2 .closing-actions a:last-child {
  color: var(--blue);
  background: transparent;
}

.home-v2 .site-footer {
  border-top: 0;
  color: #6e6e73;
  background: #f5f5f7;
}

.home-v2 .footer-brand img {
  border-radius: 8px;
  box-shadow: none;
}

@media (max-width: 980px) {
  .home-v2 .home-copy {
    padding-top: 78px;
  }

  .home-v2 .secure-stage {
    min-height: 590px;
  }

  .home-v2 .chip-encrypted { left: 5%; }
  .home-v2 .chip-burn { right: 5%; }
  .home-v2 .chip-device { left: 7%; }

  .home-v2 .capabilities-section,
  .home-v2 .download-section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .home-v2 .bento-primary {
    grid-row: auto;
  }

  .home-v2 .bento-wide {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-v2 .network-visual {
    min-height: 170px;
  }

  .home-v2 .security-story-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .home-v2 .download-grid-v2 {
    grid-template-columns: 1fr;
  }

  .home-v2 .closing-cta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 38px;
  }
}

@media (max-width: 700px) {
  .home-v2 .site-header {
    align-items: center;
    min-height: 48px;
    padding: 7px 16px;
    flex-direction: row;
  }

  .home-v2 .top-nav {
    width: auto;
    overflow: visible;
    padding: 0;
  }

  .home-v2 .top-nav > a:not(.nav-download) {
    display: none;
  }

  .home-v2 .home-copy {
    padding: 64px 20px 48px;
  }

  .home-v2 .home-eyebrow {
    font-size: 16px;
  }

  .home-v2 .home-copy h1 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .home-v2 .home-subtitle {
    font-size: 20px;
  }

  .home-v2 .home-actions {
    width: min(100%, 360px);
    margin-right: auto;
    margin-left: auto;
  }

  .home-v2 .platform-button {
    flex: 1 1 145px;
    justify-content: center;
  }

  .home-v2 .safety-link {
    width: 100%;
    justify-content: center;
  }

  .home-v2 .hero-trust {
    gap: 7px 12px;
  }

  .home-v2 .secure-stage {
    width: 100%;
    min-height: 520px;
  }

  .home-v2 .secure-phone {
    width: 264px;
    height: 516px;
  }

  .home-v2 .secure-chat-body {
    height: 347px;
  }

  .home-v2 .security-chip {
    min-width: 0;
    padding: 8px 10px;
  }

  .home-v2 .security-chip small,
  .home-v2 .stage-caption {
    display: none;
  }

  .home-v2 .chip-encrypted { left: 2%; top: 17%; }
  .home-v2 .chip-burn { right: 2%; top: 38%; }
  .home-v2 .chip-device { left: 3%; bottom: 12%; }

  .home-v2 .capabilities-section,
  .home-v2 .download-section {
    padding: 86px 18px;
  }

  .home-v2 .section-heading {
    margin-bottom: 44px;
  }

  .home-v2 .section-kicker {
    font-size: 17px;
  }

  .home-v2 .section-heading h2,
  .home-v2 .story-copy h2,
  .home-v2 .closing-cta h2 {
    font-size: 42px;
  }

  .home-v2 .section-heading > p:last-child {
    font-size: 18px;
  }

  .home-v2 .capability-bento {
    grid-template-columns: 1fr;
  }

  .home-v2 .bento-card,
  .home-v2 .bento-primary,
  .home-v2 .bento-wide {
    min-height: 0;
    padding: 28px;
    grid-column: auto;
    border-radius: 24px;
  }

  .home-v2 .bento-primary {
    min-height: 520px;
  }

  .home-v2 .bento-secondary {
    min-height: 280px;
  }

  .home-v2 .bento-wide {
    min-height: 440px;
  }

  .home-v2 .signal-line,
  .home-v2 .timer-visual {
    right: 28px;
    width: 50%;
  }

  .home-v2 .security-story {
    padding: 0;
  }

  .home-v2 .security-story-inner {
    padding: 84px 22px;
    gap: 46px;
  }

  .home-v2 .security-flow li {
    min-height: 88px;
    padding: 14px;
    grid-template-columns: 24px 42px minmax(0, 1fr);
    gap: 10px;
  }

  .home-v2 .flow-icon {
    width: 42px;
    height: 42px;
  }

  .home-v2 .download-card-v2 {
    min-height: 600px;
    padding: 28px;
    border-radius: 24px;
  }

  .home-v2 .download-card-v2 h3 {
    font-size: 38px;
  }

  .home-v2 .download-cta {
    left: 28px;
    bottom: 28px;
  }

  .home-v2 .device-art {
    right: 24px;
    bottom: 100px;
    width: 154px;
    height: 250px;
  }

  .home-v2 .download-qr {
    right: 24px;
    bottom: 100px;
  }

  .home-v2 .download-note {
    align-items: flex-start;
    text-align: left;
  }

  .home-v2 .closing-cta {
    width: 100%;
    min-height: 430px;
    margin-bottom: 0;
    padding: 82px 22px;
  }

  .home-v2 .closing-actions {
    align-items: stretch;
    width: 100%;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v2 a {
    transition: none;
  }
}
