:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --soft: #f5f5f7;
  --line: #dedee3;
  --coral: #ff7d86;
  --coral-deep: #f15f6c;
  --teal: #0f8d88;
  --blue: #146ef5;
  --green: #1f8a4c;
  --gold: #b7791f;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(29, 29, 31, 0.14);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(222, 222, 227, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 3px;
  padding: 8px;
  border-radius: 50%;
  background: #fff2f3;
  box-shadow: inset 0 0 0 1px rgba(241, 95, 108, 0.18);
}

.brand-mark span {
  width: 3px;
  border-radius: 999px;
  background: var(--coral);
  animation: meter 1.55s ease-in-out infinite;
  transform-origin: center;
}

.brand-mark span:nth-child(1) {
  height: 11px;
}

.brand-mark span:nth-child(2) {
  height: 18px;
  animation-delay: 0.12s;
}

.brand-mark span:nth-child(3) {
  height: 14px;
  animation-delay: 0.24s;
}

.brand-mark span:nth-child(4) {
  height: 9px;
  animation-delay: 0.36s;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: #46464d;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.hero-section {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(32px, 7vw, 88px);
  padding: clamp(48px, 8vw, 104px) clamp(20px, 6vw, 96px) 36px;
  background:
    linear-gradient(145deg, rgba(255, 242, 243, 0.86), rgba(255, 255, 255, 0.18) 48%),
    radial-gradient(circle at 84% 18%, rgba(20, 110, 245, 0.12), transparent 30%),
    linear-gradient(#ffffff, #f8f8fa);
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-deep);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.95;
  font-weight: 850;
}

.hero-lead {
  max-width: 680px;
  color: #3f3f46;
  font-size: clamp(1.18rem, 2vw, 1.58rem);
  line-height: 1.42;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.store-button {
  --mx: 0px;
  --my: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  min-width: 196px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 10px 36px rgba(29, 29, 31, 0.08);
  transform: translate(var(--mx), var(--my));
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 160ms ease;
}

.store-button:hover {
  border-color: rgba(241, 95, 108, 0.52);
  box-shadow: 0 16px 42px rgba(29, 29, 31, 0.16);
}

.store-button.primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.store-button small {
  display: block;
  margin-bottom: 2px;
  font-size: 0.72rem;
  line-height: 1;
  color: currentColor;
  opacity: 0.72;
}

.store-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: 0 0 24px;
  background: currentColor;
  animation: iconFloat 2.8s ease-in-out infinite;
}

.store-icon.apple {
  clip-path: path("M17.9 13.1c0-2.3 1.9-3.4 2-3.5-1.1-1.6-2.8-1.8-3.4-1.9-1.4-.1-2.8.8-3.5.8s-1.9-.8-3.1-.8c-1.6 0-3.1.9-3.9 2.4-1.7 2.9-.4 7.2 1.2 9.5.8 1.1 1.7 2.4 3 2.3 1.2-.1 1.7-.8 3.1-.8 1.5 0 1.9.8 3.2.8s2.2-1.2 3-2.3c.9-1.3 1.2-2.5 1.3-2.6-.1-.1-2.9-1.2-2.9-3.9z M15.6 6.2c.7-.8 1.1-1.9 1-3-.9 0-2 .6-2.7 1.4-.6.7-1.2 1.9-1 3 1 .1 2-.5 2.7-1.4z");
}

.store-icon.play {
  clip-path: polygon(13% 5%, 83% 50%, 13% 95%, 13% 5%, 38% 50%, 13% 95%, 13% 5%, 38% 50%, 83% 50%, 13% 5%);
  animation-delay: 0.2s;
}

.phone-stage {
  position: relative;
  justify-self: center;
  width: min(440px, 100%);
}

.phone-stage::before {
  content: none;
}

.app-phone {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 430 / 872;
  animation: phoneFloat 5.8s ease-in-out infinite;
}

.phone-shell {
  position: absolute;
  inset: 0;
  padding: 13px;
  border: 8px solid #0b0b0d;
  border-radius: 56px;
  background: #0b0b0d;
  overflow: hidden;
}

.phone-shell::before,
.phone-shell::after {
  content: "";
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: #242428;
}

.phone-shell::before {
  left: -7px;
  top: 26%;
  height: 76px;
}

