@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('./fonts/Figtree-400.ttf?v=figtree-2') format('truetype');
}

@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url('./fonts/Figtree-500.ttf?v=figtree-2') format('truetype');
}

@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url('./fonts/Figtree-600.ttf?v=figtree-2') format('truetype');
}

@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url('./fonts/Figtree-700.ttf?v=figtree-2') format('truetype');
}

@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 800;
  font-display: block;
  src: url('./fonts/Figtree-800.ttf?v=figtree-2') format('truetype');
}

@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('./fonts/Figtree-900.ttf?v=figtree-2') format('truetype');
}

:root {
  color-scheme: dark;
  --bg: #0c0c0c;
  --cyan: #00d2ff;
  --ice: #a4f4fd;
  --blue: #0b2551;
  --line: rgba(255, 255, 255, 0.1);
  --muted: rgba(255, 255, 255, 0.6);
  --container: 100%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: #fff;
  font-family: 'Figtree', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html,
body,
.site-shell,
.site-shell * {
  font-family: 'Figtree', sans-serif !important;
}

body,
button,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

p,
h1,
h2,
figure,
blockquote,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

::selection {
  background: rgba(61, 129, 227, 0.3);
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: #0c0c0c;
  color: #fff;
}

main,
.site-nav {
  position: relative;
  z-index: 2;
}

.container {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: clamp(1rem, 2vw, 2.5rem);
}

.background-video {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background: #0c0c0c;
}

.background-video__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
  filter: saturate(0.75) contrast(1.08);
}

.background-video__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(7, 44, 81, 0.2), transparent 33rem),
    linear-gradient(180deg, rgba(12, 12, 12, 0.46), rgba(12, 12, 12, 0.78) 45%, rgba(12, 12, 12, 0.98) 98%);
}

.guide-line {
  display: none;
}

