/* TransferITly public marketing experience. Kept separate from styles.css so
   the shared authenticated application remains visually and behaviorally stable. */

.marketing {
  --marketing-ink: #07111f;
  --marketing-ink-soft: #12233b;
  --marketing-copy: #526177;
  --marketing-blue: #1f6feb;
  --marketing-blue-bright: #4c8df6;
  --marketing-blue-soft: #e9f2ff;
  --marketing-mint: #43d6b1;
  --marketing-coral: #ff8368;
  --marketing-canvas: #f7f9fc;
  --marketing-line: rgba(10, 27, 50, 0.1);
  --marketing-shadow: 0 24px 70px rgba(16, 42, 78, 0.13), 0 2px 8px rgba(16, 42, 78, 0.06);
  overflow-x: clip;
  background: #fff;
  color: var(--marketing-copy);
}

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

.marketing h1,
.marketing h2,
.marketing h3 {
  color: var(--marketing-ink);
}

.marketing-container {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--marketing-ink);
  box-shadow: var(--marketing-shadow);
  font-weight: 700;
}

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

.noscript-note {
  margin: 0;
  padding: 12px;
  background: #fef3c7;
  color: #92400e;
  text-align: center;
}

/* Header */
.marketing .marketing-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  padding: 12px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: padding 260ms var(--ease-out), background 260ms var(--ease), box-shadow 260ms var(--ease),
    border-color 260ms var(--ease);
}

.marketing .marketing-header.is-scrolled {
  padding: 7px 0;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(15, 35, 64, 0.08);
  box-shadow: 0 10px 30px rgba(16, 42, 78, 0.06);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
}

.marketing .nav-shell {
  width: min(1320px, calc(100% - 48px));
  padding: 8px 10px 8px 14px;
  gap: 28px;
}

.marketing .brand {
  gap: 9px;
  flex: 0 0 auto;
}

.marketing .brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.marketing .brand-text {
  color: var(--marketing-ink);
  font-size: 19px;
  font-weight: 780;
  letter-spacing: -0.045em;
}

.marketing .brand-text span {
  color: var(--marketing-blue);
}