.phone-shell::after {
  right: -7px;
  top: 34%;
  height: 112px;
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 43px;
  background:
    repeating-radial-gradient(ellipse at 12% 0%, rgba(255, 255, 255, 0.2) 0 2px, transparent 3px 54px),
    linear-gradient(168deg, #ff7d86 0%, #ff8790 52%, #fff 52.2%, #fff 100%);
}

.dynamic-island {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 50%;
  width: 118px;
  height: 37px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.status-row {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 42px;
  right: 38px;
  display: flex;
  justify-content: space-between;
  color: #111114;
  font-size: 0.95rem;
  font-weight: 850;
}

.status-icons {
  width: 66px;
  height: 18px;
  background:
    linear-gradient(#111114, #111114) 0 10px / 4px 6px no-repeat,
    linear-gradient(#111114, #111114) 7px 7px / 4px 9px no-repeat,
    linear-gradient(#111114, #111114) 14px 4px / 4px 12px no-repeat,
    radial-gradient(circle at 34px 14px, #111114 0 2px, transparent 2.4px),
    radial-gradient(circle at 34px 14px, transparent 0 5px, #111114 5.4px 7px, transparent 7.4px),
    radial-gradient(circle at 34px 14px, transparent 0 9px, #111114 9.4px 11px, transparent 11.4px),
    linear-gradient(#111114, #111114) 51px 4px / 16px 10px no-repeat,
    linear-gradient(#ff7d86, #ff7d86) 54px 6px / 10px 6px no-repeat,
    linear-gradient(#111114, #111114) 68px 7px / 3px 4px no-repeat;
  animation: iconFloat 2.6s ease-in-out infinite;
}

.screen-brand {
  position: absolute;
  z-index: 2;
  top: 96px;
  left: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #26262c;
}

.screen-mark {
  width: 52px;
  height: 52px;
  display: inline-grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 4px;
  padding: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
}

.screen-mark i {
  width: 4px;
  border-radius: 999px;
  background: var(--coral);
  animation: meter 1.35s ease-in-out infinite;
}

.screen-mark i:nth-child(1) {
  height: 11px;
}

.screen-mark i:nth-child(2) {
  height: 21px;
  animation-delay: 0.12s;
}

.screen-mark i:nth-child(3) {
  height: 15px;
  animation-delay: 0.24s;
}

.screen-mark i:nth-child(4) {
  height: 9px;
  animation-delay: 0.36s;
}

.screen-brand strong,
.screen-brand small {
  display: block;
}

.screen-brand strong {
  font-size: 1.62rem;
  line-height: 1;
  font-weight: 900;
}

.screen-brand small {
  margin-top: 5px;
  font-size: 0.88rem;
  font-weight: 750;
}

.record-card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  min-height: 55%;
  padding: 28px 24px 22px;
  border-radius: 34px;
  background: #fff;
}

.record-card::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 30px;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--coral);
}

.record-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 34px;
}

.record-top strong {
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f5f2f2;
  color: #2c2c32;
  font-size: 0.88rem;
  text-align: center;
}

.record-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.record-title h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.92;
}

.record-title span {
  color: #393940;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1rem;
  font-weight: 900;
}

.app-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 62px;
  margin: 22px 0 18px;
}

.app-wave span {
  width: 6px;
  height: 17px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8c96, #ffd3d6);
  animation: waveform 1s ease-in-out infinite;
}

.app-wave span:nth-child(2n) {
  animation-delay: 0.12s;
}

.app-wave span:nth-child(3n) {
  animation-delay: 0.24s;
}

.app-wave span:nth-child(4n) {
  animation-delay: 0.36s;
}

.transcript-panel {
  display: flex;
  align-items: flex-start;
  min-height: 132px;
  padding: 22px;
  border-radius: 24px;
  background: #f7f4f4;
}

.transcript-panel p {
  margin: 0;
  color: #34343a;
  font-size: clamp(0.9rem, 1.7vw, 1.1rem);
  font-weight: 800;
  line-height: 1.32;
}

.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.phone-actions span {
  display: grid;
  place-items: center;
  min-height: 50px;
  border-radius: 18px;
  background: #f7f4f4;
  color: #a4a0a4;
  font-weight: 900;
}

.phone-actions span:first-child {
  background: var(--coral);
  color: #fff;
}

.floating-note {
  position: absolute;
  z-index: 2;
  max-width: 210px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: bubbleDrift 4.8s ease-in-out infinite;
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  margin-bottom: 4px;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.32;
}

.note-one {
  top: 18%;
  right: -40px;
}

.note-two {
  left: -56px;
  bottom: 18%;
  animation-delay: 0.65s;
}

.intro-band {
  padding: clamp(52px, 7vw, 90px) clamp(20px, 8vw, 120px);
  background: var(--ink);
  color: var(--white);
}

.intro-band p {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(1.6rem, 4.6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid article {
  position: relative;
  min-height: 350px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature-grid article:hover {
  z-index: 1;
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(29, 29, 31, 0.12);
}

.feature-icon {
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: #fff1f2;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(241, 95, 108, 0.16);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  inset: 15px;
  background: var(--coral-deep);
  animation: iconPulse 2.6s ease-in-out infinite;
}

.feature-icon.price::before {
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #fff1f2;
}

.feature-icon.price::after {
  inset: 20px 26px;
  width: 5px;
  border-radius: 999px;
  background: var(--green);
}

.feature-icon.phone::before {
  inset: 10px 18px;
  border-radius: 8px;
}

.feature-icon.phone::after {
  inset: auto 25px 13px;
  height: 4px;
  border-radius: 999px;
  background: var(--white);
}

.feature-icon.tasks::before {
  inset: 13px 12px;
  clip-path: polygon(0 10%, 100% 10%, 100% 26%, 0 26%, 0 42%, 72% 42%, 72% 58%, 0 58%, 0 74%, 88% 74%, 88% 90%, 0 90%);
}

.feature-icon.tasks::after {
  inset: 11px 12px auto auto;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--teal);
}

.feature-icon.time::before {
  inset: 12px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--coral-deep);
  background: transparent;
}

.feature-icon.time::after {
  inset: 20px 27px 20px 27px;
  width: 4px;
  border-radius: 999px;
  transform-origin: bottom;
  animation: clockHand 3.6s linear infinite;
}

.feature-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--coral-deep);
  font-weight: 800;
}

.feature-grid h2 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1;
}

.feature-grid p,
.workflow p,
.audience-grid p,
.lifestyle-copy p {
  color: var(--muted);
  line-height: 1.55;
}

.lifestyle-section,
.workflow-section,
.audience-section,
.closing-cta {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 7vw, 104px);
}

.lifestyle-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(32px, 7vw, 90px);
  background: #fbfbfd;
}

.lifestyle-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
  line-height: 0.98;
}