.filter-defs,
.pricing-filter-defs,
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-sprite {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

svg use {
  pointer-events: none;
}

/* shared motion */

.reveal {
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal--nav {
  animation-duration: 0.6s;
  animation-delay: 0s;
}

.reveal--hero-title {
  animation-delay: 0.3s;
}

.reveal--hero-copy {
  animation-delay: 0.5s;
}

.reveal--hero-actions {
  animation-delay: 0.7s;
}

.reveal--macbar {
  animation-delay: 0.9s;
}

.reveal--inbox {
  animation-delay: 1.1s;
  animation-name: fade-up-large;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(-0.625rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up-large {
  from {
    opacity: 0;
    transform: translateY(2.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shiny {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* navigation */

.site-nav {
  padding-top: 1.35rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.5rem;
}

.legal-wordmark,
.site-footer__brand {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.legal-home-link,
.site-footer__links a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.legal-home-link:hover,
.site-footer__links a:hover {
  color: #fff;
}

.brand-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo img {
  display: block;
  width: clamp(3.2rem, 4vw, 4.3rem);
  height: auto;
  mix-blend-mode: screen;
}

.logo-mark {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  color: #fff;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo-mark:hover {
  opacity: 0.7;
  transform: rotate(8deg);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}

.desktop-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2.5rem;
}

.desktop-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
  animation: nav-link-in 0.6s ease-out var(--delay) both;
}

.desktop-links a:hover {
  color: #fff;
}

@keyframes nav-link-in {
  from {
    opacity: 0;
    transform: translateY(-0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.apple-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.apple-button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.apple-button:active {
  transform: scale(0.98);
}

.app-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.app-download-button:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.app-download-button:active {
  transform: scale(0.98);
}

.button-chevron {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
  transition: transform 0.2s ease;
}

.apple-button:hover .button-chevron,
.sales-button:hover svg {
  transform: translateX(1px);
}

.apple-button--large {
  min-height: 3rem;
  padding: 0.82rem 1.3rem;
}

.app-download-button--large {
  min-height: 3rem;
  padding: 0.82rem 1.3rem;
}

.app-download-button__icon {
  width: 0.9rem;
  height: 1.1rem;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}

.menu-button svg {
  width: 1.05rem;
  height: 1.05rem;
}

.mobile-menu {
  display: none;
}

/* hero */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
  text-align: center;
}

.hero--first-section {
  min-height: 100svh;
  justify-content: flex-start;
  padding-top: 7rem;
}

.hero-product-preview {
  width: 100%;
  margin-top: clamp(2.5rem, 6vh, 5rem);
}

.hero-title {
  max-width: 58rem;
  font-size: clamp(3rem, 8vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.shiny-text {
  display: inline-block;
  background-image: linear-gradient(to right, #091020 0%, #0b2551 12.5%, #a4f4fd 32.5%, #00d2ff 50%, #0b2551 67.5%, #091020 87.5%, #091020 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: url('#c3-noise');
  animation: shiny 6s linear infinite;
}

.hero-copy {
  max-width: 28rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-downloads {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.desktop-download-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.download-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.desktop-download-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.download-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* macOS menu strip */

.mac-bar {
  height: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(0.9rem);
}

.mac-bar__inner,
.mac-bar__left,
.mac-bar__right,
.mac-bar__menus {
  display: flex;
  align-items: center;
}

.mac-bar__inner {
  justify-content: space-between;
  height: 100%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.mac-bar__left {
  gap: 0.8rem;
}

.mac-bar__left strong {
  color: #fff;
  font-weight: 700;
}

.apple-menu-icon {
  width: 0.875rem;
  height: 0.875rem;
  fill: currentColor;
  stroke: none;
}

.mac-bar__menus {
  gap: 1.2rem;
  margin-left: 0.2rem;
}

.mac-bar__right {
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.52);
}

.mac-bar__right svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* inbox product mockup */

.dashboard-section {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.dashboard-carousel {
  position: relative;
  width: 70%;
  max-width: 64rem;
  margin-inline: auto;
}

.dashboard-carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.dashboard-carousel__track::-webkit-scrollbar {
  display: none;
}

.dashboard-slide {
  flex: 0 0 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(14, 16, 20, 0.9);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.32);
  scroll-snap-align: center;
}

.dashboard-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.dashboard-carousel__control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 11, 14, 0.72);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(0.75rem);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dashboard-carousel__control:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
}

.dashboard-carousel__control:active {
  transform: translateY(-50%) scale(0.96);
}

.dashboard-carousel__control--previous {
  left: 1rem;
}

.dashboard-carousel__control--next {
  right: 1rem;
}

.dashboard-frame {
  position: relative;
  width: 70%;
  margin-inline: auto;
}

.dashboard-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.site-footer__links span {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.75rem;
}

.legal-page {
  max-width: 64rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.legal-page__header,
.legal-page__content {
  max-width: 48rem;
  margin-inline: auto;
}

.legal-page__eyebrow {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-page__header h1 {
  margin-top: 0.85rem;
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.legal-page__intro {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.05rem;
  line-height: 1.65;
}

.legal-page__updated {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.78rem;
}

.legal-page__content {
  display: grid;
  gap: 2.5rem;
  margin-top: 4rem;
}

.legal-section {
  display: grid;
  gap: 0.85rem;
}

.legal-section h2 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.legal-section p,
.legal-section li {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.75;
}

.legal-section ul {
  display: grid;
  gap: 0.65rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.inbox-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.inbox-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(14, 16, 20, 0.9);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(2rem);
}

.window-titlebar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 2.75rem;
  padding-inline: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.traffic-lights {
  display: flex;
  gap: 0.4rem;
}

.traffic-lights span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
}

.traffic-lights span:nth-child(1) {
  background: #ff5f57;
}

.traffic-lights span:nth-child(2) {
  background: #febc2e;
}

.traffic-lights span:nth-child(3) {
  background: #28c840;
}

.window-titlebar__spacer {
  min-width: 1rem;
}

.inbox-viewport {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.14) transparent;
}

.inbox-body {
  display: grid;
  grid-template-columns: 25% 33.3333% 41.6667%;
  min-width: 62rem;
  height: 32.5rem;
}

.inbox-sidebar,
.message-list {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.inbox-sidebar {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
}

.compose-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.68rem 0.65rem;
  border-radius: 0.5rem;
  background: #fff;
  color: #000;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.compose-button:hover {
  background: #ebfbff;
  transform: translateY(-1px);
}

.compose-button svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2;
}

.inbox-nav {
  display: grid;
  gap: 0.2rem;
  margin-top: 1rem;
}

.inbox-nav__item {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  min-height: 2rem;
  padding: 0.4rem 0.55rem;
  border-radius: 0.4rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.inbox-nav__item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.inbox-nav__item.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.inbox-nav__item svg {
  width: 0.9rem;
  height: 0.9rem;
}

.inbox-nav__item b {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 500;
}

.labels-heading {
  margin-top: 1.65rem;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.labels-list {
  display: grid;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
}

.labels-list span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.labels-list i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--label-color);
  box-shadow: 0 0 0.7rem color-mix(in srgb, var(--label-color) 50%, transparent);
}

.message-list {
  background: rgba(9, 10, 13, 0.72);
}

.message-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.8rem;
  padding-inline: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

.message-search svg {
  width: 0.9rem;
  height: 0.9rem;
}

.messages {
  display: grid;
}

.message-row {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.message-row:hover,
.message-row.is-selected {
  background: rgba(255, 255, 255, 0.06);
}

.message-row.is-unread {
  color: rgba(255, 255, 255, 0.82);
}

.message-row__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.73rem;
}

.message-row__top strong {
  overflow: hidden;
  color: inherit;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message-row__top time {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
}

.message-row__subject,
.message-row__preview {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message-row__subject {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 500;
}

.message-row__preview {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
}

.email-reader {
  min-width: 0;
  background: rgba(10, 11, 14, 0.38);
}

.reader-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.8rem;
  padding-inline: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reader-toolbar__left {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.reader-toolbar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.reader-toolbar button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.reader-toolbar svg {
  width: 0.9rem;
  height: 0.9rem;
}

.reader-content {
  max-width: 36rem;
  padding: 1.7rem 1.8rem 2rem;
}

.reader-heading h2 {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.reader-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.sender-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #00d2ff, #0b2551);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.reader-meta div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.65rem;
}

.reader-meta strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 600;
}

.work-pill {
  margin-left: auto;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(0, 210, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 210, 255, 0.08);
  color: rgba(164, 244, 253, 0.82);
  font-size: 0.62rem;
}

.summary-card {
  margin-top: 1.5rem;
  padding: 0.85rem;
  border: 1px solid rgba(164, 244, 253, 0.12);
  border-radius: 0.65rem;
  background: rgba(0, 210, 255, 0.055);
}

.summary-card__title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #a4f4fd;
  font-size: 0.68rem;
  font-weight: 600;
}

.summary-card__title svg {
  width: 0.8rem;
  height: 0.8rem;
}

.summary-card p {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  line-height: 1.55;
}

.email-copy {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  line-height: 1.6;
}

.email-copy .email-signoff {
  color: rgba(255, 255, 255, 0.5);
}

.attachment {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: 1.3rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
}

.attachment svg {
  width: 0.8rem;
  height: 0.8rem;
}

/* triage */

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 4rem;
  padding-top: 5rem;
  padding-bottom: 7rem;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section-eyebrow > span:first-child {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: #fff;
}

.section-eyebrow em {
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 500;
}

.feature-copy h2 {
  margin-top: 1.25rem;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.15rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.feature-copy > p {
  max-width: 28rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.6;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.chip-row span {
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.liquid-glass {
  position: relative;
  overflow: hidden;
  border: none;
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.liquid-glass::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 1.4px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.15) 80%, rgba(255, 255, 255, 0.45) 100%);
  content: '';
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.triage-card {
  padding: 1.25rem;
  border-radius: 1rem;
}

.triage-card__heading {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.triage-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.triage-group {
  padding: 0.75rem;
  border-radius: 0.6rem;
}

.triage-group__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

.triage-group__top b {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 500;
}

.triage-group > span {
  display: block;
  overflow: hidden;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* logo cloud + testimonials */

.logo-cloud {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.logo-cloud__kicker {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.logo-grid span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
  transition: color 0.2s ease;
  animation: logo-in 0.6s ease var(--logo-delay) both;
}

.logo-grid span:hover {
  color: #fff;
}

@keyframes logo-in {
  from {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials-section {
  padding-top: 5rem;
  padding-bottom: 7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.testimonial-card {
  min-height: 18rem;
  padding: 1.5rem;
  border-radius: 1rem;
}

.testimonial-card blockquote,
.testimonial-card figcaption {
  position: relative;
  z-index: 2;
}

.testimonial-card blockquote {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card figcaption strong {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-card figcaption span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.testimonial-card figcaption b {
  margin-top: 0.4rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* pricing */

.c3-pricing-section { position: relative; padding: 40px 20px 80px; display: flex; flex-direction: column; align-items: center; overflow-x: hidden; }

.c3-watermark-container { position: relative; width: 100%; max-width: 1100px; text-align: center; margin-top: 40px; z-index: 2; }

.c3-watermark-main { font-size: 9rem; font-weight: 800; line-height: 0.9; letter-spacing: -0.05em; filter: url(#c3-noise); display: flex; flex-direction: column; align-items: center; }

.c3-watermark-line-1 { color: #fff; }

.c3-watermark-line-2 { background: linear-gradient(to right, #091020 0%, #0B2551 25%, #A4F4FD 65%, #00d2ff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }

.c3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; max-width: 1100px; margin-top: 60px; transform: translateX(20px); position: relative; z-index: 3; }

.c3-card { background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4)); backdrop-filter: blur(14px) brightness(0.91); border: 1px solid rgba(255,255,255,1); border-radius: 44px; padding: 50px 24px; min-height: 580px; display: flex; flex-direction: column; transition: all 0.6s cubic-bezier(.22,1,.36,1); overflow: hidden; position: relative; }

.c3-card::before { content:''; position:absolute; inset:0; border-radius:inherit; background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%); pointer-events:none; }

.c3-card:hover { background: rgba(15,15,15,0.6); border-color: rgba(34,211,238,0.7); transform: translateY(-12px) scale(1.01); }

.c3-card-pro { background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.55)); }

.c3-tier-small { font-size: 1.1rem; font-weight: 400; color: rgba(255,255,255,0.6); }

.c3-tier-large { font-size: 2.8rem; font-weight: 500; letter-spacing: -0.02em; color: #fff; margin-top: 8px; }

.c3-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); min-height: 3.2em; margin-top: 16px; margin-bottom: 40px; line-height: 1.5; }

.c3-list li { display:flex; align-items:flex-start; gap: 14px; font-size: 0.92rem; color: rgba(255,255,255,0.8); margin-bottom: 18px; line-height: 1.4; }

.c3-check { width:28px; height:28px; border-radius:50%; background: rgba(255,255,255,0.15); display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }

.c3-check svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2.3;
}

.c3-btn { background:#fff; color:#000; padding: 10px 32px; border-radius: 100px; font-weight:600; font-size: 0.88rem; margin-top:auto; border:none; cursor:pointer; align-self:center; transition: all 0.3s cubic-bezier(.22,1,.36,1); }

.c3-btn:hover { background:#f5f5f5; transform:scale(1.02); box-shadow: 0 8px 24px rgba(255,255,255,0.15); }

.c3-toggle-wrap { display:flex; align-items:center; justify-content:flex-end; gap:12px; width:100%; max-width:1100px; margin-top:32px; padding-right:20px; }

/* The landing page intentionally uses the full viewport instead of a centered max-width frame. */
.c3-watermark-container,
.c3-grid,
.c3-toggle-wrap {
  max-width: none;
}

.c3-grid {
  transform: none;
}

.c3-toggle { width:52px; height:28px; background:#fff; border-radius:100px; position:relative; cursor:pointer; border:none; transition: background 0.3s cubic-bezier(.4,0,.2,1); padding:0; }

.c3-toggle-knob { width:20px; height:20px; background:#000; border-radius:50%; position:absolute; top:4px; left:4px; transition: all 0.3s cubic-bezier(.4,0,.2,1); }

.c3-toggle.active { background: rgba(255,255,255,0.2); }

.c3-toggle.active .c3-toggle-knob { transform: translateX(24px); background:#fff; }

.c3-toggle-wrap > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.875rem;
}

/* final CTA */

.cta-section {
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
}

.cta-card > *:not(.cta-glow) {
  position: relative;
  z-index: 2;
}

.cta-glow {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: 600px;
  height: 420px;
  max-width: 100%;
  transform: translateX(-50%);
  background: radial-gradient(600px circle at 50% 0%, rgba(255,255,255,0.15), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.cta-card h2 {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1.02;
}

.cta-card p {
  max-width: 28rem;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.sales-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.82rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s ease;
}

.sales-button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.sales-button svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

@media (max-width: 1024px) {
  .c3-watermark-main { font-size: 3.5rem; filter:none; }
  .c3-watermark-line-2 { background:none; -webkit-text-fill-color:#00d2ff; color:#00d2ff; }
  .c3-grid { display:flex; overflow-x:auto; scroll-snap-type:x mandatory; transform:none; width:100vw; padding:0 20px; gap:16px; scrollbar-width:none; }
  .c3-card { flex: 0 0 320px; scroll-snap-align:center; }
  .c3-grid::-webkit-scrollbar{display:none}
  .c3-toggle-wrap { justify-content:center; padding-right:0; }

  .desktop-links {
    gap: 1.2rem;
    margin-right: 1.5rem;
  }

  .inbox-body {
    grid-template-columns: 25% 33.3333% 41.6667%;
  }
}

@media (max-width: 760px) {
  .container {
    padding-inline: 1.25rem;
  }

  .site-nav {
    padding-top: 1rem;
  }

  .desktop-links {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    margin: 0 1.25rem;
    border: 1px solid transparent;
    border-radius: 0.9rem;
    background: rgba(7, 8, 10, 0.76);
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(1.2rem);
  }

  .mobile-menu.is-open {
    max-height: 22rem;
    margin-top: 0.75rem;
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
  }

  .mobile-menu a {
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
  }

  .mobile-menu a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .site-footer {
    padding-top: 1rem;
  }

  .legal-page {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .legal-page__content {
    gap: 2rem;
    margin-top: 3rem;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .hero-copy {
    max-width: 22rem;
    font-size: 0.95rem;
  }

  .mac-bar__menus {
    gap: 0.75rem;
  }

  .mac-bar__right span {
    display: none;
  }

  .sm-only,
  .md-only {
    display: none;
  }

  .inbox-section {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .dashboard-frame img {
    width: 100%;
  }

  .dashboard-frame {
    width: 100%;
  }

  .dashboard-carousel__track {
    padding-inline: 0;
  }

  .dashboard-carousel {
    width: 100%;
    max-width: none;
  }

  .dashboard-slide {
    flex-basis: 100%;
  }

  .dashboard-carousel__control {
    width: 2.25rem;
    height: 2.25rem;
  }

  .dashboard-carousel__control--previous {
    left: 0.75rem;
  }

  .dashboard-carousel__control--next {
    right: 0.75rem;
  }

  .feature-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .feature-copy h2 {
    font-size: clamp(2.25rem, 13vw, 3.5rem);
  }

  .logo-cloud {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.25rem;
    margin-top: 2rem;
  }

  .testimonials-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: auto;
  }

  .c3-pricing-section {
    padding-right: 0;
    padding-left: 0;
  }

  .c3-watermark-container {
    padding-inline: 1.25rem;
  }

  .c3-watermark-main {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .c3-grid {
    width: 100vw;
    padding-inline: 1.25rem;
  }

  .c3-card {
    flex-basis: min(20rem, calc(100vw - 2.5rem));
    min-height: 35rem;
    padding: 2.75rem 1.5rem;
  }

  .c3-toggle-wrap {
    padding-right: 1.25rem;
  }

  .cta-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .cta-card {
    padding: 4.5rem 1.25rem;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .desktop-links {
    gap: 0.8rem;
    margin-right: 1rem;
  }

  .desktop-links a {
    font-size: 0.78rem;
  }

  .nav-actions .apple-button {
    padding-inline: 0.9rem;
    font-size: 0.78rem;
  }
}

@media (min-width: 761px) {
  .sm-only {
    display: inline;
  }
}

@media (min-width: 901px) {
  .md-only {
    display: inline;
  }
}

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

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