@font-face {
  font-family: Pretendard;
  src: url('/assets/pretendard.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --ink: #183c32;
  --green: #28664e;
  --muted: #65746c;
  --cream: #f7f8f2;
  --line: #dfe6db;
  --gold: #f2cb67;
  --white: #fff;
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--ink);
  background: #fff;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #c38a13;
  outline-offset: 5px;
}
::selection {
  background: #ead891;
  color: #183c32;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wrap {
  max-width: 1280px;
  width: calc(100% - 112px);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 15px 25px;
  border-radius: 6px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fffef9f5;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e7e9df;
}
.nav-wrap {
  max-width: 1376px;
  width: calc(100% - 80px);
  height: 86px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 25px;
  font-weight: 830;
  letter-spacing: -1.2px;
}
.logo-dot {
  color: #538968;
}
.nav-wrap nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 570;
}
.nav-wrap nav > a:not(.nav-cta) {
  padding-block: 16px;
  transition: color 0.2s;
}
.nav-wrap nav > a:hover {
  color: #44825f;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: white;
  padding: 13px 19px;
  border-radius: 7px;
  margin-left: 14px;
}
.nav-wrap nav > .nav-cta:hover {
  color: #fff;
  background: #2d654d;
}
.nav-cta .icon {
  width: 17px;
}
.menu-toggle {
  display: none;
  padding: 10px;
  background: none;
  border: 0;
}
.hero {
  background: #f7f8f2;
  padding: 54px 0 42px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero:before,
.hero:after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 600px;
  height: 600px;
  border: 1px solid #e1e9da;
  border-radius: 50%;
  top: 120px;
  left: -470px;
  box-shadow:
    0 0 0 75px #f7f8f2,
    0 0 0 76px #e7ecdf,
    0 0 0 150px #f7f8f2,
    0 0 0 151px #edf0e6;
}
.hero:after {
  left: auto;
  right: -480px;
  top: 40px;
}
.hero-copy {
  text-align: center;
}
.eyebrow {
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 2.1px;
  line-height: 1.6;
  color: #47744f;
  display: block;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 1.9px;
}
.live-dot,
.source-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  background: #568363;
  box-shadow: 0 0 0 4px #e6eddc;
}
.hero h1 {
  font-size: 72px;
  line-height: 1.17;
  letter-spacing: -4.2px;
  font-weight: 770;
  margin-top: 27px;
}
.hero h1 > span {
  color: #3e7b52;
}
.lead {
  font-size: 19px;
  line-height: 1.85;
  color: #586e51;
  margin-top: 25px;
  letter-spacing: -0.4px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 31px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  min-height: 54px;
  padding: 15px 25px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 650;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 8px #183c3210;
}
.primary:hover {
  background: #2b674b;
}
.secondary {
  background: #fff;
  border: 1px solid #d8e0cf;
}
.secondary:hover {
  background: #edf1e6;
}
.platform-line {
  font-size: 11px;
  color: #586e51;
  letter-spacing: 0.7px;
  margin-top: 19px;
}
.product-stage {
  max-width: 1216px;
  position: relative;
  margin-top: 45px;
  scroll-margin-top: 96px;
}
.stage-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 1.2px;
  color: #586e51;
  padding: 0 5px 15px;
}
.stage-caption > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 0.3px;
  font-weight: 550;
}
.stage-caption i {
  width: 6px;
  height: 6px;
  background: #71976a;
  border-radius: 50%;
}
.hero-window {
  background: #153b33;
  padding: 7px;
  border-radius: 12px;
  box-shadow:
    0 24px 65px -23px #183c3259,
    0 3px 5px #183c3220;
  overflow: hidden;
}
.image-button {
  padding: 0;
  border: 0;
  background: transparent;
  display: block;
  position: relative;
  width: 100%;
  line-height: 0;
  text-align: left;
  cursor: zoom-in;
}
.image-button img {
  width: 100%;
}
.hero-window .image-button {
  aspect-ratio: 7/4;
  overflow: hidden;
  border-radius: 7px;
  background: #f4f6f1;
}
.hero-window img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.zoom-mark {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid #dbe4d7;
  background: #ffffffed;
  color: #3a6647;
  border-radius: 8px;
  box-shadow: 0 2px 8px #173f3515;
  opacity: 0;
  transition: opacity 0.2s;
}
.zoom-mark .icon {
  width: 17px;
  height: 17px;
}
.image-button:hover .zoom-mark,
.image-button:focus-visible .zoom-mark {
  opacity: 1;
}
.preview-tabs {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 26px auto 20px;
  flex-wrap: wrap;
}
.preview-tabs button {
  display: flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1px solid transparent;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 13px;
  color: #61735e;
  transition: background 0.2s;
}
.preview-tabs .icon {
  width: 18px;
  height: 18px;
}
.preview-tabs button:hover {
  background: #eaf0e0;
}
.preview-tabs button.active {
  color: #244e34;
  background: #fff;
  border-color: #d6e0cc;
  box-shadow: 0 2px 6px #173f3510;
  font-weight: 680;
}
.demo-note {
  text-align: center;
  font-size: 10px;
  line-height: 1.7;
  color: #71806b;
}
.demo-note + .demo-note {
  margin-top: 5px;
  font-size: 10px;
  color: #586e51;
}
#preview-caption {
  font-size: 12px;
  color: #485d40;
}
.connection {
  text-align: center;
  padding: 104px 0 96px;
}
.connection h2 {
  margin: 19px 0 22px;
  font-size: 42px;
  line-height: 1.32;
  letter-spacing: -1.7px;
  font-weight: 690;
}
.connection > p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}
.connection-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 49px;
}
.connection-flow > span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 550;
}
.connection-flow > span > .icon {
  color: #548557;
  width: 22px;
}
.connector {
  color: #b3c2a7;
  width: 17px;
}
.ai-section {
  padding: 99px 0 31px;
  background: #153f32;
  color: #fff;
  overflow: hidden;
}
.feature-split {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  align-items: center;
  gap: 76px;
}
.feature-copy .section-icon {
  margin-bottom: 24px;
}
.section-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #eaf0e2;
  border: 1px solid #dce7d1;
  border-radius: 12px;
  color: #497a48;
}
.section-icon .icon {
  width: 23px;
  height: 23px;
}
.ai-section .section-icon {
  background: #315b44;
  border-color: #4b7358;
  color: #dce8ba;
}
.feature-copy h2,
.section-heading h2,
.security-section h2 {
  font-size: 47px;
  line-height: 1.28;
  letter-spacing: -2px;
  font-weight: 700;
  margin-top: 16px;
}
.feature-copy h2 > span,
.section-heading h2 > span {
  color: #527d53;
}
.ai-section .eyebrow {
  color: #b8cb93;
}
.ai-section h2 > span {
  color: #d9e8a9;
}
.feature-copy > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.9;
  color: #586e51;
  letter-spacing: -0.2px;
  margin-top: 23px;
}
.ai-section .feature-copy > p:not(.eyebrow) {
  color: #b9ccbc;
}
.feature-list {
  list-style: none;
  margin: 32px 0 26px;
  padding: 0;
  display: grid;
  gap: 22px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  font-size: 13px;
  line-height: 1.8;
  color: #586e51;
}
.feature-list li > .icon {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: #5d8b4d;
}
.feature-list strong {
  display: block;
  color: #294d30;
  font-size: 14px;
  margin-bottom: 3px;
}
.ai-section .feature-list li {
  color: #b4c8b6;
}
.ai-section .feature-list strong {
  color: #f3f7df;
}
.ai-section .feature-list .icon {
  color: #bbd58c;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
  padding: 10px 0;
}
.text-link:hover {
  color: #589154;
}
.text-link .icon {
  width: 18px;
}
.ai-section .text-link {
  color: #deebb6;
}
.feature-visual {
  min-width: 0;
  position: relative;
}
.screen-card {
  border: 1px solid #d7e3cb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 55px -25px #213e3455;
  background: #fff;
}
.ai-visual {
  padding: 38px 0 0;
}
.ai-visual .screen-card {
  width: calc(100% + 45px);
  border: 7px solid #47705866;
  box-shadow: 0 30px 80px #0d2c2a50;
  border-radius: 15px;
}
.ai-visual .image-button img {
  border-radius: 8px;
}
.visual-label {
  font-size: 11px;
  letter-spacing: 0.7px;
  position: absolute;
  top: 9px;
  left: 0;
  color: #bfd2b1;
}
.floating-source {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f5f7ec;
  color: #355638;
  border: 1px solid #fff;
  border-radius: 10px;
  box-shadow: 0 7px 25px #0f2c262e;
  width: max-content;
  max-width: 100%;
  padding: 17px 24px;
  font-size: 13px;
  bottom: 22px;
  left: 30px;
}
.floating-source .source-dot {
  background: #719f5d;
  box-shadow: 0 0 0 4px #e7edd9;
}
.prompt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #496c4b;
  gap: 14px;
  margin-top: 60px;
  padding-top: 29px;
}
.prompt-row > span {
  font-size: 12px;
  color: #b3c8a9;
}
.prompt-row > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: #e4edda;
  background: #244e3d;
  border: 1px solid #42664a;
  padding: 15px 17px;
  border-radius: 8px;
}
.prompt-row > a:hover {
  background: #355e48;
}
.prompt-row .icon {
  width: 15px;
  height: 15px;
  color: #a7c092;
}
.section-note {
  font-size: 10px;
  line-height: 1.7;
  color: #bed0b4;
  margin-top: 26px;
}
.mail-section {
  background: #f8f7f0;
  padding: 119px 0 107px;
  overflow: hidden;
}
.reverse {
  grid-template-columns: 1.2fr 0.8fr;
}
.reverse .feature-copy {
  grid-column: 2;
}
.reverse .feature-visual {
  grid-column: 1;
  grid-row: 1;
}
.mail-section .section-icon {
  background: #edeedb;
  border-color: #e2e5ca;
}
.mail-visual .screen-card {
  width: calc(100% + 50px);
  margin-left: -45px;
  transform: rotate(-1.5deg);
  border: 7px solid #fff;
  box-shadow: 0 23px 70px -22px #5e704051;
}
.mail-stamp {
  position: absolute;
  top: -54px;
  left: 10px;
  z-index: 2;
  background: #fff;
  border: 1px solid #dde6cf;
  border-radius: 12px;
  box-shadow: 0 12px 26px #5d70451a;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 21px;
  transform: rotate(1deg);
}
.mail-stamp > .icon {
  width: 25px;
  height: 25px;
  color: #71884a;
}
.mail-stamp strong {
  display: block;
  font-size: 13px;
  margin-bottom: 7px;
}
.mail-stamp small {
  display: block;
  color: #586e51;
  font-size: 11px;
}
.stamp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7e975e;
  align-self: flex-start;
  margin-left: 12px;
  margin-top: 4px;
}
.visual-chips {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}
.visual-chips span {
  border: 1px solid #dce4cd;
  padding: 7px 14px;
  background: #fdfcf7;
  border-radius: 20px;
  color: #586e51;
  font-size: 11px;
}
.meeting-section {
  padding: 104px 0 110px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 47px;
}
.section-heading > p {
  color: #586e51;
  font-size: 15px;
  line-height: 1.95;
  flex-shrink: 0;
  padding-bottom: 4px;
}
.meeting-showcase {
  display: grid;
  grid-template-columns: 1fr 275px;
  background: #f2f5e9;
  border: 1px solid #e3e8d6;
  border-radius: 16px;
  padding: 28px;
  gap: 36px;
  align-items: center;
}
.meeting-showcase > .screen-card {
  border: 5px solid #fff;
  box-shadow: 0 16px 35px -22px #34492940;
  border-radius: 9px;
}
.meeting-note {
  padding: 0 2px 0 4px;
}
.meeting-note .section-icon {
  margin-bottom: 21px;
}
.meeting-note h3 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -1.2px;
  margin: 10px 0 29px;
  font-weight: 680;
}
.record-line {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 23px;
}
.record-line > .icon {
  width: 20px;
  color: #6c9154;
}
.record-line b {
  display: block;
  font-size: 13px;
  color: #526a41;
}
.record-line span {
  display: block;
  font-size: 11px;
  color: #586e51;
  margin-top: 7px;
}
.meeting-note > small {
  font-size: 10px;
  color: #586e51;
  line-height: 1.8;
  display: block;
  margin-top: 30px;
}
.more-section {
  background: #f7f8f3;
  padding: 100px 0;
}
.center-heading {
  text-align: center;
  margin-bottom: 47px;
}
.center-heading h2 {
  font-size: 42px;
  line-height: 1.32;
  letter-spacing: -1.6px;
  margin-top: 18px;
  font-weight: 700;
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.detail-card {
  border: 1px solid #e0e6d7;
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.detail-copy {
  padding: 31px 27px 27px;
}
.detail-copy > .icon {
  color: #729056;
  width: 25px;
  height: 25px;
  margin-bottom: 23px;
}
.detail-copy h3 {
  font-size: 21px;
  letter-spacing: -0.6px;
  font-weight: 670;
}
.detail-copy p {
  font-size: 13px;
  line-height: 1.85;
  color: #586e51;
  margin-top: 12px;
}
.detail-card .image-button {
  width: calc(100% - 30px);
  margin: 0 0 -1px 30px;
  border: 1px solid #e2e8d8;
  border-radius: 8px 0 0 0;
  box-shadow: -4px -2px 18px #4e624309;
  overflow: hidden;
}
.detail-card img {
  width: 620px;
  max-width: none;
  height: 360px;
  object-fit: cover;
  object-position: top left;
}
.security-section {
  padding: 111px 0 120px;
}
.security-section .feature-split {
  gap: 65px;
}
.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 22px;
  margin: 31px 0 18px;
}
.control-grid > div {
  border-left: 2px solid #d7e1c6;
  padding-left: 15px;
}
.control-grid h3 {
  font-size: 14px;
  font-weight: 650;
}
.control-grid p {
  font-size: 12px;
  line-height: 1.7;
  color: #586e51;
  margin-top: 7px;
}
.admin-visual {
  padding: 37px 0 25px 32px;
  background: #f3f5ea;
  border-radius: 18px;
}
.admin-visual .screen-card {
  width: calc(100% + 10px);
  border: 6px solid #fff;
  transform: rotate(1deg);
}
.control-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  margin-top: 27px;
  color: #586e51;
}
.control-caption .icon {
  width: 17px;
  height: 17px;
}
.devices-section {
  background: #f3f4e9;
  padding: 99px 0 104px;
  overflow: hidden;
}
.devices-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 105px;
  align-items: center;
}
.device-composition {
  position: relative;
  padding: 45px 0 85px;
  min-width: 0;
}
.laptop {
  border: 8px solid #294739;
  border-top: 20px solid #294739;
  border-radius: 13px 13px 5px 5px;
  position: relative;
  box-shadow: 0 25px 50px -20px #46553744;
}
.laptop-camera {
  position: absolute;
  width: 4px;
  height: 4px;
  top: -12px;
  left: 50%;
  background: #b7c2a7;
  border-radius: 50%;
}
.laptop-base {
  height: 12px;
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -19px;
  background: #9daaa0;
  border-radius: 2px 2px 50% 50%;
  box-shadow: 0 6px 7px #4a614326;
}
.laptop-base:after {
  content: '';
  height: 4px;
  width: 16%;
  background: #6b8475;
  position: absolute;
  left: 42%;
  top: 0;
  border-radius: 0 0 4px 4px;
}
.phone {
  position: absolute;
  right: -26px;
  bottom: 32px;
  width: 25%;
  border: 6px solid #294739;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 35px #1f3f3426;
  background: #173c32;
}
.phone img {
  border-radius: 20px;
}
.download-panel {
  background: #fff;
  border: 1px solid #dce4d2;
  border-radius: 13px;
  padding: 27px 28px;
}
.download-panel h3 {
  font-size: 18px;
  letter-spacing: -0.5px;
  margin-bottom: 9px;
}
.download-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #edf0e5;
}
.download-link > svg:first-child {
  color: #708a56;
  width: 22px;
}
.download-link > svg:last-child {
  margin-left: auto;
  color: #708a56;
  width: 18px;
}
.download-link b {
  font-size: 14px;
  font-weight: 630;
}
.download-link small {
  display: block;
  font-size: 11px;
  color: #586e51;
  margin-top: 5px;
}
.download-link:hover b,
.mac-download a:hover {
  color: #518349;
}
.mac-download {
  padding: 17px 0;
  border-bottom: 1px solid #edf0e5;
}
.mac-download > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}
.mac-download > div:first-child > .icon {
  color: #708a56;
}
.mac-download > div:last-child {
  display: flex;
  gap: 8px;
  padding: 12px 0 0 35px;
}
.mac-download a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  padding: 8px;
  border: 1px solid #e3e8da;
  border-radius: 5px;
}
.mac-download a > .icon {
  width: 13px;
  height: 13px;
}
.download-panel > .text-link {
  font-size: 11px;
  margin-top: 15px;
  color: #657e50;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 105px;
  padding: 99px 0 100px;
}
.faq-section h2 {
  font-size: 36px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -1.3px;
  margin-top: 18px;
}
.faq-list details {
  border-bottom: 1px solid #e2e8d9;
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 550;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > .icon {
  width: 18px;
  color: #7b8f68;
}
.faq-list details[open] summary > .icon {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 14px;
  line-height: 1.9;
  color: #6d7c63;
  padding: 0 33px 25px 0;
}
.closing {
  background: #153f32;
  color: #fff;
  padding: 80px 0 85px;
  overflow: hidden;
  position: relative;
}
.closing .wrap {
  position: relative;
}
.closing .eyebrow {
  color: #c5d4a0;
}
.closing h2 {
  font-size: 48px;
  font-weight: 670;
  letter-spacing: -1.9px;
  line-height: 1.3;
  margin: 21px 0 30px;
}
.light {
  background: #e8edbf;
  color: #25492e;
}
.light:hover {
  background: #f3f5d3;
}
.closing-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 25px;
  color: #d1dfb5;
  font-size: 13px;
  padding: 15px 0;
}
.closing-download .icon {
  width: 16px;
}
.closing-watermark {
  position: absolute;
  right: -20px;
  bottom: 9px;
  font-size: 125px;
  letter-spacing: -9px;
  font-weight: 900;
  color: #91ac89;
  transform: rotate(-8deg);
  pointer-events: none;
}
.site-footer {
  padding-top: 48px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.site-footer .logo {
  font-size: 23px;
}
.site-footer p {
  font-size: 12px;
  color: #586e51;
  margin-top: 15px;
}
.site-footer small {
  display: block;
  font-size: 10px;
  color: #64745c;
  margin-top: 24px;
}
.site-footer nav {
  display: flex;
  gap: 27px;
  padding-top: 13px;
  font-size: 12px;
  color: #5a6f4e;
}
.site-footer nav a:hover {
  text-decoration: underline;
}
.site-footer .footer-note {
  width: 100%;
  border-top: 1px solid #e8edde;
  padding-top: 20px;
  margin-top: 8px;
  font-size: 10px;
  color: #586e51;
}
.preview-open {
  overflow: hidden;
}
dialog {
  border: 1px solid #dce6d3;
  border-radius: 14px;
  padding: 0;
  background: #f7f9f1;
  max-width: min(1400px, 94vw);
  width: max-content;
  max-height: 94dvh;
  box-shadow: 0 20px 100px #102f2b55;
  color: var(--ink);
}
dialog::backdrop {
  background: #102923d9;
  backdrop-filter: blur(6px);
}
.dialog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 13px 20px;
  position: sticky;
  top: 0;
  background: #f7f9f1;
  z-index: 1;
  border-bottom: 1px solid #d9e5d0;
}
.dialog-toolbar p {
  font-size: 13px;
  line-height: 1.5;
}
.dialog-toolbar button {
  display: grid;
  place-items: center;
  border: 0;
  background: #e8eedf;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}
.dialog-toolbar button:hover {
  background: #d9e5c9;
}
#dialog-image {
  max-height: calc(90dvh - 108px);
  width: auto;
  object-fit: contain;
  margin: auto;
}
.dialog-note {
  text-align: center;
  font-size: 10px;
  padding: 13px;
  color: #728669;
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 86px;
  }
}
@media (max-width: 1199px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .nav-wrap {
    width: calc(100% - 48px);
  }
  .nav-wrap nav {
    gap: 21px;
    font-size: 13px;
  }
  .nav-cta {
    margin-left: 0;
    font-size: 12px;
    padding: 12px;
  }
  .logo {
    font-size: 23px;
  }
  .hero h1 {
    font-size: 70px;
  }
  .feature-split {
    gap: 45px;
    grid-template-columns: 0.85fr 1.1fr;
  }
  .reverse {
    grid-template-columns: 1.1fr 0.85fr;
  }
  .feature-copy h2,
  .section-heading h2 {
    font-size: 39px;
  }
  .feature-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .feature-list li {
    font-size: 12px;
  }
  .ai-visual .screen-card {
    width: calc(100% + 20px);
  }
  .mail-visual .screen-card {
    margin-left: -20px;
    width: calc(100% + 20px);
  }
  .prompt-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }
  .prompt-row > span {
    width: 100%;
  }
  .prompt-row > a {
    font-size: 11px;
    padding: 12px;
  }
  .meeting-showcase {
    grid-template-columns: 1fr 220px;
    gap: 25px;
    padding: 22px;
  }
  .meeting-note h3 {
    font-size: 29px;
  }
  .record-line {
    margin-top: 18px;
  }
  .more-grid {
    gap: 15px;
  }
  .detail-copy {
    padding: 25px 20px;
  }
  .detail-copy h3 {
    font-size: 18px;
  }
  .detail-copy p {
    font-size: 12px;
  }
  .detail-card img {
    width: 550px;
    height: 330px;
  }
  .security-section .feature-split {
    gap: 40px;
  }
  .devices-layout {
    gap: 60px;
    grid-template-columns: 1.1fr 0.8fr;
  }
  .download-panel {
    padding: 23px;
  }
  .faq-section {
    gap: 60px;
  }
  .closing-watermark {
    font-size: 105px;
    right: 0;
    bottom: 20px;
  }
  .connection-flow {
    gap: 18px;
  }
  .connection-flow > span {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .nav-wrap {
    height: 72px;
  }
  .nav-wrap nav {
    display: none;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    background: #fffef9;
    border-bottom: 1px solid #dbe4cf;
    box-shadow: 0 15px 30px #173f3510;
    padding: 20px 30px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-wrap nav.is-open {
    display: flex;
  }
  .nav-wrap nav > a:not(.nav-cta) {
    padding: 15px;
  }
  .nav-wrap nav > .nav-cta {
    justify-content: center;
    margin-top: 10px;
  }
  .hero {
    padding-top: 63px;
  }
  .hero h1 {
    font-size: 63px;
  }
  .hero-copy .lead {
    font-size: 17px;
  }
  .feature-split,
  .reverse {
    grid-template-columns: 1fr;
    gap: 47px;
  }
  .feature-copy {
    max-width: 620px;
  }
  .feature-copy h2,
  .section-heading h2 {
    font-size: 43px;
  }
  .feature-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .feature-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .feature-list li {
    font-size: 11px;
  }
  .feature-list strong {
    font-size: 13px;
  }
  .reverse .feature-copy,
  .reverse .feature-visual {
    grid-row: auto;
    grid-column: auto;
  }
  .ai-section {
    padding-top: 73px;
  }
  .ai-visual {
    padding-top: 29px;
  }
  .ai-visual .screen-card {
    width: 100%;
    border-width: 6px;
  }
  .ai-visual .floating-source {
    left: 25px;
  }
  .prompt-row {
    margin-top: 23px;
  }
  .mail-section {
    padding: 75px 0;
  }
  .mail-visual {
    margin-top: 35px;
  }
  .mail-visual .screen-card {
    width: 100%;
    margin-left: 0;
    transform: none;
  }
  .mail-stamp {
    top: -47px;
    left: 25px;
  }
  .connection-flow {
    gap: 12px;
  }
  .connection-flow > span {
    font-size: 11px;
    gap: 8px;
  }
  .connection-flow > .connector {
    width: 12px;
  }
  .connection-flow > span > .icon {
    width: 19px;
  }
  .connection h2 {
    font-size: 37px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .section-heading > p {
    font-size: 14px;
  }
  .meeting-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .meeting-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px 25px;
    padding: 7px 12px;
  }
  .meeting-note > .section-icon {
    grid-row: 1/3;
    margin: 0;
    width: 50px;
    height: 50px;
  }
  .meeting-note h3 {
    grid-column: 2;
    margin: 0;
    font-size: 27px;
  }
  .meeting-note h3 br {
    display: none;
  }
  .meeting-note .eyebrow {
    align-self: end;
  }
  .record-line {
    grid-column: 1/-1;
    margin-top: 10px;
  }
  .meeting-note > small {
    grid-column: 1/-1;
    margin-top: 10px;
  }
  .more-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .detail-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 265px;
  }
  .detail-copy {
    padding: 35px 27px;
  }
  .detail-copy h3 {
    font-size: 22px;
  }
  .detail-copy p {
    font-size: 13px;
  }
  .detail-card .image-button {
    margin: 25px 0 0 0;
    width: 100%;
    align-self: end;
  }
  .detail-card img {
    height: 280px;
    width: 600px;
  }
  .security-section {
    padding: 80px 0;
  }
  .admin-visual {
    padding: 25px 22px;
  }
  .admin-visual .screen-card {
    width: 100%;
    transform: none;
  }
  .control-grid {
    max-width: 500px;
  }
  .devices-layout {
    gap: 45px;
    grid-template-columns: 1.1fr 0.9fr;
  }
  .devices-section {
    padding: 75px 0;
  }
  .download-panel {
    padding: 22px 18px;
  }
  .download-panel h3 {
    font-size: 16px;
  }
  .download-link {
    gap: 10px;
  }
  .mac-download > div:last-child {
    padding-left: 0;
  }
  .device-composition {
    padding: 45px 0 40px;
  }
  .phone {
    width: 32%;
    right: -15px;
    bottom: -10px;
    border-width: 4px;
    border-radius: 20px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 75px 0;
  }
  .faq-section h2 {
    font-size: 32px;
  }
  .faq-section h2 br {
    display: none;
  }
  .closing-watermark {
    font-size: 72px;
    right: -20px;
    bottom: 30px;
    opacity: 1;
  }
  .closing h2 {
    font-size: 42px;
  }
  .site-footer nav {
    gap: 19px;
  }
  .site-footer {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 85px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-wrap {
    width: calc(100% - 36px);
    height: 66px;
  }
  .nav-wrap nav {
    top: 65px;
  }
  .logo {
    font-size: 22px;
    gap: 9px;
  }
  .logo img {
    width: 31px;
    height: 31px;
  }
  .hero {
    padding: 49px 0 30px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1.3px;
  }
  .hero h1 {
    font-size: 47px;
    line-height: 1.22;
    letter-spacing: -2.6px;
    margin-top: 22px;
  }
  .hero-copy .lead {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 20px;
    letter-spacing: -0.3px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 8px;
    margin-top: 25px;
  }
  .button {
    font-size: 12px;
    min-height: 48px;
    padding: 13px 17px;
    gap: 12px;
  }
  .button .icon {
    width: 17px;
    height: 17px;
  }
  .platform-line {
    font-size: 9px;
    letter-spacing: 0.1px;
    margin-top: 17px;
  }
  .product-stage {
    width: calc(100% - 24px);
    margin-top: 38px;
    scroll-margin-top: 86px;
  }
  .stage-caption {
    font-size: 9px;
    letter-spacing: 0.1px;
    padding: 0 3px 10px;
  }
  .stage-caption > span:last-child {
    display: none;
  }
  .hero-window {
    padding: 3px;
    border-radius: 8px;
    box-shadow: 0 17px 30px -15px #183c3250;
  }
  .hero-window .image-button {
    border-radius: 5px;
  }
  .preview-tabs {
    gap: 5px;
    margin: 18px 4px 12px;
  }
  .preview-tabs button {
    padding: 9px 9px;
    font-size: 10px;
    gap: 5px;
    border-radius: 6px;
  }
  .preview-tabs .icon {
    width: 15px;
    height: 15px;
  }
  .demo-note {
    font-size: 9px;
    padding: 0 5px;
  }
  .demo-note + .demo-note {
    font-size: 9px;
    max-width: 340px;
    margin: 6px auto 0;
  }
  #preview-caption {
    font-size: 11px;
  }
  .zoom-mark {
    opacity: 1;
    width: 28px;
    height: 28px;
    bottom: 8px;
    right: 8px;
    border-radius: 6px;
  }
  .zoom-mark .icon {
    width: 15px;
    height: 15px;
  }
  .connection {
    padding: 65px 0;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  .connection h2,
  .center-heading h2 {
    font-size: 29px;
    line-height: 1.4;
    letter-spacing: -1.1px;
  }
  .connection h2 {
    margin: 15px 0 20px;
  }
  .connection > p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.9;
  }
  .connection-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px 15px;
    margin-top: 32px;
    padding: 0 6px;
  }
  .connection-flow > span {
    font-size: 12px;
    justify-content: center;
  }
  .connection-flow > .connector {
    display: none;
  }
  .feature-copy h2,
  .section-heading h2 {
    font-size: 33px;
    letter-spacing: -1.35px;
    line-height: 1.32;
    margin-top: 13px;
  }
  .feature-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 18px;
  }
  .feature-copy .section-icon {
    margin-bottom: 19px;
  }
  .section-icon {
    width: 39px;
    height: 39px;
    border-radius: 10px;
  }
  .section-icon .icon {
    width: 21px;
  }
  .feature-list {
    grid-template-columns: 1fr;
    gap: 19px;
    margin: 27px 0 20px;
  }
  .feature-list li {
    font-size: 12px;
  }
  .feature-list strong {
    font-size: 13px;
  }
  .text-link {
    font-size: 12px;
  }
  .feature-split {
    gap: 25px;
  }
  .ai-section {
    padding-top: 56px;
  }
  .ai-visual .screen-card {
    border-width: 4px;
    border-radius: 10px;
  }
  .visual-label {
    font-size: 10px;
  }
  .floating-source {
    left: 12px !important;
    padding: 13px 16px;
    font-size: 11px;
    bottom: 16px;
  }
  .prompt-row {
    margin-top: 13px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 24px;
  }
  .prompt-row > span {
    font-size: 11px;
    margin-bottom: 2px;
  }
  .prompt-row > a {
    font-size: 11px;
    padding: 13px 15px;
  }
  .section-note {
    font-size: 9px;
    line-height: 1.9;
    margin-top: 21px;
  }
  .mail-section {
    padding: 58px 0 51px;
  }
  .mail-visual {
    margin-top: 38px;
  }
  .mail-visual .screen-card {
    border-width: 4px;
  }
  .mail-stamp {
    padding: 12px 15px;
    gap: 10px;
    top: -38px;
    left: 12px;
    border-radius: 9px;
  }
  .mail-stamp > .icon {
    width: 20px;
  }
  .mail-stamp strong {
    font-size: 11px;
    margin-bottom: 5px;
  }
  .mail-stamp small {
    font-size: 9px;
  }
  .visual-chips {
    gap: 6px;
    margin-top: 20px;
  }
  .visual-chips span {
    font-size: 9px;
    padding: 6px 10px;
  }
  .meeting-section {
    padding: 61px 0;
  }
  .section-heading {
    margin-bottom: 28px;
    gap: 17px;
  }
  .section-heading > p {
    font-size: 13px;
    line-height: 1.8;
  }
  .meeting-showcase {
    border-radius: 12px;
    padding: 12px;
    gap: 16px;
  }
  .meeting-showcase > .screen-card {
    border-width: 3px;
  }
  .meeting-note {
    padding: 10px 10px 14px;
    column-gap: 16px;
  }
  .meeting-note > .section-icon {
    width: 42px;
    height: 42px;
  }
  .meeting-note h3 {
    font-size: 24px;
  }
  .meeting-note .eyebrow {
    font-size: 9px;
  }
  .record-line {
    margin-top: 9px;
    gap: 12px;
  }
  .record-line b {
    font-size: 12px;
  }
  .record-line span {
    font-size: 11px;
  }
  .meeting-note > small {
    font-size: 9px;
  }
  .more-section {
    padding: 59px 0;
  }
  .center-heading {
    margin-bottom: 29px;
  }
  .center-heading h2 {
    margin-top: 14px;
  }
  .detail-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 11px;
  }
  .detail-copy {
    padding: 26px;
  }
  .detail-copy > .icon {
    width: 23px;
    height: 23px;
    margin-bottom: 17px;
  }
  .detail-copy h3 {
    font-size: 20px;
  }
  .detail-copy p {
    font-size: 12px;
  }
  .detail-card .image-button {
    width: calc(100% - 24px);
    margin: 0 0 0 24px;
  }
  .detail-card img {
    height: 278px;
    width: 510px;
  }
  .security-section {
    padding: 61px 0;
  }
  .security-section .feature-split {
    gap: 29px;
  }
  .control-grid {
    gap: 25px 13px;
    margin-top: 26px;
  }
  .control-grid > div {
    padding-left: 12px;
  }
  .control-grid h3 {
    font-size: 13px;
  }
  .control-grid p {
    font-size: 11px;
  }
  .admin-visual {
    padding: 18px 14px;
  }
  .admin-visual .screen-card {
    border-width: 4px;
  }
  .control-caption {
    font-size: 10px;
    margin-top: 17px;
  }
  .devices-section {
    padding: 57px 0;
  }
  .devices-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .device-composition {
    padding: 15px 10px 57px 0;
  }
  .phone {
    width: 27%;
    right: 0;
    bottom: 20px;
    border-width: 4px;
    border-radius: 20px;
  }
  .laptop {
    border-width: 5px;
    border-top-width: 16px;
    border-radius: 9px 9px 3px 3px;
  }
  .laptop-camera {
    top: -10px;
    width: 3px;
    height: 3px;
  }
  .laptop-base {
    height: 8px;
    bottom: -13px;
    left: -3%;
    right: -3%;
  }
  .download-panel {
    padding: 23px;
  }
  .download-panel h3 {
    font-size: 18px;
  }
  .download-link {
    padding: 17px 0;
  }
  .mac-download > div:last-child {
    padding-left: 35px;
  }
  .mac-download a {
    font-size: 11px;
  }
  .download-panel > .text-link {
    margin-top: 13px;
  }
  .faq-section {
    padding: 58px 0;
    gap: 20px;
  }
  .faq-section h2 {
    font-size: 29px;
  }
  .faq-list summary {
    font-size: 13px;
    line-height: 1.7;
    padding: 21px 0;
    gap: 15px;
  }
  .faq-list summary > .icon {
    width: 16px;
    height: 16px;
  }
  .faq-list details > p {
    font-size: 12px;
    line-height: 1.9;
    padding-right: 12px;
  }
  .closing {
    padding: 54px 0 57px;
  }
  .closing h2 {
    font-size: 33px;
    line-height: 1.37;
    letter-spacing: -1.2px;
    margin: 18px 0 25px;
  }
  .closing-watermark {
    display: none;
  }
  .closing-download {
    font-size: 11px;
    margin-left: 16px;
    gap: 8px;
  }
  .site-footer {
    padding-top: 33px;
    padding-bottom: 25px;
    gap: 26px;
  }
  .site-footer .logo {
    font-size: 22px;
  }
  .site-footer nav {
    flex-wrap: wrap;
    gap: 20px;
    font-size: 11px;
    padding-top: 0;
  }
  .site-footer p {
    font-size: 11px;
  }
  .site-footer small {
    font-size: 9px;
    margin-top: 18px;
  }
  .site-footer .footer-note {
    font-size: 9px;
    margin-top: 0;
    padding-top: 17px;
  }
  dialog {
    max-width: 96vw;
    border-radius: 10px;
  }
  .dialog-toolbar {
    padding: 10px 13px;
    gap: 10px;
  }
  .dialog-toolbar p {
    font-size: 11px;
  }
  .dialog-toolbar button {
    width: 33px;
    height: 33px;
  }
  .dialog-note {
    font-size: 9px;
  }
  #dialog-image {
    max-width: 100%;
    max-height: calc(94dvh - 120px);
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 41px;
  }
  .hero-copy .lead {
    font-size: 13px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 12px 13px;
    gap: 8px;
  }
  .preview-tabs button {
    font-size: 9px;
    padding: 8px;
  }
  .preview-tabs .icon {
    width: 13px;
  }
  .feature-copy h2,
  .section-heading h2 {
    font-size: 30px;
  }
  .closing h2 {
    font-size: 30px;
  }
  .mac-download > div:last-child {
    padding-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .site-header,
  .hero-actions,
  .prompt-row,
  .download-panel,
  .closing,
  .site-footer nav,
  .zoom-mark,
  .preview-tabs {
    display: none;
  }
  .wrap {
    width: 100%;
  }
  .hero,
  .connection,
  .ai-section,
  .mail-section,
  .meeting-section,
  .more-section,
  .security-section,
  .devices-section,
  .faq-section {
    padding: 25px 0;
  }
  .ai-section {
    background: #fff;
    color: #183c32;
  }
  .ai-section p,
  .ai-section .feature-copy > p:not(.eyebrow),
  .ai-section .feature-list li,
  .ai-section .feature-list strong,
  .ai-section h2 > span {
    color: #183c32;
  }
  .image-button {
    break-inside: avoid;
  }
  h2,
  h3 {
    break-after: avoid;
  }
}