.marketing .nav-menu {
  flex: 1;
  justify-content: flex-end;
  gap: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.marketing .nav-links {
  gap: 4px;
}

.marketing .nav-link {
  position: relative;
  padding: 9px 11px;
  color: #4e5d73;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
}

.marketing .nav-link::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 4px;
  left: 11px;
  height: 2px;
  border-radius: 99px;
  background: var(--marketing-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.marketing .nav-link:hover,
.marketing .nav-link.active {
  color: var(--marketing-ink);
  background: transparent;
}

.marketing .nav-link:hover::after,
.marketing .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.marketing .nav-actions {
  gap: 4px;
  padding-left: 0;
  border: 0;
}

.marketing .site-header .btn {
  min-height: 40px;
  padding: 9px 15px;
  border-radius: 11px;
}

.marketing .site-header .btn-ghost {
  color: var(--marketing-ink);
}

.marketing .site-header .nav-cta {
  gap: 12px;
  padding-inline: 17px;
  background: var(--marketing-ink);
  border-color: var(--marketing-ink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(7, 17, 31, 0.16);
}

.marketing .site-header .nav-cta:hover {
  background: var(--marketing-blue);
  border-color: var(--marketing-blue);
  color: #fff;
  transform: translateY(-1px);
}

.marketing .nav-toggle-btn {
  color: var(--marketing-ink);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(7, 17, 31, 0.12);
}

/* Shared marketing typography and buttons */
.marketing-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--marketing-blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.marketing-eyebrow-light {
  color: #8ab7ff;
}

.eyebrow-pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--marketing-mint);
  box-shadow: 0 0 0 5px rgba(67, 214, 177, 0.15);
}

.marketing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.2;
  transition: transform 180ms var(--ease-out), color 180ms var(--ease), background 180ms var(--ease),
    box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

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

.marketing-btn-primary {
  background: var(--marketing-blue);
  color: #fff;
  box-shadow: 0 13px 30px rgba(31, 111, 235, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.marketing-btn-primary:hover {
  color: #fff;
  background: #155dcc;
  box-shadow: 0 16px 34px rgba(31, 111, 235, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.marketing-btn-secondary {
  color: var(--marketing-ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(12, 32, 58, 0.12);
  box-shadow: 0 7px 20px rgba(15, 37, 68, 0.07);
}

.marketing-btn-secondary:hover {
  color: var(--marketing-ink);
  background: #fff;
  border-color: rgba(31, 111, 235, 0.28);
  box-shadow: 0 11px 28px rgba(15, 37, 68, 0.11);
}

.play-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(7, 17, 31, 0.15);
  border-radius: 50%;
  color: var(--marketing-blue);
  font-size: 8px;
  text-indent: 1px;
}

.marketing-btn-block {
  width: 100%;
}

/* Hero */
.marketing-hero {
  position: relative;
  min-height: 810px;
  padding: 150px 0 94px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #fbfdff 0%, #f5f9ff 54%, #fff 100%);
}

.hero-atmosphere,
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-grid-lines {
  opacity: 0.32;
  background-image: linear-gradient(rgba(39, 91, 154, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 91, 154, 0.075) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to right, #000, transparent 42%, transparent 62%, #000),
    linear-gradient(to bottom, #000, transparent 78%);
  -webkit-mask-image: linear-gradient(to right, #000, transparent 42%, transparent 62%, #000);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-one {
  top: -420px;
  left: -240px;
  width: 820px;
  height: 820px;
  background: radial-gradient(circle, rgba(85, 151, 255, 0.19), rgba(85, 151, 255, 0) 68%);
}

.hero-orb-two {
  right: -280px;
  bottom: -430px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(67, 214, 177, 0.13), rgba(67, 214, 177, 0) 69%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(570px, 1.16fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(55px, 5.4vw, 82px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-copy h1 span {
  display: inline-block;
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(110deg, var(--marketing-blue) 10%, #326fca 58%, #28a789 115%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 565px;
  margin: 28px 0 0;
  color: #4b5d74;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin: 26px 0 0;
  padding: 0;
  color: #66758a;
  font-size: 12px;
  font-weight: 600;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  color: #25a883;
  stroke-width: 2.3;
}

.transfer-hero-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  width: 100%;
  height: 565px;
  margin: 0;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 300ms var(--ease-out);
}

.visual-glow {
  position: absolute;
  top: 48%;
  left: 48%;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 127, 238, 0.26), rgba(71, 147, 232, 0.05) 48%, transparent 70%);
  filter: blur(8px);
  transform: translate(-50%, -50%);
}

.upload-window {
  position: absolute;
  z-index: 3;
  top: 48px;
  left: 0;
  width: min(440px, 68%);
  padding-bottom: 17px;
  overflow: hidden;
  border: 1px solid rgba(18, 50, 90, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 35px 80px rgba(17, 57, 111, 0.19), 0 5px 12px rgba(17, 57, 111, 0.06);
  backdrop-filter: blur(16px);
  transform: translateZ(32px) rotate(-1.6deg);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(16, 47, 88, 0.09);
  background: rgba(247, 250, 254, 0.84);
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cad4e2;
}

.window-title {
  color: #354760;
  font-size: 11px;
  font-weight: 700;
}

.secure-state {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
  color: #238b6d;
  font-size: 9px;
  font-weight: 700;
}

.secure-state svg {
  width: 12px;
  height: 12px;
}

.drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 183px;
  margin: 14px;
  padding: 28px 20px 24px;
  border: 1px dashed rgba(31, 111, 235, 0.3);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(235, 244, 255, 0.76), rgba(249, 252, 255, 0.7));
  text-align: center;
}

.upload-symbol {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 11px;
  place-items: center;
  border: 1px solid rgba(31, 111, 235, 0.14);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(31, 111, 235, 0.13);
}

.upload-symbol img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

.drop-zone strong {
  color: var(--marketing-ink);
  font-size: 13px;
}

.drop-zone > span {
  margin-top: 3px;
  color: #8490a2;
  font-size: 10px;
}

.file-queue {
  display: grid;
  gap: 8px;
  padding: 0 14px;
}

.file-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 10px;
  border: 1px solid rgba(17, 42, 76, 0.08);
  border-radius: 11px;
  background: #fff;
}

.file-kind {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  font-size: 8px;
  font-weight: 800;
}

.file-kind-image {
  color: #247f68;
  background: #e6f8f2;
}

.file-kind-video {
  color: #c5523c;
  background: #fff0ec;
}

.file-meta {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.file-meta b {
  overflow: hidden;
  color: #17283e;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-meta small {
  color: #8a97a8;
  font-size: 8px;
}

.file-status {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #e5f8f2;
  color: #209575;
}

.file-status svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.2;
}

.file-progress {
  width: 42px;
  height: 4px;
  overflow: hidden;
  border-radius: 10px;
  background: #e7edf5;
}

.file-progress i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--marketing-blue), #5b97f3);
  animation: uploadProgress 5s var(--ease-in-out, ease-in-out) infinite;
}

.transfer-route {
  position: absolute;
  z-index: 2;
  top: 231px;
  right: 62px;
  left: 300px;
  height: 100px;
  transform: translateZ(18px) rotate(-4deg);
}

.route-line {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 111, 235, 0.08), rgba(31, 111, 235, 0.7), rgba(67, 214, 177, 0.5));
  box-shadow: 0 0 18px rgba(31, 111, 235, 0.24);
}

.route-line::after {
  content: "";
  position: absolute;
  inset: -4px 0;
  background-image: radial-gradient(circle, rgba(31, 111, 235, 0.5) 1px, transparent 1.5px);
  background-size: 13px 10px;
  opacity: 0.36;
}

.route-packet {
  position: absolute;
  z-index: 3;
  top: 34px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(31, 111, 235, 0.18);
  border-radius: 9px;
  background: #fff;
  color: var(--marketing-blue);
  box-shadow: 0 8px 18px rgba(31, 111, 235, 0.18);
  animation: packetTravel 5s linear infinite;
}

.route-packet svg {
  width: 15px;
  height: 15px;
}

.packet-two {
  animation-delay: -2.5s;
}

.route-lock {
  position: absolute;
  z-index: 4;
  top: 25px;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 5px solid #f4f8ff;
  border-radius: 15px;
  background: var(--marketing-blue);
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 111, 235, 0.25);
  transform: translateX(-50%);
}

.route-lock svg {
  width: 22px;
  height: 22px;
}

.recipient-card {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 35px;
  width: min(330px, 52%);
  padding: 18px;
  border: 1px solid rgba(16, 47, 88, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 65px rgba(17, 57, 111, 0.18), 0 4px 10px rgba(17, 57, 111, 0.06);
  backdrop-filter: blur(14px);
  transform: translateZ(46px) rotate(2.1deg);
}

.recipient-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar,
.demo-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe4db, #ffc5b8);
  color: #9b3e2d;
  font-weight: 800;
}

.avatar {
  width: 38px;
  height: 38px;
  font-size: 10px;
}

.recipient-head > span:last-child {
  display: flex;
  flex-direction: column;
}

.recipient-head b {
  color: var(--marketing-ink);
  font-size: 11px;
}

.recipient-head small,
.file-meta small {
  line-height: 1.4;
}

.recipient-head small {
  color: #8794a5;
  font-size: 9px;
}

.link-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 11px;
  border: 1px solid rgba(18, 49, 87, 0.09);
  border-radius: 10px;
  background: #f7f9fc;
  color: #5e6d80;
  font-family: var(--font-mono);
  font-size: 8px;
}

.link-preview svg {
  width: 14px;
  height: 14px;
  color: var(--marketing-blue);
}

.pin-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  padding: 10px 11px;
  border: 1px solid rgba(31, 111, 235, 0.15);
  border-radius: 10px;
  background: #f0f6ff;
}

.pin-preview span {
  color: #718198;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pin-preview b {
  color: #1d5daf;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.17em;
}

.delivery-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  font-size: 8px;
}

.delivery-state span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #238d70;
  font-weight: 700;
}