.lifestyle-copy p:not(.eyebrow) {
  max-width: 600px;
  font-size: 1.12rem;
}

.lifestyle-visual {
  position: relative;
  min-height: 560px;
}

.lifestyle-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lifestyle-phone-frame {
  position: absolute;
  right: clamp(-18px, -2vw, -8px);
  bottom: -34px;
  width: min(250px, 42%);
  animation: phoneFloat 5.2s ease-in-out infinite;
}

.compact-phone .phone-shell {
  padding: 8px;
  border-width: 5px;
  border-radius: 36px;
}

.compact-phone .phone-screen {
  border-radius: 29px;
}

.compact-phone .dynamic-island {
  top: 12px;
  width: 62px;
  height: 20px;
}

.compact-phone .screen-brand {
  top: 54px;
  left: 20px;
  gap: 7px;
}

.compact-phone .screen-mark {
  width: 30px;
  height: 30px;
  gap: 2px;
  padding: 8px;
}

.compact-phone .screen-mark i {
  width: 2px;
}

.compact-phone .screen-brand strong {
  font-size: 0.9rem;
}

.compact-phone .screen-brand small {
  margin-top: 2px;
  font-size: 0.48rem;
}

.compact-phone .record-card {
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 55%;
  padding: 18px 12px 12px;
  border-radius: 22px;
}

.compact-phone .record-card::before {
  top: 19px;
  left: 18px;
  width: 28px;
  height: 3px;
}

.compact-phone .record-title h3 {
  font-size: 1.15rem;
}

.compact-phone .record-title span {
  font-size: 0.55rem;
}

.compact-phone .app-wave {
  height: 30px;
  gap: 3px;
  margin: 8px 0;
}

.compact-phone .app-wave span {
  width: 3px;
}

.compact-phone .transcript-panel {
  min-height: 74px;
  padding: 12px;
  border-radius: 15px;
}

.compact-phone .transcript-panel p {
  font-size: 0.48rem;
}

.live-pill {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 56px);
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(29, 29, 31, 0.18);
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.live-pill span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--coral-deep);
  box-shadow: 0 0 0 0 rgba(241, 95, 108, 0.5);
  animation: livePulse 1.7s ease-out infinite;
}

.workflow-section {
  background: var(--white);
}

