:root {
  color-scheme: light;
  --canvas: #f7f4ed;
  --canvas-deep: #f1eee5;
  --paper: #fffdf8;
  --ink: #20211f;
  --muted: #6d6c67;
  --muted-strong: #4c4c48;
  --line: rgba(32, 33, 31, 0.11);
  --violet: #6156c8;
  --violet-dark: #4b42a7;
  --violet-pale: #ebe8fb;
  --sage: #3d5942;
  --sage-pale: #e4ebe1;
  --coral: #f36d55;
  --coral-pale: #fde8e1;
  --shadow-soft: 0 18px 60px rgba(45, 42, 35, 0.08);
  --shadow-card: 0 14px 38px rgba(50, 48, 42, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0) 45%),
    var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-color: var(--violet);
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(97, 86, 200, 0.48);
  outline-offset: 4px;
  border-radius: 6px;
}

.site-header,
.site-footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.product-story,
.faq-section {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.product-story {
  padding: clamp(108px, 12vw, 170px) 0 clamp(110px, 12vw, 164px);
  border-top: 1px solid var(--line);
}

.section-intro {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.section-intro .eyebrow,
.faq-intro .eyebrow {
  margin-bottom: 28px;
}

.section-intro h2,
.faq-intro h2 {
  margin: 0;
  font-size: clamp(46px, 6.5vw, 78px);
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.section-intro h2 span {
  color: var(--violet);
}

.section-intro > p:last-child,
.faq-intro > p:last-child {
  max-width: 650px;
  margin: 28px auto 0;
  color: var(--muted-strong);
  font-size: 19px;
  line-height: 1.65;
  letter-spacing: -0.015em;
}

.journey-grid {
  margin-top: clamp(68px, 8vw, 100px);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 25px 26px 26px 0;
  border-top: 1px solid var(--line);
}

.journey-steps li:not(:last-child)::after {
  position: absolute;
  top: -3px;
  right: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}

.step-number {
  color: var(--violet-dark);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.journey-steps h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.022em;
}

.journey-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.phone-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 3vw, 36px);
  margin-top: 58px;
  padding: clamp(36px, 5vw, 66px);
  overflow: hidden;
  border: 1px solid rgba(32, 33, 31, 0.07);
  border-radius: 48px;
  background:
    radial-gradient(circle at 22% 12%, rgba(253, 232, 225, 0.76), transparent 31%),
    radial-gradient(circle at 76% 18%, rgba(235, 232, 251, 0.88), transparent 37%),
    radial-gradient(circle at 53% 100%, rgba(228, 235, 225, 0.88), transparent 38%),
    rgba(255, 253, 248, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.phone-gallery::before {
  position: absolute;
  inset: 12% 8%;
  border: 1px dashed rgba(97, 86, 200, 0.12);
  border-radius: 50%;
  content: "";
}

.phone {
  position: relative;
  z-index: 1;
  margin: 0;
}

.phone-share {
  transform: rotate(-2deg) translateY(18px);
}

.phone-find {
  transform: rotate(2deg) translateY(18px);
}

.phone-screen {
  position: relative;
  aspect-ratio: 0.505;
  overflow: hidden;
  border: 7px solid #222321;
  border-radius: clamp(30px, 3.5vw, 45px);
  background: #fbfaf6;
  box-shadow: 0 28px 60px rgba(43, 40, 35, 0.19), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.phone-screen::before {
  position: absolute;
  z-index: 8;
  top: 8px;
  left: 50%;
  width: 29%;
  height: 17px;
  border-radius: 999px;
  background: #20211f;
  content: "";
  transform: translateX(-50%);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 43px;
  padding: 10px 20px 0;
  font-size: 9px;
  font-weight: 720;
}

.social-demo-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
}

.demo-avatar {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 2px solid var(--coral);
  border-radius: 50%;
  background: linear-gradient(145deg, #eee5dc 48%, #6a806b 49%);
}

.social-demo-head strong,
.social-demo-head small {
  display: block;
}

.social-demo-head strong {
  font-size: 10px;
}

.social-demo-head small {
  color: var(--muted);
  font-size: 8px;
}

.demo-more {
  margin-left: auto;
  font-size: 12px;
}

.demo-post {
  position: relative;
  height: 43%;
  overflow: hidden;
  background: linear-gradient(#f6cba8, #e88972 57%, #655e70 58%, #464858);
}

.demo-sun {
  position: absolute;
  top: 16%;
  right: 18%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 242, 205, 0.9);
  box-shadow: 0 0 30px rgba(255, 233, 181, 0.7);
}

.demo-mountain {
  position: absolute;
  bottom: 28%;
  width: 0;
  height: 0;
  border-right: 70px solid transparent;
  border-bottom: 90px solid #6e7182;
  border-left: 70px solid transparent;
}

.mountain-one {
  left: -28px;
}

.mountain-two {
  right: -42px;
  border-right-width: 90px;
  border-bottom-color: #565b6d;
  border-left-width: 90px;
}

.demo-torii {
  position: absolute;
  bottom: 8%;
  left: 50%;
  width: 74px;
  height: 70px;
  border-right: 10px solid #b84637;
  border-left: 10px solid #b84637;
  transform: translateX(-50%);
}

.demo-torii::before,
.demo-torii::after {
  position: absolute;
  left: 50%;
  height: 8px;
  border-radius: 2px;
  background: #b84637;
  content: "";
  transform: translateX(-50%);
}

.demo-torii::before {
  top: -5px;
  width: 100px;
}

.demo-torii::after {
  top: 10px;
  width: 82px;
}

.demo-actions {
  display: flex;
  gap: 14px;
  padding: 12px 15px;
  font-size: 19px;
}

.demo-actions span:last-child {
  margin-left: auto;
}

.share-sheet {
  position: absolute;
  z-index: 5;
  right: 7px;
  bottom: 7px;
  left: 7px;
  padding: 8px 14px 17px;
  border: 1px solid rgba(32, 33, 31, 0.08);
  border-radius: 22px 22px 28px 28px;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 -12px 36px rgba(45, 42, 35, 0.14);
}

.share-handle {
  display: block;
  width: 34px;
  height: 4px;
  margin: 0 auto 6px;
  border-radius: 999px;
  background: #d8d6d0;
}

.share-sheet > p {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
}

.share-destination {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px;
  border-radius: 14px;
  background: var(--canvas);
}

.share-destination img {
  border-radius: 12px;
}

.share-destination strong,
.share-destination small {
  display: block;
}

.share-destination strong {
  font-size: 11px;
}

.share-destination small {
  color: var(--muted);
  font-size: 8px;
}

.share-arrow {
  margin-left: auto;
  color: var(--muted);
  font-size: 22px;
}

.matarly-screen {
  padding: 0 12px 18px;
  background: var(--canvas);
}

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 3px 15px;
}

.app-head small,
.app-head strong {
  display: block;
}

.app-head small {
  color: var(--muted);
  font-size: 8px;
}

.app-head strong {
  margin-top: 1px;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.app-head img {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(45, 42, 35, 0.09);
}

.app-search {
  display: flex;
  min-height: 41px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(32, 33, 31, 0.08);
  border-radius: 13px;
  color: var(--muted);
  background: var(--paper);
  box-shadow: 0 5px 16px rgba(45, 42, 35, 0.05);
  font-size: 8px;
}

.app-search span:first-child {
  color: var(--violet);
  font-size: 16px;
}

.filter-row {
  display: flex;
  gap: 7px;
  margin: 12px 0;
}

.filter-row span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.72);
  font-size: 7px;
  font-weight: 680;
}

.filter-row .active {
  color: #fff;
  background: var(--violet);
}

.save-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.save-tile {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.save-tile span {
  margin-bottom: auto;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.save-tile strong {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.save-tile small {
  margin-top: 5px;
  font-size: 7px;
  opacity: 0.68;
}

.tile-violet {
  color: #3d357f;
  background: linear-gradient(145deg, #d5d0f5, #f0edfd);
}

.tile-coral {
  color: #8c3d30;
  background: linear-gradient(145deg, #f7c6b8, #fdebe4);
}

.tile-sage {
  color: #2f4934;
  background: linear-gradient(145deg, #c7d5c4, #e8eee5);
}

.tile-gold {
  color: #6c5428;
  background: linear-gradient(145deg, #ead5a1, #f8eed6);
}

.search-page-head {
  position: relative;
  padding: 12px 0 15px;
  text-align: center;
  font-size: 12px;
}

.back-arrow {
  position: absolute;
  left: 3px;
  top: 5px;
  color: var(--muted);
  font-size: 28px;
}

.search-filled {
  color: var(--ink);
}

.search-filled strong {
  font-size: 8px;
}

.result-count {
  margin: 16px 2px 9px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 650;
}

.result-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  padding: 8px;
  border: 1px solid rgba(32, 33, 31, 0.07);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 6px 16px rgba(45, 42, 35, 0.05);
}

.result-card strong,
.result-card small {
  display: block;
}

.result-card strong {
  margin-top: 5px;
  font-size: 10px;
}

.result-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 7px;
}

.result-art {
  position: relative;
  height: 72px;
  overflow: hidden;
  border-radius: 10px;
}

.result-art::before,
.result-art::after,
.result-art span {
  position: absolute;
  content: "";
}

.result-art-one {
  background: linear-gradient(#eab489 45%, #5a584f 46%);
}

.result-art-one::before {
  inset: 20px 9px 0;
  border-top: 6px solid #80453a;
  border-right: 4px solid #383a35;
  border-left: 4px solid #383a35;
}

.result-art-one::after {
  top: 10px;
  left: 50%;
  width: 12px;
  height: 15px;
  border-radius: 50%;
  background: #f5d38d;
  box-shadow: -20px 5px 0 #f5d38d, 20px 5px 0 #f5d38d;
}

.result-art-two {
  background: linear-gradient(145deg, #213c3a, #9a5841);
}

.result-art-two::before {
  right: 10px;
  bottom: 9px;
  left: 10px;
  height: 21px;
  border: 3px solid #e4d0aa;
  border-radius: 50%;
}

.result-art-three {
  background: linear-gradient(145deg, #c6d2bf, #eee0c8);
}

.result-art-three::before {
  right: 8px;
  bottom: 0;
  left: 8px;
  height: 45px;
  border-radius: 28px 28px 0 0;
  background: #f8f1e2;
}

.source-pill {
  display: inline-flex;
  padding: 3px 6px;
  border-radius: 999px;
  color: var(--violet-dark);
  background: var(--violet-pale);
  font-size: 6px;
  font-weight: 730;
}

.source-tiktok {
  color: #8c3d30;
  background: var(--coral-pale);
}

.source-web {
  color: var(--sage);
  background: var(--sage-pale);
}

.phone-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 670;
}

.phone-label span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--violet-dark);
  background: var(--violet-pale);
  font-size: 9px;
}

.concept-note {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.source-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 70px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 670;
}

.source-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #bbb7ad;
}

.source-strip a {
  text-decoration-color: rgba(97, 86, 200, 0.38);
}

.platform-note {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(60px, 9vw, 120px);
  padding: clamp(110px, 12vw, 170px) 0;
  border-top: 1px solid var(--line);
}

.faq-intro {
  position: sticky;
  top: 70px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(42px, 4.6vw, 62px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--violet-dark);
  background: var(--violet-pale);
  font-size: 20px;
  font-weight: 430;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.faq-list details[open] summary span {
  color: #fff;
  background: var(--violet);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 600px;
  margin: -4px 0 30px;
  padding: 0 56px 0 4px;
  color: var(--muted-strong);
  line-height: 1.75;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(45, 42, 35, 0.08);
}

.header-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  width: min(calc(100% - 48px), var(--max-width));
  min-height: calc(100svh - 190px);
  margin-inline: auto;
  padding: clamp(54px, 7vw, 92px) 0 clamp(70px, 8vw, 108px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 6px;
  animation: rise-in 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  color: var(--violet-dark);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px var(--coral-pale);
}

h1,
h2,
p {
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(52px, 6.2vw, 88px);
  font-weight: 730;
  line-height: 0.98;
  letter-spacing: -0.067em;
}

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

.hero-description {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--muted-strong);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--violet);
  box-shadow: 0 10px 22px rgba(84, 73, 178, 0.23);
}

.button-primary:hover {
  background: var(--violet-dark);
  box-shadow: 0 14px 26px rgba(84, 73, 178, 0.27);
}

.button-primary img {
  filter: brightness(0) invert(1);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 8px 24px rgba(50, 48, 42, 0.05);
}

.button-secondary:hover {
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(50, 48, 42, 0.09);
}

.organizer {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(32, 33, 31, 0.07);
  border-radius: 48% 42% 44% 40% / 42% 48% 40% 46%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0.22) 57%, rgba(255, 255, 255, 0) 76%),
    linear-gradient(145deg, rgba(235, 232, 251, 0.82), rgba(228, 235, 225, 0.64) 50%, rgba(253, 232, 225, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: soften-in 800ms 100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.organizer::before {
  position: absolute;
  inset: 15%;
  border: 1px dashed rgba(97, 86, 200, 0.17);
  border-radius: 50%;
  content: "";
}

.organizer-glow {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.88);
  filter: blur(4px);
  transform: translate(-50%, -50%);
}

.saved-card {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 230px;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(32, 33, 31, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.saved-card strong,
.saved-card small {
  display: block;
}

.saved-card strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.018em;
}

.saved-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.card-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.card-icon-coral {
  color: #b94c39;
  background: var(--coral-pale);
}

.card-icon-violet {
  color: var(--violet-dark);
  background: var(--violet-pale);
}

.card-icon-sage {
  color: var(--sage);
  background: var(--sage-pale);
}

.card-left {
  top: 16%;
  left: 3%;
  transform: rotate(-4deg);
  animation: float-left 7s ease-in-out infinite;
}

.card-right {
  top: 22%;
  right: 1%;
  transform: rotate(4deg);
  animation: float-right 7.5s 300ms ease-in-out infinite;
}

.card-bottom {
  right: 15%;
  bottom: 13%;
  transform: rotate(-2deg);
  animation: float-bottom 8s 600ms ease-in-out infinite;
}

.search-orbit {
  position: absolute;
  z-index: 4;
  top: 45%;
  left: 50%;
  display: flex;
  width: min(86%, 420px);
  min-height: 66px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(97, 86, 200, 0.2);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 24px 70px rgba(71, 64, 132, 0.2);
  transform: translate(-50%, -50%);
}

.search-mark {
  color: var(--violet);
}

.search-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-text {
  flex: 1;
  color: #353533;
  font-size: 15px;
  letter-spacing: -0.012em;
}

.search-key {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--violet);
  font-size: 17px;
}

.tag-cloud {
  position: absolute;
  inset: 0;
}

.tag {
  position: absolute;
  display: inline-flex;
  min-height: 33px;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(32, 33, 31, 0.07);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 8px 20px rgba(50, 48, 42, 0.07);
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 650;
}

.tag-travel {
  top: 8%;
  right: 21%;
}

.tag-workouts {
  bottom: 25%;
  left: 1%;
}

.tag-buy {
  right: 2%;
  bottom: 35%;
}

.site-footer {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-signoff,
.footer-nav {
  display: flex;
  align-items: center;
}

.footer-signoff {
  flex-wrap: wrap;
  gap: 11px;
}

.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #aaa7a0;
}

.footer-nav {
  gap: 22px;
}

.footer-nav a {
  color: var(--muted-strong);
  font-weight: 580;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--violet-dark);
}

.content-shell {
  width: min(calc(100% - 48px), 900px);
  min-height: calc(100svh - 190px);
  margin-inline: auto;
  padding: clamp(72px, 10vw, 128px) 0 clamp(86px, 11vw, 140px);
}

.legal-document {
  width: min(100%, 760px);
  margin-inline: auto;
}

.page-intro {
  padding-bottom: clamp(44px, 6vw, 68px);
  border-bottom: 1px solid var(--line);
}

.page-intro .eyebrow {
  margin-bottom: 26px;
}

.page-intro h1,
.support-card h1,
.not-found-card h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 74px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.06em;
}

.effective-date {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

.lede {
  max-width: 700px;
  margin: 34px 0 0;
  color: var(--muted-strong);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.legal-document > section:not(.contact-panel) {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.legal-document section h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.022em;
}

.legal-document section p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.75;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 64px;
  padding: 32px;
  border: 1px solid rgba(97, 86, 200, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(235, 232, 251, 0.72), rgba(255, 253, 248, 0.84));
  box-shadow: var(--shadow-soft);
}

.contact-panel h2 {
  margin: 3px 0 5px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.contact-panel p {
  margin: 0;
  color: var(--muted-strong);
}

.contact-label {
  color: var(--violet-dark) !important;
  font-size: 11px;
  font-weight: 730;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel .button {
  flex: 0 0 auto;
}

.support-page .content-shell,
.not-found-page .content-shell {
  display: grid;
  place-items: center;
}

.support-card,
.not-found-card {
  position: relative;
  width: min(100%, 700px);
  overflow: hidden;
  padding: clamp(40px, 7vw, 72px);
  border: 1px solid rgba(32, 33, 31, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0, rgba(235, 232, 251, 0.9), rgba(235, 232, 251, 0) 45%),
    var(--paper);
  box-shadow: var(--shadow-soft);
}

.support-card::after,
.not-found-card::after {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 200px;
  height: 200px;
  border: 1px dashed rgba(97, 86, 200, 0.18);
  border-radius: 50%;
  content: "";
}

.support-mark {
  position: absolute;
  top: 34px;
  right: 42px;
  width: 72px;
  height: 72px;
  opacity: 0.12;
  transform: rotate(7deg);
}

.support-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support-card h1 {
  max-width: 520px;
}

.support-card > p:not(.eyebrow) {
  max-width: 565px;
  margin: 14px 0 0;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.65;
}

.support-card .support-status {
  margin-top: 30px !important;
  color: var(--ink) !important;
  font-size: 22px !important;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.support-button {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}

.support-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.support-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 13px;
}

.support-links a {
  color: var(--muted-strong);
  font-weight: 620;
  text-decoration: none;
}

.not-found-card {
  text-align: center;
}

.not-found-card .error-code {
  margin: 0 0 12px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.18em;
}

.not-found-card h1 {
  font-size: clamp(42px, 7vw, 64px);
}

.not-found-card > p:not(.error-code) {
  margin: 24px 0 30px;
  color: var(--muted-strong);
  font-size: 18px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soften-in {
  from {
    opacity: 0;
    transform: scale(0.975);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float-left {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-9px) rotate(-2deg);
  }
}

@keyframes float-right {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }
  50% {
    transform: translateY(8px) rotate(2deg);
  }
}

@keyframes float-bottom {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 62px;
  }

  .hero-copy {
    max-width: 760px;
    padding-left: 0;
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .social-actions {
    justify-content: center;
  }

  .organizer {
    width: min(100%, 640px);
    min-height: 540px;
    margin-inline: auto;
  }

  .journey-steps {
    grid-template-columns: 1fr 1fr;
  }

  .journey-steps li:nth-child(2)::after {
    display: none;
  }

  .phone-gallery {
    grid-template-columns: repeat(3, 280px);
    justify-content: start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .phone {
    scroll-snap-align: center;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer,
  .hero,
  .content-shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .product-story,
  .faq-section {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .product-story {
    padding: 92px 0 98px;
  }

  .section-intro {
    text-align: left;
  }

  .section-intro h2,
  .faq-intro h2 {
    font-size: clamp(42px, 12.6vw, 58px);
  }

  .section-intro > p:last-child,
  .faq-intro > p:last-child {
    margin-top: 23px;
    font-size: 17px;
  }

  .journey-grid {
    margin-top: 54px;
  }

  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-steps li {
    grid-template-columns: 38px 1fr;
    padding: 24px 0;
  }

  .journey-steps li::after {
    display: none;
  }

  .journey-steps h3 {
    font-size: 17px;
  }

  .journey-steps p {
    padding-right: 4px;
    font-size: 14px;
  }

  .phone-gallery {
    width: calc(100% + 32px);
    grid-template-columns: repeat(3, min(78vw, 300px));
    gap: 18px;
    margin-left: -16px;
    padding: 38px 22px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    scrollbar-width: none;
  }

  .phone-gallery::-webkit-scrollbar {
    display: none;
  }

  .phone-share,
  .phone-find {
    transform: none;
  }

  .phone-screen {
    border-width: 6px;
    border-radius: 38px;
  }

  .concept-note {
    max-width: 300px;
    margin-top: 20px;
    line-height: 1.55;
  }

  .source-strip {
    gap: 12px;
    margin-top: 54px;
    font-size: 12px;
  }

  .platform-note {
    max-width: 310px;
    line-height: 1.55;
  }

  .faq-section {
    gap: 52px;
    padding: 92px 0 106px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 16px;
  }

  .faq-list details > p {
    padding-right: 20px;
    font-size: 15px;
  }

  .site-header {
    min-height: 78px;
  }

  .brand {
    gap: 9px;
    font-size: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-status {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero {
    gap: 48px;
    padding: 48px 0 72px;
  }

  .hero h1 {
    font-size: clamp(45px, 13.3vw, 66px);
    letter-spacing: -0.062em;
  }

  .hero-description {
    margin-top: 24px;
    font-size: 17px;
  }

  .social-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    margin: 32px auto 0;
  }

  .button {
    min-height: 54px;
  }

  .organizer {
    min-height: 430px;
    border-radius: 42% 39% 42% 38% / 38% 44% 38% 43%;
  }

  .saved-card {
    width: 190px;
    gap: 10px;
    padding: 11px;
  }

  .saved-card strong {
    font-size: 12px;
  }

  .card-icon {
    width: 37px;
    height: 37px;
  }

  .card-icon svg {
    width: 17px;
    height: 17px;
  }

  .card-left {
    top: 13%;
    left: -2%;
  }

  .card-right {
    top: 24%;
    right: -3%;
  }

  .card-bottom {
    right: 8%;
    bottom: 11%;
  }

  .search-orbit {
    width: 94%;
    min-height: 60px;
    padding-left: 14px;
  }

  .search-text {
    font-size: 13px;
  }

  .tag {
    display: none;
  }

  .site-footer {
    min-height: 150px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 26px 0;
  }

  .footer-signoff {
    display: grid;
    gap: 3px;
  }

  .footer-dot {
    display: none;
  }

  .footer-nav {
    width: 100%;
    justify-content: space-between;
  }

  .content-shell {
    padding: 74px 0 92px;
  }

  .page-intro {
    padding-bottom: 42px;
  }

  .page-intro h1,
  .support-card h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .lede {
    margin-top: 28px;
    font-size: 18px;
  }

  .legal-document > section:not(.contact-panel) {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 46px;
    padding: 26px;
  }

  .contact-panel .button {
    width: 100%;
  }

  .support-card,
  .not-found-card {
    padding: 38px 26px;
    border-radius: 26px;
  }

  .support-mark {
    top: 25px;
    right: 24px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 380px) {
  .header-status {
    display: none;
  }

  .organizer {
    min-height: 395px;
  }

  .saved-card {
    width: 174px;
  }

  .card-left {
    left: -5%;
  }

  .card-right {
    right: -5%;
  }

  .search-key {
    display: none;
  }
}

@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;
  }
}