.delivery-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--marketing-mint);
  box-shadow: 0 0 0 3px rgba(67, 214, 177, 0.14);
}

.delivery-state b {
  color: #7c899a;
  font-weight: 600;
}

.floating-badge {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(16, 47, 88, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 35px rgba(17, 57, 111, 0.13);
  backdrop-filter: blur(12px);
}

.floating-badge > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-badge b {
  color: #21334b;
  font-size: 9px;
  line-height: 1.3;
}

.floating-badge small {
  color: #8794a6;
  font-size: 7px;
}

.floating-badge-encrypted {
  top: 5px;
  right: 30px;
  transform: translateZ(62px) rotate(2deg);
  animation: softFloat 5s ease-in-out infinite;
}

.floating-badge-encrypted > svg {
  width: 25px;
  height: 25px;
  color: #299e7d;
}

.floating-badge-speed {
  bottom: 4px;
  left: 58px;
  transform: translateZ(58px) rotate(-2deg);
  animation: softFloat 5s ease-in-out -2.2s infinite;
}

.speed-ring {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 3px solid #dfeafb;
  border-top-color: var(--marketing-blue);
  border-right-color: var(--marketing-blue);
  border-radius: 50%;
  transform: rotate(22deg);
}

.speed-ring i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--marketing-blue);
}

.hero-bottom-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 62, 117, 0.12), transparent);
}

/* Proof strip */
.proof-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  background: #fff;
  border-bottom: 1px solid var(--marketing-line);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  min-height: 112px;
  align-items: center;
}

.proof-grid > p {
  margin: 0;
  color: #768397;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-grid > div {
  display: flex;
  min-height: 48px;
  flex-direction: column;
  justify-content: center;
  padding-left: 26px;
  border-left: 1px solid var(--marketing-line);
}

.proof-grid strong {
  color: var(--marketing-ink);
  font-size: 14px;
}

.proof-grid span {
  color: #7d899b;
  font-size: 11px;
}

/* Shared sections */
.marketing-section {
  padding: 140px 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 68px;
}

.section-intro h2,
.security-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 68px);
  font-weight: 730;
  line-height: 1.04;
  letter-spacing: -0.057em;
}

.section-intro > p:last-child {
  max-width: 630px;
  margin: 22px 0 0;
  color: #65748a;
  font-size: 17px;
  line-height: 1.7;
}

.section-intro-split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.6fr);
  gap: 70px;
  align-items: end;
}

.section-intro-split > p:last-child {
  margin: 0 0 5px;
}

/* Product workflow */
.product-story {
  background: #fff;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(550px, 1.28fr);
  gap: clamp(50px, 7vw, 104px);
  align-items: start;
}

.workflow-copy {
  display: grid;
}

.workflow-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 31px 0;
  border-top: 1px solid var(--marketing-line);
}

.workflow-step:last-child {
  border-bottom: 1px solid var(--marketing-line);
}

.step-number {
  display: grid;
  width: 38px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: #eef5ff;
  color: var(--marketing-blue);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
}

.workflow-step h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.workflow-step p {
  margin: 10px 0 0;
  color: #6a778a;
  font-size: 14px;
  line-height: 1.7;
}

.workflow-demo {
  position: sticky;
  top: 112px;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(15, 37, 68, 0.13);
  border-radius: 25px;
  background: #f5f8fc;
  box-shadow: var(--marketing-shadow);
}

.demo-topbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  height: 57px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(15, 37, 68, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.demo-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--marketing-ink);
  font-size: 10px;
  font-weight: 800;
}

.demo-brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.demo-plan {
  padding: 4px 7px;
  border-radius: 6px;
  background: #e9f2ff;
  color: var(--marketing-blue);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.demo-avatar {
  width: 27px;
  height: 27px;
  font-size: 7px;
}

.demo-body {
  display: grid;
  min-height: 503px;
  grid-template-columns: 53px 1fr;
}

.demo-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
  padding-top: 21px;
  border-right: 1px solid rgba(15, 37, 68, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.demo-sidebar span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 8px;
  color: #8996a7;
}

.demo-sidebar span.active {
  background: #eaf2ff;
  color: var(--marketing-blue);
}

.demo-sidebar svg {
  width: 15px;
  height: 15px;
}

.demo-content {
  min-width: 0;
  padding: 27px 30px;
}

.demo-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.demo-heading > span {
  display: flex;
  flex-direction: column;
}

.demo-heading small {
  color: #8c98a8;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.demo-heading b {
  margin-top: 4px;
  color: var(--marketing-ink);
  font-size: 18px;
  letter-spacing: -0.04em;
}

.demo-heading button {
  padding: 8px 11px;
  border: 0;
  border-radius: 8px;
  background: var(--marketing-blue);
  color: #fff;
  font: inherit;
  font-size: 8px;
  font-weight: 700;
}

.demo-upload-card {
  display: grid;
  grid-template-columns: 1fr 136px;
  gap: 13px;
  margin-top: 22px;
  padding: 13px;
  border: 1px solid rgba(15, 37, 68, 0.09);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 9px 26px rgba(15, 37, 68, 0.06);
}

.demo-drop {
  display: flex;
  align-items: center;
  min-height: 123px;
  flex-direction: column;
  justify-content: center;
  border: 1px dashed rgba(31, 111, 235, 0.27);
  border-radius: 11px;
  background: #f7fbff;
}

.demo-drop svg {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  color: var(--marketing-blue);
}

.demo-drop b {
  color: #2a3e59;
  font-size: 10px;
}

.demo-drop small {
  margin-top: 3px;
  color: #98a3b1;
  font-size: 7px;
}

.demo-setting {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border-radius: 11px;
  background: #f7f9fc;
}

.demo-setting span {
  color: #8a96a7;
  font-size: 8px;
}

.demo-setting b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 8px 9px;
  border: 1px solid rgba(15, 37, 68, 0.08);
  border-radius: 7px;
  background: #fff;
  color: #2b3d56;
  font-size: 9px;
}

.demo-setting svg {
  width: 12px;
  height: 12px;
}

.demo-history {
  margin-top: 22px;
}

