:root {
  color-scheme: light;
  --bg: #f7fbff;
  --surface: rgba(255,255,255,.90);
  --surface-solid: #ffffff;
  --text: #071120;
  --muted: #526276;
  --muted-soft: #76859a;
  --line: rgba(9, 22, 40, .10);
  --blue: #0a84ff;
  --pink: #ff2e91;
  --shadow: 0 20px 54px rgba(15, 35, 70, .10);
  --shadow-soft: 0 12px 30px rgba(15, 35, 70, .07);
  --radius: 26px;
  --max: 1160px;
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b0c10;
  --surface: rgba(18, 20, 27, .90);
  --surface-solid: #12141a;
  --text: #f5f7fb;
  --muted: #acb4c1;
  --muted-soft: #788293;
  --line: rgba(255, 255, 255, .10);
  --shadow: 0 24px 66px rgba(0,0,0,.44);
  --shadow-soft: 0 12px 34px rgba(0,0,0,.30);
}
* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 12% 8%, rgba(10,132,255,.16), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(255,46,145,.11), transparent 32%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 70%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at 12% 6%, rgba(83,96,255,.14), transparent 31%),
    radial-gradient(circle at 88% 10%, rgba(10,132,255,.10), transparent 29%),
    linear-gradient(180deg, #0b0c10 0%, #07080b 100%);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.topbar { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); background: color-mix(in srgb, var(--bg) 78%, transparent); }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-icon { width: 31px; height: 31px; border-radius: 0; display: block; transition: filter .18s ease, transform .18s ease; }
.brand:hover .brand-icon { transform: translateX(1px); }
:root[data-theme="dark"] .brand-icon { filter: invert(1) brightness(1.12); }
.brand-wordmark { display: inline-flex; align-items: baseline; color: var(--text); font-family: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", sans-serif; font-stretch: condensed; font-size: 20px; line-height: 1; letter-spacing: -.065em; text-transform: uppercase; }
.brand-wordmark strong { font-weight: 900; }
.brand-wordmark em { margin-left: .02em; color: var(--muted); font-style: normal; font-weight: 520; }
.nav-links { display: flex; align-items: center; gap: 20px; color: var(--muted); font-size: 14px; font-weight: 830; }
.nav-links a { padding: 8px 0; white-space: nowrap; }
.nav-links a.active, .nav-links a:hover { color: var(--text); }
.controls { display: inline-flex; align-items: center; gap: 8px; }
.toggle { border: 1px solid var(--line); border-radius: 999px; background: var(--surface-solid); color: var(--text); min-width: 54px; padding: 8px 11px; cursor: pointer; font-size: 13px; font-weight: 850; }
main { flex: 1 0 auto; padding: 56px 0 66px; }
.eyebrow, .kicker { margin: 0 0 10px; text-transform: uppercase; letter-spacing: .22em; color: var(--muted-soft); font-size: 11px; font-weight: 950; }
.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 380px); gap: 28px; align-items: end; }
.hero h1 { margin: 0; max-width: 820px; font-size: clamp(46px, 7vw, 78px); line-height: .95; letter-spacing: -.074em; font-weight: 950; }
.hero-title { margin: 18px 0 0; max-width: 660px; color: var(--muted); font-size: clamp(21px, 2.4vw, 29px); line-height: 1.14; letter-spacing: -.042em; font-weight: 730; }
.hero-card { border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow-soft); padding: 26px; }
.hero-card p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.48; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chips span { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-solid); padding: 8px 11px; color: var(--muted); font-size: 13px; font-weight: 850; }
.section { margin-top: 70px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.section-head h2 { margin: 0; font-size: clamp(34px, 4.7vw, 56px); line-height: .98; letter-spacing: -.064em; font-weight: 940; }
.section-head p { margin: 0; max-width: 390px; color: var(--muted); font-size: 16px; }
.apps-grid, .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: start; }
.card { border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow-soft); padding: 26px; }
.app-card { position: relative; min-height: 240px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(150deg, var(--surface), rgba(255,255,255,.60)); box-shadow: var(--shadow); padding: 26px; display: flex; flex-direction: column; justify-content: space-between; isolation: isolate; transition: transform .18s ease, box-shadow .18s ease; }
:root[data-theme="dark"] .app-card { background: linear-gradient(150deg, var(--surface), rgba(16,29,45,.60)); }
.app-card:hover { transform: translateY(-3px); box-shadow: 0 28px 76px rgba(10, 132, 255, .13); }
.app-card::after { content: ""; position: absolute; right: -92px; top: -96px; width: 250px; height: 250px; border-radius: 50%; background: var(--glow, rgba(10,132,255,.18)); filter: blur(42px); z-index: -1; }
.mrpet-accent { --accent: var(--blue); --glow: rgba(10,132,255,.22); }
.lit-accent { --accent: var(--pink); --glow: rgba(255,46,145,.20); }
.app-logo { width: 66px; height: 66px; border-radius: 20px; object-fit: cover; box-shadow: 0 16px 38px color-mix(in srgb, var(--accent) 22%, transparent); }
.app-row { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.app-row h3 { margin: 0; font-size: 28px; line-height: 1; letter-spacing: -.055em; }
.badge { border-radius: 999px; padding: 6px 9px; color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent); font-size: 12px; font-weight: 900; }
.app-card p { margin: 12px 0 0; color: var(--muted); font-size: 16px; max-width: 530px; }
.button-dark { display: inline-flex; width: fit-content; margin-top: 22px; border-radius: 999px; background: var(--text); color: var(--bg); padding: 10px 14px; font-size: 14px; font-weight: 900; }
.product-hero { position: relative; overflow: hidden; isolation: isolate; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; border: 1px solid var(--line); border-radius: 32px; background: var(--surface); box-shadow: var(--shadow); padding: 34px; }
.product-hero::after, .service-hero::after { content: ""; position: absolute; right: -120px; top: -130px; width: 360px; height: 360px; border-radius: 50%; background: var(--glow, rgba(10,132,255,.18)); filter: blur(54px); z-index: -1; }
.product-icon { width: 94px; height: 94px; border-radius: 26px; object-fit: cover; box-shadow: 0 20px 52px color-mix(in srgb, var(--accent) 22%, transparent); }
.product-hero h1, .service-hero h1, .doc h1 { margin: 0; font-size: clamp(42px, 5.8vw, 68px); line-height: .95; letter-spacing: -.072em; font-weight: 950; }
.lead { margin: 12px 0 0; max-width: 760px; color: var(--text); font-size: clamp(22px, 2.4vw, 30px); line-height: 1.12; letter-spacing: -.046em; font-weight: 820; }
.sublead { margin: 12px 0 0; max-width: 780px; color: var(--muted); font-size: 17px; }
.two-column { margin-top: 24px; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(300px, .84fr); gap: 22px; align-items: start; }
.card h2 { margin: 0 0 18px; font-size: clamp(28px, 3vw, 38px); line-height: 1.02; letter-spacing: -.058em; font-weight: 940; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.feature-list article { border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.58); padding: 18px; }
:root[data-theme="dark"] .feature-list article { background: rgba(255,255,255,.05); }
.feature-list h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.16; letter-spacing: -.03em; }
.feature-list p, .card p, .service-hero p, .contact-card p, .doc p, .doc li { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }
.ai-note { margin-top: 14px; padding: 12px 13px; border-left: 3px solid var(--blue); border-radius: 12px; background: color-mix(in srgb, var(--blue) 7%, transparent); color: var(--muted); font-size: 14px; line-height: 1.45; }
.email-link { display: inline-block; max-width: 100%; margin: 20px 0 0; color: var(--text); font-size: clamp(19px, 1.95vw, 25px); line-height: 1.14; font-weight: 930; letter-spacing: -.034em; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; overflow-wrap: anywhere; word-break: break-word; }
.email-link.compact { font-size: clamp(17px, 1.6vw, 21px); }
.link-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 10px; }
.link-list li { margin: 0; display: block; }
.link-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-solid); padding: 12px 14px; color: var(--text); font-weight: 860; }
.link-list a::after { content: "→"; color: var(--muted-soft); flex: 0 0 auto; }
.service-hero { position: relative; overflow: hidden; isolation: isolate; max-width: 820px; border: 1px solid var(--line); border-radius: 32px; background: var(--surface); box-shadow: var(--shadow); padding: 38px; }
.service-hero p:not(.eyebrow) { max-width: 680px; margin: 14px 0 0; color: var(--muted); font-size: 17px; }
.contact-cards { margin-top: 22px; }
.contact-card { border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow-soft); padding: 24px; }
.contact-card h2 { margin: 0 0 10px; font-size: 28px; line-height: 1.04; letter-spacing: -.055em; }
.doc { max-width: 840px; border: 1px solid var(--line); border-radius: 30px; background: var(--surface-solid); box-shadow: var(--shadow); padding: 40px; }
.doc .updated { margin: 0 0 26px; color: var(--muted-soft); font-weight: 780; }
.doc h2 { margin: 28px 0 10px; font-size: 23px; line-height: 1.16; letter-spacing: -.035em; }
.doc p + p { margin-top: 10px; }
.doc a { font-weight: 850; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.doc ol, .doc ul { margin: 10px 0 0; padding-left: 22px; color: var(--muted); }
.footer { margin-top: auto; padding: 26px 0 28px; color: var(--muted-soft); font-size: 13px; }
.footer-inner { border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-soft); padding: 18px 20px; display: grid; grid-template-columns: minmax(220px, 1fr) auto; align-items: center; gap: 18px; }
.footer p { margin: 0; line-height: 1.45; }
.footer p span { color: var(--muted); }
.footer-links { list-style: none; display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 10px 16px; margin: 0; padding: 0; }
.footer-links a { display: inline-flex; color: var(--muted); font-weight: 820; white-space: nowrap; }
.footer-links a:hover { color: var(--text); }
.redirect { min-height: 100vh; display: grid; place-items: center; padding: 24px; text-align: center; }
.redirect a { text-decoration: underline; font-weight: 900; }
@media (max-width: 900px) {
  .shell { width: min(var(--max), calc(100% - 28px)); }
  main { padding: 42px 0 54px; }
  .nav { min-height: 68px; flex-wrap: wrap; padding: 12px 0; }
  .nav-links { order: 3; width: 100%; justify-content: center; gap: 18px; }
  .hero, .two-column, .apps-grid, .grid-2 { grid-template-columns: 1fr; gap: 22px; }
  .hero { align-items: start; }
  .hero h1 { font-size: clamp(44px, 13vw, 72px); }
  .section { margin-top: 54px; }
  .section-head { display: block; }
  .section-head p { margin-top: 8px; }
  .product-hero { grid-template-columns: 1fr; padding: 26px; }
  .product-icon { width: 84px; height: 84px; }
  .feature-list { grid-template-columns: 1fr; }
  .service-hero, .doc, .card { padding: 26px; border-radius: 26px; }
  .footer-inner { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .nav-links { justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; }
  .hero-card, .app-card, .contact-card { padding: 22px; border-radius: 24px; }
  .email-link { font-size: 18px; }
  .link-list a { padding: 11px 12px; }
  .footer-inner { padding: 16px; }
}

/* MrPet product landing */
.mrpet-page .topbar {
  border-bottom-color: color-mix(in srgb, var(--line) 78%, transparent);
}
.mrpet-main {
  overflow: hidden;
  padding: 28px 0 82px;
}
.mrpet-hero {
  position: relative;
  isolation: isolate;
  min-height: 704px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 38px;
  background:
    radial-gradient(circle at 77% 46%, rgba(116,123,255,.18), transparent 26%),
    radial-gradient(circle at 96% 4%, rgba(10,132,255,.14), transparent 32%),
    linear-gradient(145deg, #15171d 0%, #0b0c10 58%, #08090c 100%);
  box-shadow: 0 36px 90px rgba(0,0,0,.36);
  color: #f7f8fb;
  padding: clamp(38px, 6vw, 72px);
}
.mrpet-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 2%, black 55%, black 100%);
}
.mrpet-hero::after {
  content: "";
  position: absolute;
  right: -11%;
  bottom: -24%;
  z-index: -1;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(140,145,255,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(140,145,255,.025), 0 0 0 144px rgba(140,145,255,.018);
}
.mrpet-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 630px;
}
.product-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: rgba(240,243,250,.66);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .01em;
}
.product-lockup .product-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  box-shadow: 0 16px 42px rgba(10,132,255,.24);
}
.mrpet-hero .eyebrow {
  margin-bottom: 14px;
  color: #9da1ff;
}
.mrpet-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(70px, 9.2vw, 116px);
  font-weight: 930;
  letter-spacing: -.086em;
  line-height: .82;
}
.mrpet-hero h1 span { color: #878cff; }
.mrpet-hero .lead {
  max-width: 610px;
  margin-top: 28px;
  color: #f5f6fa;
  font-size: clamp(26px, 3vw, 39px);
  line-height: 1.02;
  letter-spacing: -.052em;
  font-weight: 770;
}
.mrpet-hero .sublead {
  max-width: 600px;
  margin-top: 20px;
  color: rgba(230,234,242,.69);
  font-size: 17px;
  line-height: 1.58;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.primary-action, .secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.primary-action {
  background: #f5f7fb;
  color: #0b0c10;
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
}
.primary-action::after { content: "↓"; margin-left: 9px; color: #707684; }
.secondary-action {
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(255,255,255,.055);
  color: rgba(248,249,252,.84);
}
.primary-action:hover, .secondary-action:hover { transform: translateY(-2px); }
.secondary-action:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.09); }
.product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.product-facts span {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  padding: 7px 10px;
  color: rgba(225,229,238,.58);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: .025em;
}
.hero-device-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}
.hero-phone-float {
  position: relative;
  z-index: 2;
  transform: rotate(-4.5deg) rotateY(-7deg) translateY(4px);
  transform-style: preserve-3d;
  animation: mrpet-float 7s ease-in-out infinite;
}
.hero-phone-float::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -7%;
  left: -14%;
  z-index: -1;
  height: 24%;
  border-radius: 50%;
  background: rgba(0,0,0,.74);
  filter: blur(32px);
  transform: translateZ(-30px);
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(148,153,255,.22);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 430px; height: 430px; transform: rotateX(64deg) rotateZ(-17deg); }
.orbit-two { width: 330px; height: 330px; border-style: dashed; opacity: .42; transform: rotateX(68deg) rotateZ(19deg); }

