@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/plus-jakarta-sans-400.ttf") format("truetype"); }
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/plus-jakarta-sans-500.ttf") format("truetype"); }
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/plus-jakarta-sans-600.ttf") format("truetype"); }
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/plus-jakarta-sans-700.ttf") format("truetype"); }

:root {
  color-scheme: light;
  --canvas: #f4fbf9;
  --canvas-alt: #ecf6f3;
  --surface: #fff;
  --ink: #08251f;
  --muted: #46685f;
  --border: #c9e2db;
  --brand: #0f766e;
  --brand-hover: #115e59;
  --brand-bright: #14b8a6;
  --mint: #2dd4bf;
  --sky: #0369a1;
  --dark: #06110f;
  --on-dark: #ecfdf5;
  --success: #15803d;
  --error: #b42318;
  --shadow-sm: 0 10px 28px rgba(8, 37, 31, .07);
  --shadow-lg: 0 26px 80px rgba(8, 37, 31, .13);
  --container: 1200px;
  --header-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 28px); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding-block: 112px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; transform: translateY(-150%); padding: 12px 18px; background: var(--dark); color: #fff; border-radius: 10px; font-weight: 700; text-decoration: none; }
.skip-link:focus { transform: translateY(0); }
.icon { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

:focus-visible { outline: 3px solid #38bdf8; outline-offset: 3px; }
::selection { background: #99f6e4; color: #042f2e; }

.site-header { position: fixed; z-index: 50; top: 14px; left: 0; right: 0; pointer-events: none; }
.header-inner { min-height: var(--header-height); padding: 10px 12px 10px 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: rgba(255, 255, 255, .9); border: 1px solid rgba(201, 226, 219, .86); border-radius: 19px; box-shadow: 0 10px 34px rgba(8, 37, 31, .08); backdrop-filter: blur(16px); pointer-events: auto; transition: box-shadow .2s ease, background .2s ease; }
.site-header.is-scrolled .header-inner { background: rgba(255, 255, 255, .97); box-shadow: 0 14px 40px rgba(8, 37, 31, .13); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; flex: 0 0 auto; }
.brand img { border-radius: 11px; }
.brand-word { font-weight: 700; font-size: 1.16rem; line-height: 1; letter-spacing: .12em; }
.brand-descriptor { margin-left: -4px; padding-left: 8px; border-left: 1px solid var(--border); color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .16em; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: #284b43; font-size: .86rem; font-weight: 600; text-decoration: none; transition: color .2s ease; }
.site-nav a:hover { color: var(--brand); }
.site-nav .nav-access { padding-left: 22px; border-left: 1px solid var(--border); }
.menu-button { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--ink); background: var(--canvas-alt); border: 1px solid var(--border); border-radius: 12px; }
.menu-button .icon { width: 22px; height: 22px; }
.menu-close { display: none; }
.menu-button[aria-expanded="true"] .menu-open { display: none; }
.menu-button[aria-expanded="true"] .menu-close { display: block; }

.button { min-height: 48px; padding: 13px 20px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--brand); color: #fff; border: 1px solid var(--brand); border-radius: 12px; box-shadow: 0 9px 24px rgba(15, 118, 110, .2); font-size: .91rem; font-weight: 700; line-height: 1.2; text-decoration: none; transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease; cursor: pointer; }
.button:hover { background: var(--brand-hover); border-color: var(--brand-hover); box-shadow: 0 12px 30px rgba(15, 118, 110, .28); }
.button-small { min-height: 44px; padding: 10px 16px; color: #fff !important; }
.button-secondary { background: rgba(255, 255, 255, .65); border-color: #a9cbc3; color: var(--ink); box-shadow: none; }
.button-secondary:hover { background: #fff; border-color: var(--brand); color: var(--brand); box-shadow: none; }
.button-trial { background: #e5f5f1; border-color: #b1d7cf; color: var(--brand); box-shadow: none; }
.button-trial:hover { background: #d8f1eb; border-color: var(--brand); color: var(--brand-hover); box-shadow: none; }
.button-light { background: var(--on-dark); border-color: var(--on-dark); color: var(--dark); box-shadow: none; }
.button-light:hover { background: #fff; border-color: #fff; color: var(--dark); box-shadow: 0 12px 30px rgba(0, 0, 0, .2); }

.hero { position: relative; min-height: 840px; padding-top: 174px; padding-bottom: 102px; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .34; background-image: linear-gradient(rgba(15, 118, 110, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 118, 110, .08) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000, transparent 78%); }
.hero-glow { position: absolute; width: 760px; height: 760px; right: -240px; top: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(45, 212, 191, .22), rgba(94, 234, 212, .08) 45%, transparent 70%); filter: blur(8px); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(440px, .88fr); align-items: center; gap: clamp(48px, 7vw, 100px); }
.eyebrow { margin-bottom: 22px; display: flex; align-items: center; gap: 10px; color: var(--brand); font-size: .72rem; font-weight: 700; line-height: 1.3; letter-spacing: .145em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 1px; background: currentColor; }
.hero h1 { max-width: 770px; margin-bottom: 28px; font-size: clamp(3rem, 5.65vw, 4.85rem); line-height: 1.01; letter-spacing: -.048em; }
.hero h1 em { color: var(--brand); font-style: normal; }
.hero-lead { max-width: 680px; margin-bottom: 34px; color: var(--muted); font-size: clamp(1.04rem, 1.55vw, 1.18rem); line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-proof { margin: 27px 0 0; padding: 0; display: flex; gap: 10px 24px; flex-wrap: wrap; list-style: none; color: #365b52; font-size: .79rem; font-weight: 600; }
.hero-proof li { display: flex; align-items: center; gap: 7px; }
.hero-proof .icon { width: 17px; height: 17px; padding: 2px; color: var(--brand); background: #d9f5ed; border-radius: 50%; stroke-width: 2.5; }

.hero-visual { position: relative; min-width: 0; }
.product-window { position: relative; z-index: 2; padding: 18px; background: rgba(255, 255, 255, .94); border: 1px solid #b8d9d1; border-radius: 26px; box-shadow: var(--shadow-lg); transform: rotate(1deg); }
.window-topbar { margin: -2px 0 16px; padding: 0 2px 14px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e1efeb; }
.mini-brand { display: flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.mini-brand img { border-radius: 8px; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; color: #166534; background: #ecfdf3; border: 1px solid #bbf7d0; border-radius: 100px; font-size: .64rem; font-weight: 700; }
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
.conversation-card { padding: 18px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; background: #08251f; color: var(--on-dark); border-radius: 17px; }
.caller-avatar { width: 44px; height: 44px; display: grid; place-items: center; color: #042f2e; background: #5eead4; border-radius: 13px; }
.caller-avatar .icon { width: 20px; height: 20px; }
.conversation-card div:nth-child(2) { min-width: 0; display: flex; flex-direction: column; }
.card-kicker { color: #99f6e4; font-size: .54rem; font-weight: 700; letter-spacing: .12em; }
.conversation-card strong { margin-block: 2px; font-size: .9rem; }
.conversation-card small { color: #a9c8c0; font-size: .68rem; }
.sound-wave { height: 30px; display: flex; align-items: center; gap: 3px; }
.sound-wave i { width: 3px; height: 8px; background: #5eead4; border-radius: 10px; animation: sound 1.4s ease-in-out infinite; transform-origin: center; }
.sound-wave i:nth-child(2), .sound-wave i:nth-child(6) { height: 15px; animation-delay: -.8s; }
.sound-wave i:nth-child(3), .sound-wave i:nth-child(5) { height: 22px; animation-delay: -.4s; }
.sound-wave i:nth-child(4) { height: 28px; animation-delay: -.65s; }
@keyframes sound { 0%, 100% { transform: scaleY(.45); opacity: .58; } 50% { transform: scaleY(1); opacity: 1; } }
.flow-line { width: 2px; height: 25px; margin-left: 40px; background: #b8d9d1; position: relative; }
.flow-line span { position: absolute; width: 8px; height: 8px; left: -3px; bottom: 0; background: var(--brand); border-radius: 50%; }
.action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.action-card { min-width: 0; padding: 13px; display: flex; align-items: center; gap: 9px; background: #f7fbfa; border: 1px solid #d9e9e5; border-radius: 13px; }
.action-card.is-active { background: #effcf8; border-color: #99ddce; }
.action-icon { width: 32px; height: 32px; display: grid; place-items: center; color: var(--brand); background: #d9f5ed; border-radius: 9px; }
.action-icon .icon { width: 16px; height: 16px; }
.action-card div { min-width: 0; display: flex; flex: 1; flex-direction: column; }
.action-card small { color: #66857d; font-size: .49rem; font-weight: 700; letter-spacing: .11em; }
.action-card strong { overflow: hidden; font-size: .7rem; white-space: nowrap; text-overflow: ellipsis; }
.status-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; }
.action-check { width: 16px; height: 16px; color: var(--brand); stroke-width: 2.4; }
.human-control { margin-top: 9px; padding: 13px; display: flex; align-items: center; gap: 10px; color: #294e46; background: #fff; border: 1px solid #d9e9e5; border-radius: 13px; }
.human-control > .icon { width: 20px; height: 20px; color: var(--brand); }
.human-control > span:nth-child(2) { display: flex; flex: 1; flex-direction: column; }
.human-control strong { font-size: .7rem; }
.human-control small { color: #6d8b83; font-size: .58rem; }
.control-link { color: var(--brand); font-size: .62rem; font-weight: 700; }
.visual-note { margin: 12px 0 0; color: #6b8981; font-size: .65rem; text-align: center; }
.signal-orbit { position: absolute; z-index: 1; border: 1px solid rgba(15, 118, 110, .22); border-radius: 50%; pointer-events: none; }
.signal-orbit::before { content: ""; position: absolute; width: 10px; height: 10px; background: var(--brand-bright); border: 4px solid var(--canvas); border-radius: 50%; }
.signal-orbit-one { width: 120%; height: 138%; left: -10%; top: -19%; transform: rotate(16deg); }
.signal-orbit-one::before { right: 8%; top: 13%; }
.signal-orbit-two { width: 108%; height: 120%; left: -4%; top: -10%; border-style: dashed; transform: rotate(-9deg); }
.signal-orbit-two::before { left: 3%; bottom: 22%; background: #38bdf8; }

.demo-strip { position: relative; z-index: 3; padding-block: 22px; background: #fff; border-block: 1px solid var(--border); }
.demo-strip-inner { display: grid; grid-template-columns: 1.25fr 1.4fr auto; align-items: center; gap: 32px; }
.demo-status { display: flex; align-items: center; gap: 13px; }
.demo-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--brand); background: #ddf7f0; border-radius: 12px; }
.demo-status div { display: flex; flex-direction: column; }
.demo-status small { color: var(--brand); font-size: .55rem; font-weight: 700; letter-spacing: .12em; }
.demo-status strong { font-size: .76rem; line-height: 1.35; }
.demo-status strong a { color: inherit; text-decoration: none; }
.demo-strip p { margin: 0; color: var(--muted); font-size: .75rem; }
.demo-strip a { display: inline-flex; align-items: center; gap: 7px; color: var(--brand); font-size: .76rem; font-weight: 700; text-decoration: none; white-space: nowrap; }

.problem-section { background: #fff; }
.problem-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 50px; }
.section-label { padding-top: 10px; color: var(--brand); font-size: .66rem; font-weight: 700; letter-spacing: .16em; }
.problem-grid h2 { max-width: 890px; margin-bottom: 24px; font-size: clamp(2.15rem, 4vw, 3.4rem); line-height: 1.12; letter-spacing: -.035em; }
.problem-grid div > p { max-width: 770px; margin: 0; color: var(--muted); font-size: 1.05rem; }

.section-heading { margin-bottom: 58px; }
.section-heading.centered { max-width: 800px; margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2 { margin-bottom: 19px; font-size: clamp(2.1rem, 3.8vw, 3.2rem); line-height: 1.1; letter-spacing: -.035em; }
.section-heading > p:not(.eyebrow), .split-heading > p { margin-bottom: 0; color: var(--muted); font-size: 1.02rem; }
.narrow { max-width: 680px !important; }
.steps-section { background: var(--canvas-alt); }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { position: relative; z-index: 2; min-height: 290px; padding: 30px; background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 12px 32px rgba(8, 37, 31, .04); }
.step-number { position: absolute; top: 27px; right: 28px; color: #87a69e; font-size: .65rem; font-weight: 700; letter-spacing: .12em; }
.step-icon { width: 50px; height: 50px; margin-bottom: 44px; display: grid; place-items: center; color: var(--brand); background: #dff7f1; border-radius: 14px; }
.step-icon .icon { width: 23px; height: 23px; }
.step-card h3 { margin-bottom: 12px; font-size: 1.2rem; letter-spacing: -.02em; }
.step-card p { margin: 0; color: var(--muted); font-size: .86rem; }
.living-signal { position: absolute; z-index: 1; left: 12%; right: 12%; top: 55px; height: 1px; background: #9ccfc3; }
.living-signal::before, .living-signal::after { content: ""; position: absolute; top: -4px; width: 9px; height: 9px; background: var(--brand-bright); border-radius: 50%; }
.living-signal::before { left: 0; }.living-signal::after { right: 0; }
.living-signal span { position: absolute; top: -5px; left: 0; width: 11px; height: 11px; background: var(--brand); border: 3px solid #fff; border-radius: 50%; opacity: 0; }
.steps.in-view .living-signal span { animation: travel 1.7s ease-in-out .3s 1 forwards; }
@keyframes travel { 0% { left: 0; opacity: 1; } 100% { left: calc(100% - 11px); opacity: 1; } }

.channels-section { background: #fff; }
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; }
.split-heading h2 { margin-bottom: 0; }
.channel-bento { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.channel-card { min-height: 230px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; background: var(--canvas); border: 1px solid var(--border); border-radius: 20px; }
.channel-card h3 { margin-bottom: 10px; font-size: 1.28rem; letter-spacing: -.025em; }
.channel-card p { max-width: 54ch; margin: 0; color: var(--muted); font-size: .87rem; }
.channel-voice { grid-row: 1 / 3; min-height: 478px; color: var(--on-dark); background: var(--dark); border-color: var(--dark); }
.channel-voice p { color: #a8c7bf; font-size: .96rem; }
.channel-voice h3 { max-width: 480px; font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.1; }
.channel-head { display: flex; justify-content: space-between; align-items: flex-start; }
.channel-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--brand); background: #daf5ee; border-radius: 14px; }
.channel-voice .channel-icon { color: #042f2e; background: #5eead4; }
.channel-tag { padding: 7px 10px; color: #99f6e4; border: 1px solid #25564b; border-radius: 100px; font-size: .56rem; font-weight: 700; letter-spacing: .1em; }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--brand); font-size: .74rem; font-weight: 700; }
.voice-flow { padding-top: 28px; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 9px; border-top: 1px solid #20433c; }
.voice-flow span { font-size: .64rem; font-weight: 700; }
.voice-flow i { height: 1px; background: linear-gradient(90deg, #2dd4bf, #275f55); position: relative; }
.voice-flow i::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; background: #2dd4bf; border-radius: 50%; }

.dark-section { position: relative; overflow: hidden; color: var(--on-dark); background: var(--dark); }
.dark-section::before { content: ""; position: absolute; width: 600px; height: 600px; right: -180px; top: -260px; background: radial-gradient(circle, rgba(45, 212, 191, .16), transparent 68%); }
.dark-signal { position: absolute; left: -5%; right: -5%; top: 44%; height: 90px; opacity: .13; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50h170l20-15 20 30 25-48 30 72 25-39h145l22-10 25 20 24-43 30 70 26-37h150l22-15 28 30 26-48 30 70 24-37h210' fill='none' stroke='%235eead4' stroke-width='2'/%3E%3C/svg%3E") center/cover no-repeat; }
.dark-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: center; }
.eyebrow-dark { color: #5eead4; }
.dark-copy h2 { margin-bottom: 24px; font-size: clamp(2.2rem, 4vw, 3.45rem); line-height: 1.08; letter-spacing: -.04em; }
.dark-copy > p:not(.eyebrow) { max-width: 560px; margin-bottom: 34px; color: #a8c7bf; }
.tech-list { border-top: 1px solid #24443d; }
.tech-list article { padding-block: 26px; display: grid; grid-template-columns: 45px 1fr; gap: 18px; border-bottom: 1px solid #24443d; }
.tech-list article > span { color: #5eead4; font-size: .65rem; font-weight: 700; letter-spacing: .1em; }
.tech-list h3 { margin-bottom: 7px; font-size: 1rem; }
.tech-list p { margin: 0; color: #94b3ab; font-size: .82rem; }

.control-section { background: #fff; }
.control-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.control-visual { position: relative; padding: 42px; background: var(--canvas-alt); border-radius: 26px; }
.control-visual::before { content: ""; position: absolute; width: 120px; height: 120px; right: -28px; top: -32px; border: 1px dashed #72b7a8; border-radius: 50%; }
.control-panel { position: relative; padding: 16px; background: #fff; border: 1px solid #bad8d1; border-radius: 20px; box-shadow: var(--shadow-sm); }
.control-panel-head { padding: 3px 3px 16px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e1efeb; font-size: .72rem; font-weight: 700; }
.secure-pill { display: inline-flex; align-items: center; gap: 5px; padding: 5px 8px; color: var(--brand); background: #eefbf7; border-radius: 100px; font-size: .55rem; }
.secure-pill .icon { width: 13px; height: 13px; }
.control-item { min-height: 76px; padding: 13px 4px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #e7f1ee; }
.control-item:last-child { border-bottom: 0; }
.control-item-icon { width: 38px; height: 38px; display: grid; place-items: center; color: var(--brand); background: #e3f7f2; border-radius: 11px; }
.control-item-icon .icon { width: 18px; height: 18px; }
.control-item > div { min-width: 0; display: flex; flex: 1; flex-direction: column; }
.control-item strong { font-size: .7rem; }
.control-item small { overflow: hidden; color: #648078; font-size: .57rem; white-space: nowrap; text-overflow: ellipsis; }
.status-label { padding: 5px 8px; color: #166534; background: #eaf9ee; border-radius: 100px; font-size: .52rem; font-weight: 700; }
.switch-on { width: 34px; height: 19px; padding: 3px; background: var(--brand); border-radius: 20px; }
.switch-on i { width: 13px; height: 13px; margin-left: 15px; display: block; background: #fff; border-radius: 50%; }
.control-copy h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: -.04em; }
.control-copy > p:not(.eyebrow) { color: var(--muted); }
.feature-list { margin: 30px 0 0; padding: 0; display: grid; gap: 18px; list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: 13px; }
.feature-list li > .icon { width: 21px; height: 21px; margin-top: 2px; padding: 3px; color: #fff; background: var(--brand); border-radius: 50%; stroke-width: 2.4; }
.feature-list span { display: flex; flex-direction: column; color: var(--muted); font-size: .8rem; }
.feature-list strong { color: var(--ink); font-size: .87rem; }

.sectors-section { background: var(--canvas); }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sector-grid article { min-height: 300px; padding: 30px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 20px; }
.sector-grid article > span { margin-bottom: 60px; color: var(--brand); font-size: .64rem; font-weight: 700; letter-spacing: .13em; }
.sector-grid h3 { margin-bottom: 12px; font-size: 1.25rem; }
.sector-grid p { margin-bottom: 24px; color: var(--muted); font-size: .86rem; }
.sector-grid small { margin-top: auto; padding-top: 16px; border-top: 1px solid #e3efec; color: #628078; font-size: .65rem; font-weight: 600; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro h2 { margin-bottom: 20px; font-size: clamp(2.1rem, 3.5vw, 3rem); line-height: 1.1; letter-spacing: -.035em; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { min-height: 76px; padding: 21px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-weight: 700; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .icon { color: var(--brand); transition: transform .2s ease; }
.faq-list details[open] summary .icon { transform: rotate(180deg); }
.faq-list details p { max-width: 720px; margin: -5px 40px 24px 4px; color: var(--muted); font-size: .88rem; }
.faq-list details p a { color: var(--brand); font-weight: 700; }

.trial-section { background: var(--canvas); }
.trial-panel { padding: clamp(38px, 4.7vw, 58px); display: grid; grid-template-columns: 1.08fr .92fr; align-items: start; gap: clamp(48px, 6vw, 82px); background: #fff; border: 1px solid var(--border); border-radius: 28px; box-shadow: var(--shadow-sm); }
.trial-copy h2 { max-width: 650px; margin-bottom: 20px; font-size: clamp(2.15rem, 3.8vw, 3.25rem); line-height: 1.08; letter-spacing: -.04em; }
.trial-lead { max-width: 650px; margin-bottom: 30px; color: var(--muted); font-size: 1rem; }
.trial-benefits { margin: 0; padding: 0; display: grid; gap: 18px; list-style: none; }
.trial-benefits li { display: grid; grid-template-columns: 42px 1fr; align-items: start; gap: 13px; }
.trial-benefits li > span:last-child { display: flex; flex-direction: column; color: var(--muted); font-size: .79rem; line-height: 1.55; }
.trial-benefits strong { margin-bottom: 2px; color: var(--ink); font-size: .88rem; }
.trial-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--brand); background: #dff7f1; border-radius: 12px; }
.trial-icon .icon { width: 20px; height: 20px; }
.trial-action { min-width: 0; }
.trial-form, .trial-success { padding: 30px; background: #f9fdfc; border: 1px solid #b9d8d0; border-radius: 20px; box-shadow: 0 16px 42px rgba(8, 37, 31, .07); }
.trial-form-heading { margin-bottom: 24px; }
.trial-form-heading > span, .success-step { margin: 0 0 7px; display: block; color: var(--brand); font-size: .57rem; font-weight: 700; letter-spacing: .12em; }
.trial-form-heading h3, .trial-success h3 { margin-bottom: 7px; font-size: 1.28rem; letter-spacing: -.025em; }
.trial-form-heading p, .trial-success > p:not(.success-step):not(.success-note) { margin: 0; color: var(--muted); font-size: .75rem; }
.trial-form .form-row label { font-size: .76rem; }
.trial-form .field-error { font-size: .7rem; }
.password-field { position: relative; }
.password-field input { padding-right: 82px; }
.password-field button { position: absolute; top: 4px; right: 4px; min-width: 69px; height: 40px; padding: 0 10px; color: var(--brand); background: transparent; border: 0; border-radius: 8px; font-size: .66rem; font-weight: 700; }
.password-field button:hover { background: #e5f5f1; }
.field-hint { display: block; margin-top: 4px; color: #68877f; font-size: .62rem; }
.form-alert { margin-bottom: 18px; padding: 12px 13px; color: #7a271a; background: #fef3f2; border: 1px solid #fecdca; border-radius: 10px; font-size: .72rem; font-weight: 600; }
.trial-consent { margin-bottom: 0; font-size: .74rem; }
.trial-consent a { color: var(--brand); font-weight: 700; }
.consent-error { min-height: 19px; margin: 2px 0 6px 27px; }
.trial-submit:disabled { cursor: wait; opacity: .78; }
.trial-submit.is-loading .icon { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.trial-form .form-note { font-size: .67rem; }
.trial-login, .trial-home { min-height: 44px; margin-top: 7px; display: flex; align-items: center; justify-content: center; color: var(--brand); font-size: .72rem; font-weight: 700; text-align: center; }
.trial-success { text-align: center; }
.success-icon { width: 52px; height: 52px; margin: 0 auto 15px; display: grid; place-items: center; color: #fff; background: var(--success); border-radius: 50%; }
.success-icon .icon { width: 26px; height: 26px; stroke-width: 2.5; }
.trial-success .success-step { margin-bottom: 5px; }
.trial-success > p:not(.success-step) { max-width: 410px; margin-inline: auto; }
.ddi-card { margin-block: 23px; padding: 18px; display: grid; justify-items: center; gap: 6px; background: #e8f7f3; border: 1px solid #aed8ce; border-radius: 14px; }
.ddi-card > span { color: #52766d; font-size: .55rem; font-weight: 700; letter-spacing: .13em; }
.ddi-card > strong { color: var(--ink); font-size: clamp(1.35rem, 3vw, 1.75rem); font-variant-numeric: tabular-nums; letter-spacing: .025em; }
.ddi-card button { min-height: 40px; padding: 7px 10px; display: inline-flex; align-items: center; gap: 7px; color: var(--brand); background: #fff; border: 1px solid #a7d0c7; border-radius: 9px; font-size: .66rem; font-weight: 700; }
.ddi-card button:hover { border-color: var(--brand); }
.trial-steps { margin: 0 0 18px; padding: 0; display: grid; gap: 11px; list-style: none; counter-reset: trial-step; text-align: left; }
.trial-steps li { position: relative; min-height: 28px; padding-left: 39px; color: #3f625a; font-size: .73rem; line-height: 1.5; counter-increment: trial-step; }
.trial-steps li::before { content: counter(trial-step); position: absolute; top: 0; left: 0; width: 27px; height: 27px; display: grid; place-items: center; color: var(--brand); background: #dff7f1; border-radius: 8px; font-size: .61rem; font-weight: 700; }
.success-note { margin-bottom: 19px !important; padding-top: 15px; border-top: 1px solid var(--border); color: #5b7972; font-size: .7rem; line-height: 1.55; }
.trial-success .button { text-decoration: none; }

.contact-section { background: var(--canvas-alt); }
.contact-panel { padding: clamp(34px, 5vw, 68px); display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 8vw, 110px); color: #fff; background: var(--brand); border-radius: 28px; box-shadow: 0 24px 60px rgba(15, 118, 110, .18); }
.eyebrow-contact { color: #ccfbf1; }
.contact-copy h2 { margin-bottom: 22px; font-size: clamp(2.15rem, 3.8vw, 3.2rem); line-height: 1.08; letter-spacing: -.04em; }
.contact-copy > p:not(.eyebrow) { color: #d4f4ed; }
.contact-direct { margin-block: 25px 6px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-direct a { min-height: 58px; padding: 11px 13px; display: flex; align-items: center; gap: 10px; color: #fff; background: rgba(3, 40, 36, .16); border: 1px solid rgba(236, 253, 245, .25); border-radius: 13px; text-decoration: none; transition: background .2s ease, border-color .2s ease; }
.contact-direct a:hover { background: rgba(3, 40, 36, .28); border-color: rgba(236, 253, 245, .5); }
.contact-direct a > .icon { width: 21px; height: 21px; }
.contact-direct a > span { display: flex; flex-direction: column; }
.contact-direct small { color: #ccfbf1; font-size: .49rem; font-weight: 700; letter-spacing: .11em; }
.contact-direct strong { font-size: .68rem; }
.contact-copy ul { margin: 30px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; color: #e7faf6; font-size: .82rem; font-weight: 600; }
.contact-copy li { display: flex; align-items: center; gap: 9px; }
.contact-copy li .icon { width: 19px; height: 19px; padding: 3px; color: var(--brand); background: #ccfbf1; border-radius: 50%; stroke-width: 2.5; }
.demo-form { padding: 28px; color: var(--ink); background: #fff; border-radius: 20px; box-shadow: 0 18px 44px rgba(5, 36, 31, .16); }
.form-row { margin-bottom: 16px; }
.form-row label { margin-bottom: 6px; display: block; color: #294e46; font-size: .72rem; font-weight: 700; }
.form-row input { width: 100%; height: 48px; padding-inline: 13px; color: var(--ink); background: #fbfefd; border: 1px solid #b9d4ce; border-radius: 11px; transition: border-color .2s ease, box-shadow .2s ease; }
.form-row input:hover { border-color: #7baaa0; }
.form-row input:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px rgba(20, 184, 166, .16); }
.form-row input[aria-invalid="true"] { border-color: var(--error); }
/* El campo de texto libre comparte el aspecto de los demás: sólo cambia el alto y que crece. */
.form-row textarea { width: 100%; min-height: 84px; padding: 12px 13px; color: var(--ink); background: #fbfefd; border: 1px solid #b9d4ce; border-radius: 11px; font: inherit; resize: vertical; transition: border-color .2s ease, box-shadow .2s ease; }
.form-row textarea:hover { border-color: #7baaa0; }
.form-row textarea:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px rgba(20, 184, 166, .16); }
.form-row label .opcional { color: #7f9c95; font-weight: 500; text-transform: none; }
.button-form[disabled] { opacity: .6; cursor: default; }
.field-error { min-height: 16px; margin-top: 3px; display: block; color: var(--error); font-size: .63rem; }
.honeypot { position: absolute !important; left: -9999px !important; }
.consent { margin-block: 3px 18px; display: grid; grid-template-columns: 18px 1fr; gap: 9px; color: #54756d; font-size: .64rem; cursor: pointer; }
.consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--brand); }
.button-form { width: 100%; border: 0; }
.form-note { margin: 12px 0 0; color: #6d8982; font-size: .58rem; line-height: 1.5; text-align: center; }
.form-note a { color: var(--brand); font-weight: 700; }
.form-status { margin-top: 8px; color: var(--brand); font-size: .68rem; font-weight: 700; text-align: center; }

.site-footer { padding-top: 72px; color: #b4cec7; background: var(--dark); }
.footer-main { padding-bottom: 58px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.25fr; gap: 60px; }
.brand-footer { margin-bottom: 18px; color: #fff; }
.footer-main > div:first-child p { max-width: 330px; margin: 0; font-size: .75rem; }
.footer-main h2 { margin-bottom: 18px; color: #fff; font-size: .69rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-main > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-main a { color: #a8c5bd; font-size: .72rem; text-decoration: none; transition: color .2s ease; }
.footer-main a:hover { color: #5eead4; }
.footer-pending { margin-top: 4px; color: #69847d; font-size: .57rem; }
.footer-bottom { padding-block: 20px; display: flex; justify-content: space-between; border-top: 1px solid #1e3d36; color: #6f8e86; font-size: .63rem; }

/* --- Precios ------------------------------------------------------------------------------- */

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.pricing-card { display: flex; flex-direction: column; padding: 32px; background: #fff; border: 1px solid var(--border); border-radius: 20px; }
.pricing-card.featured { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.pricing-card h3 { margin: 0 0 14px; font-size: 1.1rem; }
.pricing-amount { margin: 0 0 6px; display: flex; align-items: baseline; gap: 6px; }
.pricing-amount strong { font-size: 2.3rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; color: var(--brand); }
.pricing-amount span { color: var(--muted); font-size: .85rem; font-weight: 600; }
.pricing-lead { margin: 0 0 20px; color: var(--ink); font-size: .9rem; font-weight: 600; }
.pricing-card ul { margin: 0 0 26px; padding: 0; list-style: none; display: grid; gap: 10px; }
.pricing-card li { position: relative; padding-left: 22px; color: var(--muted); font-size: .86rem; }
.pricing-card li::before { content: ""; position: absolute; left: 0; top: .52em; width: 9px; height: 9px; border-radius: 50%; background: var(--mint); }
.pricing-card .button { margin-top: auto; }
.button-ghost { background: transparent; color: var(--brand); box-shadow: none; }
.button-ghost:hover { background: var(--canvas-alt); }

.pricing-usage { margin-top: 22px; padding: clamp(28px, 3.4vw, 40px); background: #fff; border: 1px solid var(--border); border-radius: 24px; }
.pricing-usage > h3 { margin: 0 0 22px; font-size: 1.05rem; }
.pricing-usage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 54px); }
.pricing-usage h4 { margin: 0 0 14px; color: var(--brand); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.pricing-usage dl { margin: 0; display: grid; gap: 2px; }
.pricing-usage dl > div { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid #e3efec; }
.pricing-usage dt { color: var(--muted); font-size: .86rem; }
.pricing-usage dd { margin: 0; font-size: .95rem; font-weight: 700; white-space: nowrap; }
.pricing-note { margin: 14px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.pricing-legal { margin: 26px 0 0; padding-top: 18px; border-top: 1px solid #e3efec; color: #628078; font-size: .74rem; }

@media (max-width: 1024px) {
  .section { padding-block: 92px; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: .74rem; }
  .hero { min-height: auto; padding-top: 154px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 45px; }
  .hero h1 { font-size: clamp(2.8rem, 6vw, 4rem); }
  .demo-strip-inner { grid-template-columns: 1fr auto; }
  .demo-strip p { display: none; }
  .control-grid { gap: 50px; }
  .control-visual { padding: 30px; }
  .faq-grid { gap: 60px; }
  .dark-grid { gap: 70px; }
  .footer-main { gap: 35px; }
}

@media (max-width: 840px) {
  :root { --header-height: 66px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .site-header { top: 10px; }
  .header-inner { min-height: var(--header-height); padding: 8px 10px 8px 14px; border-radius: 16px; }
  .brand img { width: 39px; height: 39px; }
  .brand-word { font-size: 1rem; }
  .menu-button { display: inline-flex; }
  .site-nav { position: absolute; top: calc(100% + 8px); left: 18px; right: 18px; padding: 16px; display: none; align-items: stretch; flex-direction: column; gap: 4px; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg); }
  .site-nav.is-open { display: flex; }
  .site-nav a { min-height: 44px; padding: 11px 10px; display: flex; align-items: center; font-size: .85rem; }
  .site-nav .nav-access { padding-left: 10px; border-left: 0; }
  .site-nav .button { justify-content: center; color: #fff; }
  .hero { padding-top: 135px; padding-bottom: 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(100%, 600px); margin-inline: auto; }
  .product-window { transform: none; }
  .demo-strip-inner { grid-template-columns: 1fr; gap: 15px; }
  .demo-strip a { padding-left: 55px; }
  .problem-grid { grid-template-columns: 1fr; gap: 12px; }
  .steps { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .living-signal { left: 54px; right: auto; top: 60px; bottom: 60px; width: 1px; height: auto; }
  .living-signal::before { top: 0; left: -4px; }.living-signal::after { top: auto; bottom: 0; right: auto; left: -4px; }
  .living-signal span { top: 0; left: -5px; }
  .steps.in-view .living-signal span { animation-name: travel-vertical; }
  @keyframes travel-vertical { 0% { top: 0; opacity: 1; } 100% { top: calc(100% - 11px); opacity: 1; } }
  .split-heading { grid-template-columns: 1fr; gap: 15px; }
  .channel-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .channel-voice { grid-column: 1 / 3; grid-row: auto; min-height: 400px; }
  .dark-grid, .control-grid, .faq-grid, .trial-panel, .contact-panel { grid-template-columns: 1fr; }
  .dark-grid { gap: 65px; }
  .control-grid { gap: 55px; }
  .control-visual { order: 2; }
  .faq-intro { position: static; }
  .trial-panel { gap: 42px; }
  .sector-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-usage-grid { grid-template-columns: 1fr; }
  .sector-grid article { min-height: auto; }
  .sector-grid article > span { margin-bottom: 36px; }
  .contact-panel { gap: 42px; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding-block: 74px; }
  .brand-descriptor { display: none; }
  .hero { padding-top: 124px; padding-bottom: 66px; }
  .hero::before { background-size: 46px 46px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 3.5rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { align-items: flex-start; flex-direction: column; }
  .product-window { padding: 12px; border-radius: 20px; }
  .conversation-card { grid-template-columns: auto 1fr; }
  .sound-wave { display: none; }
  .action-grid { grid-template-columns: 1fr; }
  .human-control .control-link { display: none; }
  .signal-orbit-one { width: 110%; left: -5%; }
  .demo-strip a { padding-left: 0; }
  .problem-grid h2, .section-heading h2, .dark-copy h2, .control-copy h2, .faq-intro h2, .trial-copy h2, .contact-copy h2 { font-size: 2.08rem; }
  .section-heading { margin-bottom: 40px; }
  .step-card { padding: 24px; }
  .step-icon { margin-bottom: 35px; }
  .channel-bento { grid-template-columns: 1fr; }
  .channel-voice { grid-column: auto; min-height: 420px; }
  .channel-card { min-height: 250px; padding: 24px; }
  .voice-flow { gap: 5px; }
  .voice-flow span { font-size: .54rem; }
  .dark-grid { gap: 55px; }
  .control-visual { padding: 16px; }
  .control-panel-head { align-items: flex-start; gap: 10px; flex-direction: column; }
  .control-item small { max-width: 160px; }
  .sector-grid article { padding: 25px; }
  .faq-grid { gap: 45px; }
  .faq-list summary { font-size: .9rem; }
  .trial-section { padding-inline: 0; }
  .trial-panel { width: calc(100% - 20px); padding: 30px 19px; border-radius: 22px; }
  .trial-form, .trial-success { padding: 21px 18px; }
  .contact-section { padding-inline: 0; }
  .contact-panel { width: calc(100% - 20px); padding: 32px 20px; border-radius: 22px; }
  .demo-form { padding: 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 28px; }
  .footer-main > div:first-child { grid-column: 1 / 3; }
  .footer-main > div:last-child { grid-column: 1 / 3; }
  .footer-bottom { gap: 8px; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .living-signal span { display: none; }
}

@media print {
  .site-header, .demo-strip, .demo-form, .site-footer { display: none; }
  .section, .hero { min-height: 0; padding-block: 35px; }
  body, .dark-section, .channel-voice { color: #000; background: #fff; }
}

.legal-page { min-height: 100vh; padding: 60px 20px; display: block; background: var(--canvas); }
.legal-document { width: min(100%, 760px); min-width: 0; margin-inline: auto; padding: clamp(30px, 6vw, 58px); background: #fff; border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow-sm); overflow-wrap: anywhere; }
.legal-document .brand { margin-bottom: 52px; }
.legal-state { color: var(--error); font-size: .68rem; font-weight: 700; letter-spacing: .12em; }
.legal-state-neutral { color: var(--brand); }
.legal-document h1 { margin-bottom: 24px; font-size: clamp(2rem, 5vw, 3.3rem); line-height: 1.08; letter-spacing: -.04em; }
.legal-document p:not(.legal-state) { color: var(--muted); }
.legal-document .button { margin-top: 16px; }
.legal-lead { margin-bottom: 42px; font-size: 1.04rem; }
.legal-document h2 { margin: 44px 0 14px; padding-top: 30px; border-top: 1px solid var(--border); font-size: clamp(1.25rem, 3vw, 1.55rem); line-height: 1.25; }
.legal-document h3 { margin: 26px 0 8px; color: var(--brand); font-size: 1rem; }
.legal-document p, .legal-document li, .legal-document dd, .legal-document dt { font-size: .91rem; }
.legal-document ul { margin: 0 0 18px; padding-left: 22px; color: var(--muted); }
.legal-document li { margin-bottom: 9px; }
.legal-document a:not(.brand):not(.button) { color: var(--brand); font-weight: 600; }
.legal-data { margin: 22px 0 8px; padding: 22px; display: grid; grid-template-columns: 160px 1fr; gap: 9px 18px; background: var(--canvas); border: 1px solid var(--border); border-radius: 16px; }
.legal-data dt { color: var(--muted); }
.legal-data dd { margin: 0; color: var(--ink); font-weight: 600; overflow-wrap: anywhere; }
.legal-note { margin: 30px 0; padding: 18px 20px; color: #254d44; background: #e4f7f2; border-left: 4px solid var(--brand); border-radius: 0 12px 12px 0; font-size: .86rem; }
.legal-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 14px; }
.legal-table { width: 100%; border-collapse: collapse; min-width: 590px; }
.legal-table th, .legal-table td { padding: 14px; border-bottom: 1px solid var(--border); color: var(--muted); font-size: .78rem; text-align: left; vertical-align: top; }
.legal-table th { color: var(--ink); background: var(--canvas); font-weight: 700; }
.legal-table tr:last-child td { border-bottom: 0; }
.legal-nav { margin-top: 54px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 10px 22px; border-top: 1px solid var(--border); }
.legal-nav a { font-size: .75rem; }
.legal-document code { padding: 2px 6px; background: var(--canvas-alt); border-radius: 5px; font-size: .85em; }

@media (max-width: 560px) {
  .contact-direct { grid-template-columns: 1fr; }
  .legal-page { padding-inline: 10px; }
  .legal-document { padding-inline: 22px; }
  .legal-data { grid-template-columns: 1fr; gap: 2px; }
  .legal-data dt:not(:first-child) { margin-top: 10px; }
}