.demo-history-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.demo-history-title b {
  color: var(--marketing-ink);
  font-size: 10px;
}

.demo-history-title span {
  color: var(--marketing-blue);
  font-size: 8px;
  font-weight: 700;
}

.history-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 11px 10px;
  border-top: 1px solid rgba(15, 37, 68, 0.07);
  background: rgba(255, 255, 255, 0.72);
}

.history-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  font-size: 7px;
  font-weight: 800;
}

.history-icon-blue {
  color: #2966b5;
  background: #e8f1ff;
}

.history-icon-coral {
  color: #bc513e;
  background: #ffede8;
}

.history-row > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.history-row b {
  overflow: hidden;
  color: #263851;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-row small,
.history-time {
  color: #929dad;
  font-size: 7px;
}

.history-ready {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #318f74;
  font-size: 7px;
  font-weight: 700;
}

.history-ready i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #42c9a6;
}

.demo-toast {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
  padding: 11px 13px;
  border: 1px solid rgba(36, 148, 114, 0.17);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 35px rgba(13, 71, 55, 0.14);
  animation: toastBreath 4s ease-in-out infinite;
}

.demo-toast > svg {
  width: 25px;
  height: 25px;
  padding: 5px;
  border-radius: 50%;
  background: #e4f8f1;
  color: #258e70;
  stroke-width: 2.2;
}

.demo-toast > span {
  display: flex;
  flex-direction: column;
}

.demo-toast b {
  color: #244036;
  font-size: 9px;
}

.demo-toast small {
  color: #87968f;
  font-size: 7px;
}

/* Use cases */
.use-cases {
  background: var(--marketing-canvas);
}

.use-case-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.use-case-feature,
.use-case-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 37, 68, 0.1);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(18, 45, 82, 0.06);
}

.use-case-feature {
  grid-column: 1 / -1;
  display: grid;
  min-height: 460px;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  background: linear-gradient(130deg, #071522 0%, #0b2237 58%, #123b50 100%);
  color: #becbdd;
}

.use-case-feature::after {
  content: "";
  position: absolute;
  top: -45%;
  left: 28%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 130, 229, 0.2), transparent 68%);
}

.use-case-copy {
  position: relative;
  z-index: 2;
  padding: 62px;
}

.use-case-kicker {
  color: var(--marketing-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.use-case-feature .use-case-kicker {
  color: #76aaf7;
}

.use-case-feature h3 {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.use-case-feature p {
  margin: 20px 0 0;
  color: #b4c2d3;
  font-size: 15px;
  line-height: 1.7;
}

.use-case-feature a {
  display: inline-flex;
  gap: 12px;
  margin-top: 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.use-case-feature a:hover {
  color: #8ab8ff;
}

.gallery-demo {
  position: relative;
  z-index: 2;
  width: calc(100% - 40px);
  min-height: 350px;
  margin: 50px 0 -48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 19px 0 0 0;
  background: #f7f9fc;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.3);
  transform: rotate(1.2deg);
}

.gallery-browser {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 42px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(15, 37, 68, 0.09);
  background: #fff;
}

.gallery-browser > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccd5e1;
}

.gallery-browser b {
  margin-left: 8px;
  color: #30425b;
  font-size: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  grid-template-rows: 125px 125px;
  gap: 7px;
  padding: 12px;
}

.gallery-shot {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #d5dfe7;
}

.gallery-shot::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -28%;
  left: -10%;
  height: 72%;
  border-radius: 50% 50% 0 0;
  opacity: 0.8;
}

.shot-one {
  grid-row: 1 / 3;
  background: linear-gradient(150deg, #bcdff0, #f4d7bd 52%, #456a77);
}

.shot-one::after {
  background: linear-gradient(110deg, #233d49, #789383);
}

.shot-two {
  background: linear-gradient(145deg, #f4c19b, #dc7e69 55%, #3e4f68);
}

.shot-two::after {
  background: #713d36;
}

.shot-three {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #a7c9d5, #f0e0c6 50%, #4b6f68);
}

.shot-three::after {
  background: linear-gradient(120deg, #294c45, #72946e);
}

.shot-four {
  background: linear-gradient(145deg, #f1d7c1, #bd8e7c 60%, #4e5e73);
}

.shot-four::after {
  background: #4b5263;
}

.gallery-delivery {
  position: absolute;
  right: 16px;
  bottom: 17px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px;
  border: 1px solid rgba(16, 47, 88, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 26px rgba(15, 37, 68, 0.14);
  font-size: 8px;
}

.gallery-delivery span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #308c71;
  font-weight: 700;
}

.gallery-delivery i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #43caa8;
}

.gallery-delivery b {
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--marketing-blue);
  color: #fff;
}

.use-case-tile {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 31px;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease);
}

.use-case-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(18, 45, 82, 0.11);
}

.use-case-agency {
  grid-column: span 4;
  background: linear-gradient(145deg, #fff, #f0f6ff);
}

.use-case-freelance {
  grid-column: span 4;
  background: linear-gradient(145deg, #fff, #f4fbf8);
}

.use-case-private {
  grid-column: span 4;
  background: linear-gradient(145deg, #fff, #fff6f3);
}

.use-case-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(31, 111, 235, 0.14);
  border-radius: 14px;
  background: #fff;
  color: var(--marketing-blue);
  box-shadow: 0 9px 24px rgba(31, 111, 235, 0.09);
}

.use-case-freelance .use-case-icon {
  color: #209678;
}

.use-case-private .use-case-icon {
  color: #c65d47;
}

.use-case-icon svg {
  width: 24px;
  height: 24px;
}

.use-case-tile h3 {
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.use-case-tile p {
  margin: 13px 0 0;
  color: #6c798c;
  font-size: 13px;
  line-height: 1.65;
}

/* Security */
.security-section {
  position: relative;
  overflow: hidden;
  background: #071421;
  color: #afbed0;
}

.security-section::before {
  content: "";
  position: absolute;
  top: -350px;
  right: -220px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 112, 218, 0.2), transparent 66%);
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.security-copy h2 {
  color: #fff;
}

.security-copy > p:nth-of-type(2) {
  max-width: 520px;
  margin: 24px 0 0;
  color: #9cacc0;
  font-size: 17px;
  line-height: 1.7;
}

.security-list {
  display: grid;
  gap: 4px;
  margin: 37px 0 0;
  padding: 0;
  list-style: none;
}

.security-list li {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.security-list li > span {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border: 1px solid rgba(123, 175, 255, 0.19);
  border-radius: 12px;
  background: rgba(54, 113, 203, 0.12);
  color: #79adfa;
}

.security-list svg {
  width: 21px;
  height: 21px;
}

.security-list div {
  display: flex;
  flex-direction: column;
}

.security-list b {
  color: #f1f6fc;
  font-size: 14px;
}

.security-list small {
  margin-top: 4px;
  color: #8c9db2;
  font-size: 12px;
  line-height: 1.55;
}

.security-demo {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 590px;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 300ms var(--ease-out);
}

.security-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(104, 158, 235, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.security-orbit::before {
  content: "";
  position: absolute;
  top: 13%;
  left: 9%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4b90f2;
  box-shadow: 0 0 15px rgba(75, 144, 242, 0.7);
}

.orbit-one {
  width: 560px;
  height: 560px;
}

.orbit-two {
  width: 440px;
  height: 440px;
  transform: translate(-50%, -50%) rotate(125deg);
}

.download-card {
  position: absolute;
  z-index: 3;
  top: 44px;
  right: 38px;
  left: 38px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.42);
  color: var(--marketing-copy);
  transform: translateZ(35px) rotate(1deg);
}

.download-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--marketing-ink);
  font-size: 11px;
  font-weight: 800;
}

.download-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.download-brand > b {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 5px 8px;
  border-radius: 7px;
  background: #e8f8f3;
  color: #27876b;
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.download-brand i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #35be99;
}

.download-file {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  padding: 15px;
  border: 1px solid rgba(15, 37, 68, 0.08);
  border-radius: 13px;
  background: #f7f9fc;
}

.download-file-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 11px;
  background: #e8f1ff;
  color: #2768bd;
  font-size: 9px;
  font-weight: 800;
}

.download-file div {
  display: flex;
  flex-direction: column;
}

.download-file b {
  color: var(--marketing-ink);
  font-size: 12px;
}

.download-file small {
  color: #8b97a7;
  font-size: 9px;
}

.download-card label {
  display: block;
  margin-top: 26px;
  color: #394a60;
  font-size: 11px;
  font-weight: 700;
}

.pin-digits {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 9px;
}

.pin-digits span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(31, 111, 235, 0.19);
  border-radius: 11px;
  background: #f2f7ff;
  color: #205aa8;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
}

.download-card button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 47px;
  margin-top: 16px;
  border: 0;
  border-radius: 11px;
  background: var(--marketing-blue);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
}

.download-expiry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 13px;
  color: #8996a7;
  font-size: 8px;
}