.iphone-device {
  position: relative;
  flex: 0 0 auto;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 54px;
  background: linear-gradient(145deg, #c7cbd2 0%, #363941 17%, #050608 44%, #878b94 100%);
  box-shadow: 0 28px 58px rgba(0,0,0,.48), 0 0 0 1px rgba(0,0,0,.88);
  padding: 3px;
}
.iphone-device::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 47px;
  pointer-events: none;
}
.iphone-device::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -5px;
  z-index: -1;
  width: 4px;
  height: 14%;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(#666a72, #1c1e23 35%, #42454c);
  box-shadow: -1px 0 rgba(255,255,255,.16);
}
.iphone-device img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50px;
  background: #f5f5f8;
}
.iphone-hero { width: clamp(286px, 28vw, 342px); }

.mrpet-section { margin-top: 104px; }
.mrpet-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  align-items: end;
  gap: 36px;
  margin-bottom: 34px;
}
.mrpet-section-head h2, .showcase-head h2, .support-panel h2 {
  margin: 0;
  font-size: clamp(39px, 5vw, 64px);
  line-height: .96;
  letter-spacing: -.066em;
  font-weight: 910;
}
.mrpet-section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.mrpet-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.mrpet-feature-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 100%, color-mix(in srgb, var(--feature-accent, #797fff) 14%, transparent), transparent 38%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}
.feature-profile { --feature-accent: #7c83ff; }
.feature-records { --feature-accent: #0a84ff; }
.feature-reminders { --feature-accent: #29c3d2; }
.feature-ai { --feature-accent: #ff7f6f; }
.feature-copy {
  position: relative;
  z-index: 2;
  padding: 28px 28px 0;
}
.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 25px;
  border: 1px solid color-mix(in srgb, var(--feature-accent) 34%, var(--line));
  border-radius: 999px;
  color: var(--feature-accent);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
}
.feature-copy h3 {
  margin: 16px 0 8px;
  font-size: clamp(24px, 2.5vw, 31px);
  line-height: 1;
  letter-spacing: -.05em;
}
.feature-copy > p:not(.feature-disclaimer) {
  max-width: 465px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}
.feature-disclaimer {
  width: fit-content;
  margin: 12px 0 0;
  border-left: 2px solid var(--feature-accent);
  padding-left: 10px;
  color: var(--muted-soft);
  font-size: 11px;
  line-height: 1.4;
}
.feature-preview {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 292px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  background:
    radial-gradient(ellipse at center bottom, color-mix(in srgb, var(--feature-accent) 18%, transparent), transparent 58%),
    linear-gradient(to bottom, transparent, rgba(127,132,255,.035));
}
.feature-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, var(--surface) 0%, transparent 22%);
  pointer-events: none;
}
.iphone-feature {
  z-index: 2;
  width: 250px;
  border-radius: 42px;
  box-shadow: 0 20px 42px rgba(0,0,0,.38), 0 0 0 1px rgba(0,0,0,.86);
}
.iphone-feature::before { inset: 5px; border-radius: 38px; }
.iphone-feature img { border-radius: 39px; }

.interface-showcase {
  position: relative;
  margin-top: 108px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 50% 58%, rgba(116,123,255,.14), transparent 30%),
    linear-gradient(180deg, #0b0c10 0%, #06070a 100%);
  color: #f5f7fb;
  padding: 94px 0 88px;
}
.interface-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(153,157,255,.55), transparent);
}
.showcase-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.showcase-head .eyebrow { color: #969aff; }
.showcase-head h2 { color: #fff; }
.showcase-head > p:last-child {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(225,229,239,.66);
  font-size: 16px;
  line-height: 1.55;
}
.showcase-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.showcase-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 29px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  box-shadow: 0 22px 54px rgba(0,0,0,.24);
}
.showcase-device-wrap {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 30px;
}
.showcase-device-wrap::before {
  content: "";
  position: absolute;
  top: 19%;
  left: 50%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(136,141,255,.16);
  filter: blur(38px);
  transform: translateX(-50%);
}
.iphone-showcase {
  width: min(71%, 250px);
  border-radius: 44px;
  box-shadow: 0 24px 54px rgba(0,0,0,.58), 0 0 0 1px rgba(0,0,0,.92);
}
.iphone-showcase::before { inset: 6px; border-radius: 39px; }
.iphone-showcase img { border-radius: 41px; }
.showcase-caption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.075);
  padding: 22px;
}
.showcase-caption > span {
  color: #9297ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
}
.showcase-caption h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.showcase-caption p {
  margin: 7px 0 0;
  color: rgba(221,225,234,.58);
  font-size: 13px;
  line-height: 1.45;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
  margin-top: 104px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(30px, 5vw, 56px);
}
.support-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.support-panel .email-link { margin-top: 24px; }
.support-links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
}
.support-links a {
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-solid);
  padding: 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 880;
  transition: transform .18s ease, border-color .18s ease;
}
.support-links a:hover { transform: translateY(-2px); border-color: color-mix(in srgb, #7c83ff 48%, var(--line)); }
.support-links b { color: var(--muted-soft); font-size: 15px; }

@keyframes mrpet-float {
  0%, 100% { transform: rotate(-4.5deg) rotateY(-7deg) translateY(4px); }
  50% { transform: rotate(-3.7deg) rotateY(-5deg) translateY(-10px); }
}

@media (max-width: 980px) {
  .mrpet-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 0;
  }
  .mrpet-hero-copy { max-width: 720px; }
  .hero-device-stage { min-height: 610px; }
  .iphone-hero { width: min(325px, 72vw); }
  .mrpet-section-head { grid-template-columns: 1fr; gap: 14px; }
  .mrpet-section-head > p { max-width: 610px; }
  .showcase-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px 12px;
  }
  .showcase-track::-webkit-scrollbar { display: none; }
  .showcase-card { flex: 0 0 min(370px, 82vw); scroll-snap-align: center; }
  .support-panel { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .mrpet-main { padding-top: 16px; }
  .mrpet-hero { border-radius: 28px; padding: 28px 24px 0; }
  .product-lockup { margin-bottom: 24px; }
  .mrpet-hero h1 { font-size: clamp(68px, 21vw, 94px); }
  .mrpet-hero .lead { margin-top: 24px; }
  .hero-actions { align-items: stretch; }
  .primary-action, .secondary-action { flex: 1 1 190px; }
  .hero-device-stage { min-height: 560px; }
  .orbit-one { width: 360px; height: 360px; }
  .orbit-two { width: 270px; height: 270px; }
  .mrpet-section, .interface-showcase, .support-panel { margin-top: 76px; }
  .mrpet-feature-grid { grid-template-columns: 1fr; }
  .mrpet-feature-card { min-height: 500px; }
  .interface-showcase { padding: 72px 0 66px; }
  .showcase-head { margin-bottom: 38px; text-align: left; }
  .showcase-head > p:last-child { margin-left: 0; }
  .support-links { grid-template-columns: 1fr; }
  .support-links a { min-height: 66px; align-items: center; }
}

@media (max-width: 460px) {
  .mrpet-hero { padding-right: 20px; padding-left: 20px; }
  .product-lockup span { max-width: 155px; line-height: 1.25; }
  .product-facts { display: none; }
  .hero-device-stage { min-height: 525px; }
  .iphone-hero { width: min(274px, 80vw); }
  .feature-copy { padding: 24px 22px 0; }
  .iphone-feature { width: 226px; }
  .showcase-device-wrap { height: 490px; }
  .support-panel { padding: 26px 22px; border-radius: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-phone-float { animation: none; }
  .primary-action, .secondary-action, .support-links a, .brand-icon { transition: none; }
}