.section-heading {
  max-width: 840px;
  margin-bottom: clamp(32px, 6vw, 64px);
}

.section-heading h2,
.closing-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5.8vw, 5.8rem);
  line-height: 0.98;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.workflow > div,
.audience-grid article {
  min-height: 230px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.workflow > div:hover,
.audience-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 95, 108, 0.32);
  box-shadow: 0 18px 44px rgba(29, 29, 31, 0.1);
}

.workflow-dot {
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 54px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 24px 0 0 var(--teal), 48px 0 0 var(--blue);
  animation: dotsTravel 2.4s ease-in-out infinite;
}

.workflow h3,
.audience-grid h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.audience-grid article:nth-child(1) {
  border-top: 5px solid var(--coral);
}

.audience-grid article:nth-child(2) {
  border-top: 5px solid var(--teal);
}

.audience-grid article:nth-child(3) {
  border-top: 5px solid var(--green);
}

.audience-icon {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
  border-radius: 16px;
  background: #f4fbfb;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(15, 141, 136, 0.16);
  animation: iconFloat 2.9s ease-in-out infinite;
}

.audience-icon::before,
.audience-icon::after {
  content: "";
  position: absolute;
  background: var(--teal);
  animation: iconPulse 2.4s ease-in-out infinite;
}

.audience-icon.meeting::before {
  left: 12px;
  top: 16px;
  width: 28px;
  height: 18px;
  border-radius: 4px;
  box-shadow: inset 0 -5px 0 rgba(255, 255, 255, 0.74);
}

.audience-icon.meeting::after {
  left: 18px;
  bottom: 11px;
  width: 16px;
  height: 5px;
  border-radius: 999px;
}

.audience-icon.class::before {
  left: 11px;
  top: 13px;
  width: 30px;
  height: 22px;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 58% 74%, 50% 100%, 42% 74%, 0 74%);
}

.audience-icon.class::after {
  left: 15px;
  top: 18px;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 7px 0 var(--white);
}

.audience-icon.business::before {
  left: 13px;
  bottom: 12px;
  width: 26px;
  height: 22px;
  border-radius: 5px;
  background: var(--green);
}

.audience-icon.business::after {
  left: 19px;
  top: 12px;
  width: 14px;
  height: 8px;
  border: 3px solid var(--green);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: transparent;
}

.closing-cta {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.98)),
    linear-gradient(120deg, rgba(255, 125, 134, 0.3), rgba(15, 141, 136, 0.16), rgba(20, 110, 245, 0.14));
}

.closing-cta .download-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes meter {
  0%,
  100% {
    transform: scaleY(0.72);
  }
  50% {
    transform: scaleY(1.14);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.35deg);
  }
}

@keyframes bubbleDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes clockHand {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dotsTravel {
  0%,
  100% {
    box-shadow: 24px 0 0 var(--teal), 48px 0 0 var(--blue);
  }
  50% {
    box-shadow: 18px 0 0 var(--blue), 54px 0 0 var(--green);
  }
}

@keyframes livePulse {
  100% {
    box-shadow: 0 0 0 14px rgba(241, 95, 108, 0);
  }
}

@keyframes waveform {
  0%,
  100% {
    height: 10px;
    opacity: 0.72;
  }
  50% {
    height: 28px;
    opacity: 1;
  }
}

@media (max-width: 1050px) {
  .hero-section,
  .lifestyle-section {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .phone-stage {
    width: min(390px, 86vw);
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lifestyle-visual {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .main-nav {
    gap: 13px;
    font-size: 0.84rem;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 14vw, 3.9rem);
    line-height: 0.98;
  }

  .hero-section {
    gap: 14px;
    min-height: auto;
    padding-top: 40px;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .store-button {
    flex: 1 1 100%;
    width: 100%;
    min-height: 58px;
    min-width: 0;
  }

  .phone-stage {
    margin-top: -18px;
  }

  .floating-note {
    position: relative;
    inset: auto;
    margin: -18px auto 0;
  }

  .note-two {
    display: none;
  }

  .feature-grid,
  .workflow,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 280px;
  }

  .feature-number,
  .workflow-dot {
    margin-bottom: 34px;
  }

  .lifestyle-section {
    gap: 28px;
  }

  .lifestyle-visual {
    min-height: 420px;
  }

  .lifestyle-photo {
    height: 420px;
  }

  .lifestyle-phone-frame {
    right: 10px;
    bottom: -22px;
    width: min(170px, 48%);
  }

  .live-pill {
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    font-size: 0.9rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