.download-expiry svg {
  width: 12px;
  height: 12px;
}

.lock-confirm {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 215px;
  padding: 14px;
  border: 1px solid rgba(114, 201, 173, 0.22);
  border-radius: 15px;
  background: rgba(12, 31, 35, 0.91);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  transform: translateZ(70px) rotate(-2deg);
  animation: softFloat 5s ease-in-out -1s infinite;
}

.lock-confirm > svg {
  width: 36px;
  height: 36px;
  padding: 7px;
  border-radius: 11px;
  background: rgba(62, 202, 164, 0.12);
  color: #50d4b0;
}

.lock-confirm span {
  display: flex;
  flex-direction: column;
}

.lock-confirm b {
  color: #eaf8f3;
  font-size: 10px;
}

.lock-confirm small {
  color: #8fa69f;
  font-size: 8px;
}

/* Control bento */
.control-section {
  background: #fff;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.control-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--marketing-line);
  border-radius: 23px;
  background: #f8fafc;
}

.control-card-copy {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
}

.control-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(31, 111, 235, 0.13);
  border-radius: 13px;
  background: #fff;
  color: var(--marketing-blue);
  box-shadow: 0 8px 20px rgba(31, 111, 235, 0.07);
}

.control-icon svg {
  width: 21px;
  height: 21px;
}

.control-card h3 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.control-card p {
  max-width: 430px;
  margin: 8px 0 0;
  color: #6c798b;
  font-size: 13px;
}

.control-history {
  grid-row: span 2;
  min-height: 758px;
  background: linear-gradient(150deg, #f7faff, #edf4ff);
}

.mini-history {
  position: absolute;
  top: 172px;
  right: -22px;
  bottom: -25px;
  left: 42px;
  padding: 22px;
  border: 1px solid rgba(15, 37, 68, 0.11);
  border-radius: 19px 0 0 0;
  background: #fff;
  box-shadow: 0 25px 60px rgba(31, 75, 135, 0.14);
}

.mini-history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--marketing-line);
  color: var(--marketing-ink);
  font-size: 11px;
}

.mini-history-head span {
  padding: 4px 8px;
  border-radius: 6px;
  background: #edf4ff;
  color: var(--marketing-blue);
  font-size: 8px;
  font-weight: 700;
}

.mini-history > div:not(.mini-history-head) {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 80px;
  border-bottom: 1px solid var(--marketing-line);
}

.mini-file {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  font-size: 8px;
  font-weight: 800;
}

.mini-file.blue {
  color: #2664b7;
  background: #e8f1ff;
}

.mini-file.mint {
  color: #27896e;
  background: #e7f8f2;
}

.mini-history > div > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.mini-history b {
  color: #293c56;
  font-size: 10px;
}

.mini-history small {
  color: #8d99a8;
  font-size: 8px;
}

.mini-days {
  color: #788597;
  font-family: var(--font-mono);
  font-size: 9px;
}

.control-expiry {
  background: linear-gradient(150deg, #f8fcfb, #edf9f5);
}

.control-expiry .control-icon {
  color: #229779;
}

.retention-control {
  position: absolute;
  right: 34px;
  bottom: 37px;
  left: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 17px;
  border: 1px solid rgba(15, 37, 68, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(25, 83, 66, 0.09);
}

.retention-control > span {
  padding: 8px;
  border: 1px solid var(--marketing-line);
  border-radius: 8px;
  color: #738094;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
}

.retention-control > span.active {
  border-color: rgba(42, 158, 127, 0.2);
  background: #e8f8f3;
  color: #238a6e;
}

.retention-control > i {
  position: relative;
  grid-column: 1 / -1;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #e8edea;
}

.retention-control > i::after {
  content: "";
  display: block;
  width: var(--expiry-progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #42caa5, #2a9d80);
}

.retention-control > small {
  grid-column: 1 / -1;
  color: #89968f;
  font-size: 8px;
}

.retention-control > small b {
  color: #345d51;
}

.control-link {
  background: linear-gradient(150deg, #fffafa, #fff1ed);
}

.control-link .control-icon {
  color: #c65e48;
}

.link-control {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(15, 37, 68, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(107, 42, 31, 0.08);
}

.link-control > span:first-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.link-control small {
  color: #9a8790;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.link-control b {
  overflow: hidden;
  color: #3b3b4b;
  font-family: var(--font-mono);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-control button {
  padding: 0 12px;
  border: 1px solid rgba(31, 111, 235, 0.13);
  border-radius: 8px;
  background: #eff5ff;
  color: var(--marketing-blue);
  font: inherit;
  font-size: 8px;
  font-weight: 700;
}

.link-control > div {
  display: flex;
  grid-column: 1 / -1;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--marketing-line);
}

.link-control > div span {
  padding: 6px 9px;
  border: 1px solid var(--marketing-line);
  border-radius: 7px;
  color: #69768a;
  font-size: 8px;
  font-weight: 700;
}

.link-control > div .danger-action {
  color: #c6533e;
}

/* Pricing */
.pricing-section {
  position: relative;
  background: var(--marketing-canvas);
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 126, 229, 0.09), transparent 68%);
  pointer-events: none;
}

.pricing-layout {
  position: relative;
  display: grid;
  max-width: 970px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.marketing-price-card {
  display: flex;
  min-height: 665px;
  flex-direction: column;
  padding: 38px;
  border: 1px solid rgba(15, 37, 68, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(20, 52, 94, 0.08);
}

.pro-plan {
  position: relative;
  border-color: rgba(31, 111, 235, 0.31);
  background: linear-gradient(150deg, #fff, #f1f6ff);
  box-shadow: 0 30px 70px rgba(31, 84, 156, 0.16);
}

.popular-tag {
  position: absolute;
  top: -14px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 99px;
  background: var(--marketing-ink);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.popular-tag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--marketing-mint);
  box-shadow: 0 0 0 4px rgba(67, 214, 177, 0.13);
}

.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-plan-name {
  color: var(--marketing-ink);
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.price-tag {
  padding: 6px 9px;
  border-radius: 7px;
  background: #f1f4f8;
  color: #6f7d90;
  font-size: 8px;
  font-weight: 700;
}

.pro-plan .price-tag {
  background: #e4efff;
  color: var(--marketing-blue);
}

.marketing-price {
  margin: 34px 0 0;
  color: var(--marketing-ink);
  font-size: 59px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.06em;
}

.marketing-price sup {
  position: relative;
  top: -21px;
  margin-right: 3px;
  font-size: 22px;
  font-weight: 700;
}

.marketing-price small {
  color: #7c899b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.annual-price {
  margin: 9px 0 -5px;
  color: var(--marketing-blue);
  font-size: 11px;
  font-weight: 700;
}

.price-description {
  min-height: 53px;
  margin: 22px 0 0;
  color: #69778a;
  font-size: 14px;
  line-height: 1.6;
}

.marketing-price-card ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 31px;
  padding: 24px 0 0;
  border-top: 1px solid var(--marketing-line);
  list-style: none;
}

.marketing-price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5e6d80;
  font-size: 13px;
}

.marketing-price-card li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  padding: 3px;
  border-radius: 50%;
  background: #e7f8f2;
  color: #229675;
  stroke-width: 2.2;
}

.marketing-price-card li b {
  color: #273a53;
}

.marketing-price-card .marketing-btn {
  margin-top: auto;
}

.price-footnote {
  margin-top: 11px;
  color: #909baa;
  font-size: 9px;
  text-align: center;
}

/* FAQ */
.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 118px;
}

.faq-intro p:last-child {
  margin: 23px 0 0;
  color: #6c798c;
  font-size: 14px;
  line-height: 1.7;
}

.faq-intro a {
  color: var(--marketing-blue);
  font-weight: 700;
}

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

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

.marketing-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  color: var(--marketing-ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 690;
  list-style: none;
}

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

.marketing-faq-item summary > span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid rgba(15, 37, 68, 0.11);
  border-radius: 50%;
  background: #f8fafc;
}

.marketing-faq-item summary > span::before,
.marketing-faq-item summary > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 10px;
  background: var(--marketing-blue);
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease-out);
}

.marketing-faq-item summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.marketing-faq-item[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.marketing-faq-item p {
  max-width: 690px;
  margin: -3px 52px 26px 0;
  color: #677589;
  font-size: 14px;
  line-height: 1.75;
  animation: faqReveal 220ms var(--ease-out);
}

/* CTA and footer */
.final-cta {
  padding: 0 0 80px;
  background: #fff;
}

.final-cta-card {
  position: relative;
  display: grid;
  min-height: 365px;
  overflow: hidden;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  padding: 65px 72px;
  border-radius: 28px;
  background: linear-gradient(125deg, #0a1a2c 0%, #0c2946 58%, #0d3c4c 100%);
  box-shadow: 0 32px 70px rgba(7, 31, 53, 0.2);
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  color: #fff;
}

.final-cta .marketing-eyebrow {
  position: relative;
  z-index: 2;
}

.final-cta-side {
  position: relative;
  z-index: 2;
}

.final-cta-side > p {
  margin: 0;
  color: #b3c2d4;
  font-size: 16px;
  line-height: 1.7;
}

.final-cta-side > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.marketing-btn-white {
  background: #fff;
  color: var(--marketing-ink);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.2);
}

.marketing-btn-white:hover {
  color: var(--marketing-blue);
  background: #f7fbff;
}

.marketing-btn-dark-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.marketing-btn-dark-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-orb-one {
  top: -220px;
  right: 18%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(57, 125, 230, 0.24), transparent 68%);
}

.cta-orb-two {
  bottom: -290px;
  left: 10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(67, 214, 177, 0.15), transparent 68%);
}

.marketing .marketing-footer {
  padding: 78px 0 24px;
  border: 0;
  background: #06111e;
  color: #8fa0b5;
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 0.7fr);
  gap: 60px;
  padding-bottom: 60px;
}

.marketing-footer .brand {
  display: inline-flex;
}

.marketing-footer .brand-logo {
  width: 34px;
  height: 34px;
}

.marketing-footer .brand-text {
  color: #fff;
}

.footer-brand-block > p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #8596aa;
  font-size: 13px;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-column b {
  margin-bottom: 5px;
  color: #dbe6f2;
  font-size: 12px;
}

.marketing .marketing-footer a {
  color: #8798ac;
  font-size: 12px;
}

.marketing .marketing-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #76879b;
  font-size: 11px;
}

.footer-bottom p span {
  margin-left: 13px;
}

.marketing-footer .social-links a {
  width: 30px;
  height: 30px;
  color: #78899d;
}

.marketing-footer .social-links svg {
  width: 16px;
  height: 16px;
  stroke: none;
}

/* Motion */
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.motion-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes packetTravel {
  0% { left: 0; opacity: 0; transform: translateY(0) scale(0.84); }
  10% { opacity: 1; }
  50% { opacity: 1; transform: translateY(-6px) scale(1); }
  88% { opacity: 1; }
  100% { left: calc(100% - 30px); opacity: 0; transform: translateY(0) scale(0.84); }
}

@keyframes softFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

@keyframes uploadProgress {
  0%, 100% { width: 67%; }
  50% { width: 78%; }
}

@keyframes toastBreath {
  0%, 100% { transform: translateY(0); box-shadow: 0 15px 35px rgba(13, 71, 55, 0.14); }
  50% { transform: translateY(-4px); box-shadow: 0 19px 42px rgba(13, 71, 55, 0.19); }
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1120px) {
  .marketing .nav-shell {
    width: min(100% - 32px, 1240px);
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    gap: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(51px, 5.8vw, 67px);
  }

  .workflow-layout {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 50px;
  }

  .security-layout {
    gap: 55px;
  }
}

@media (max-width: 980px) {
  .marketing-container {
    width: min(100% - 48px, 900px);
  }

  .marketing .nav-toggle-btn {
    display: inline-flex;
  }

  .marketing .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 6px;
    left: 6px;
    display: flex;
    max-height: 0;
    padding: 0 16px;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(15, 37, 68, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 25px 55px rgba(15, 37, 68, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: max-height 250ms var(--ease-out), opacity 180ms var(--ease), transform 250ms var(--ease-out), padding 250ms var(--ease-out);
    backdrop-filter: blur(18px);
  }

  .marketing .nav-toggle-btn[aria-expanded="true"] + .nav-menu {
    max-height: 560px;
    padding-block: 16px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .marketing .nav-links,
  .marketing .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .marketing .nav-links {
    order: 1;
    gap: 2px;
    padding-bottom: 12px;
  }

  .marketing .nav-link {
    padding: 11px 10px;
  }

  .marketing .nav-link::after {
    display: none;
  }

  .marketing .nav-actions {
    order: 2;
    gap: 7px;
    padding-top: 12px;
    border-top: 1px solid var(--marketing-line);
  }

  .marketing-hero {
    min-height: 0;
    padding-top: 138px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .hero-copy h1 {
    font-size: clamp(56px, 9vw, 78px);
  }

  .transfer-hero-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
    padding-block: 18px;
  }

  .proof-grid > p {
    grid-column: 1 / -1;
    margin-bottom: 14px;
    text-align: center;
  }

  .proof-grid > div:first-of-type {
    border-left: 0;
  }

  .marketing-section {
    padding: 110px 0;
  }

  .section-intro-split {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .workflow-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .workflow-demo,
  .faq-intro {
    position: relative;
    top: auto;
  }

  .workflow-demo {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .use-case-feature {
    min-height: 620px;
    grid-template-columns: 1fr;
  }

  .use-case-copy {
    max-width: 650px;
    padding-bottom: 20px;
  }

  .gallery-demo {
    width: calc(100% - 70px);
    margin: 0 0 -50px 70px;
  }

  .use-case-agency,
  .use-case-freelance,
  .use-case-private {
    grid-column: span 4;
  }

  .security-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .security-copy {
    max-width: 720px;
  }

  .security-demo {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .control-history {
    min-height: 708px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .faq-intro {
    max-width: 580px;
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .final-cta-side {
    max-width: 620px;
  }

  .footer-top {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 35px;
  }
}

@media (max-width: 720px) {
  .marketing-container {
    width: min(100% - 36px, 640px);
  }

  .marketing .nav-shell {
    width: calc(100% - 20px);
    padding-inline: 8px;
  }

  .marketing-hero {
    padding: 118px 0 65px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 12vw, 66px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .marketing-btn {
    width: 100%;
  }

  .hero-trust {
    gap: 10px 16px;
  }

  .transfer-hero-visual {
    height: 510px;
  }

  .upload-window {
    width: 78%;
  }

  .recipient-card {
    width: 57%;
  }

  .transfer-route {
    right: 20px;
    left: 235px;
  }

  .floating-badge-encrypted {
    right: 2px;
  }

  .floating-badge-speed {
    left: 20px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 25px 0;
  }

  .proof-grid > p {
    margin-bottom: 13px;
    text-align: left;
  }

  .proof-grid > div {
    min-height: 64px;
    padding-left: 0;
    border-top: 1px solid var(--marketing-line);
    border-left: 0;
  }

  .marketing-section {
    padding: 88px 0;
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .section-intro h2,
  .security-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(39px, 10vw, 54px);
  }

  .section-intro > p:last-child {
    font-size: 15px;
  }

  .workflow-step {
    grid-template-columns: 40px 1fr;
    gap: 13px;
  }

  .workflow-demo {
    min-height: 510px;
  }

  .demo-body {
    grid-template-columns: 42px 1fr;
  }

  .demo-content {
    padding: 24px 18px;
  }

  .demo-upload-card {
    grid-template-columns: 1fr;
  }

  .demo-setting {
    display: none;
  }

  .history-ready {
    display: none;
  }

  .use-case-feature {
    min-height: 570px;
  }

  .use-case-copy {
    padding: 40px 34px 16px;
  }

  .gallery-demo {
    width: calc(100% - 30px);
    min-height: 325px;
    margin-left: 30px;
  }

  .use-case-agency,
  .use-case-freelance,
  .use-case-private {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .security-demo {
    min-height: 530px;
  }

  .download-card {
    right: 0;
    left: 0;
  }

  .orbit-one {
    width: 500px;
    height: 500px;
  }

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

  .control-history {
    grid-row: auto;
    min-height: 580px;
  }

  .control-card {
    min-height: 355px;
  }

  .pricing-layout {
    max-width: 520px;
    grid-template-columns: 1fr;
  }

  .marketing-price-card {
    min-height: 0;
  }

  .final-cta {
    padding-bottom: 48px;
  }

  .final-cta-card {
    width: calc(100% - 24px);
    min-height: 0;
    padding: 54px 38px;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (min-width: 721px) and (max-width: 860px) {
  .use-case-agency,
  .use-case-freelance {
    grid-column: span 6;
  }

  .use-case-private {
    grid-column: 1 / -1;
    min-height: 230px;
  }
}

@media (max-width: 480px) {
  .marketing-container {
    width: calc(100% - 28px);
  }

  .marketing .brand-text {
    font-size: 17px;
  }

  .marketing .brand-logo {
    width: 28px;
    height: 28px;
  }

  .marketing-hero {
    padding-top: 108px;
  }

  .marketing-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .hero-copy h1 {
    font-size: clamp(41px, 12.7vw, 55px);
    line-height: 1;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 25px;
  }

  .marketing-btn {
    min-height: 50px;
    font-size: 14px;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 10px;
  }

  .transfer-hero-visual {
    height: 475px;
    margin-top: -4px;
  }

  .upload-window {
    top: 24px;
    width: 89%;
    transform: rotate(-1deg);
  }

  .window-title {
    font-size: 9px;
  }

  .drop-zone {
    min-height: 138px;
    padding-block: 18px;
  }

  .upload-symbol {
    width: 45px;
    height: 45px;
  }

  .upload-symbol img {
    width: 31px;
    height: 31px;
  }

  .file-row {
    min-height: 46px;
  }

  .recipient-card {
    right: -3px;
    bottom: 14px;
    width: 72%;
    padding: 14px;
    transform: rotate(1.5deg);
  }

  .transfer-route {
    top: 265px;
    right: 12px;
    left: 120px;
  }

  .route-lock {
    width: 42px;
    height: 42px;
  }

  .floating-badge-encrypted {
    top: -12px;
    right: -3px;
  }

  .floating-badge-speed {
    display: none;
  }

  .section-intro h2,
  .security-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(37px, 10.7vw, 48px);
    letter-spacing: -0.052em;
  }

  .workflow-step h3 {
    font-size: 20px;
  }

  .workflow-demo {
    min-height: 460px;
    border-radius: 19px;
  }

  .demo-topbar {
    padding-inline: 12px;
  }

  .demo-sidebar {
    display: none;
  }

  .demo-body {
    display: block;
    min-height: 403px;
  }

  .demo-content {
    padding: 21px 14px;
  }

  .demo-heading button {
    display: none;
  }

  .history-row {
    grid-template-columns: 30px minmax(0, 1fr) auto;
  }

  .demo-toast {
    right: 12px;
    bottom: 12px;
  }

  .use-case-feature,
  .use-case-tile,
  .control-card,
  .marketing-price-card {
    border-radius: 19px;
  }

  .use-case-feature {
    min-height: 540px;
  }

  .use-case-copy {
    padding: 34px 24px 10px;
  }

  .use-case-feature h3 {
    font-size: 36px;
  }

  .gallery-demo {
    width: calc(100% - 18px);
    min-height: 300px;
    margin-left: 18px;
  }

  .gallery-grid {
    grid-template-rows: 105px 105px;
  }

  .use-case-tile {
    min-height: 220px;
    padding: 26px;
  }

  .security-copy > p:nth-of-type(2) {
    font-size: 15px;
  }

  .security-list li {
    grid-template-columns: 39px 1fr;
    gap: 13px;
  }

  .security-demo {
    min-height: 485px;
  }

  .download-card {
    top: 22px;
    padding: 16px;
    border-radius: 18px;
  }

  .pin-digits {
    gap: 5px;
  }

  .pin-digits span {
    border-radius: 8px;
    font-size: 13px;
  }

  .lock-confirm {
    right: -5px;
    bottom: 14px;
    min-width: 190px;
  }

  .control-card {
    padding: 25px;
  }

  .control-card-copy {
    grid-template-columns: 1fr;
  }

  .mini-history {
    top: 190px;
    left: 24px;
  }

  .retention-control,
  .link-control {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .marketing-price-card {
    padding: 29px 24px;
  }

  .marketing-price {
    font-size: 51px;
  }

  .popular-tag {
    right: 15px;
  }

  .marketing-faq-item summary {
    min-height: 74px;
    font-size: 15px;
  }

  .marketing-faq-item p {
    margin-right: 0;
  }

  .final-cta-card {
    padding: 45px 25px;
    border-radius: 22px;
  }

  .final-cta-side > p {
    font-size: 14px;
  }

  .final-cta-side > div {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 28px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

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

  .footer-bottom p span {
    display: block;
    margin: 5px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketing .route-packet,
  .marketing .floating-badge,
  .marketing .file-progress i,
  .marketing .demo-toast,
  .marketing .lock-confirm {
    animation: none !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@supports not (overflow: clip) {
  .marketing {
    overflow-x: hidden;
  }
}
