/* Site design tokens, shared by the homepage, product pages and legal pages. */
:root {
  --ink:#101114;
  --muted:#62656b;
  --paper:#fafafa;
  --line:#dedfe3;
  --dark:#080a0e;
  --dark-muted:#a6a9b2;
  --max-width:1240px;
  --gutter:48px;
  --section-space:108px;
  --radius:18px;
  --ease:cubic-bezier(.22,1,.36,1)
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:88px
}
body {
  margin:0;
  background:var(--dark);
  color:var(--ink);
  font-family:Inter,Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased
}
a {
  color:inherit;
  text-decoration:none
}
button,input,textarea {
  font:inherit
}
button,a,input,textarea,summary {
  -webkit-tap-highlight-color:transparent
}
a:focus-visible,button:focus-visible,summary:focus-visible {
  outline:3px solid #808bdb;
  outline-offset:6px
}
button {
  cursor:pointer
}
img {
  max-width:100%;
  display:block
}
h1,h2,h3,p {
  margin:0
}
h1,h2,h3 {
  font-weight:600;
  letter-spacing:-.055em
}
p {
  line-height:1.6
}
h2 {
  font-size:clamp(36px,4.1vw,58px);
  line-height:1.06;
  white-space:pre-line
}
h3 {
  letter-spacing:-.035em
}
.container {
  width:min(var(--max-width),calc(100% - var(--gutter)*2));
  margin-inline:auto
}
.dark-section {
  background:var(--dark);
  color:#f6f6f8
}
.light-section {
  background:var(--paper)
}
.eyebrow {
  display:block;
  font-size:10px;
  font-weight:500;
  letter-spacing:.14em;
  line-height:1.5;
  color:var(--muted);
  text-transform:uppercase;
  margin-bottom:22px
}
.dark-section .eyebrow {
  color:#a6a9b2
}
.section-header {
  max-width:720px
}
.section-heading-row {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:28px;
  margin-bottom:48px
}
.section-aside {
  font-size:13px;
  color:var(--muted);
  max-width:230px;
  padding-bottom:5px
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  min-height:48px;
  padding:14px 24px;
  border:1px solid transparent;
  border-radius:100px;
  background:#fafafa;
  color:#151619;
  font-size:12px;
  font-weight:600;
  line-height:1.4;
  transition:background .2s,transform .2s;
  white-space:nowrap
}
.button:hover {
  background:#dedee4;
  transform:translateY(-2px)
}
.button-outline {
  background:#191c22;
  color:#fafafa;
  border-color:#303239
}
.button-outline:hover {
  background:#292c33
}
.button-small {
  min-height:39px;
  font-size:11px;
  padding:10px 19px
}
.skip-link {
  position:fixed;
  left:20px;
  top:-100px;
  background:#fff;
  color:#000;
  padding:15px;
  z-index:100
}
.skip-link:focus {
  top:10px
}
/* Header */
.site-header {
  position:fixed;
  inset:0 0 auto;
  z-index:20;
  border-bottom:1px solid #ffffff0d;
  background:rgba(8,10,14,.9);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px)
}
.header-inner {
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px
}
.brand {
  display:inline-flex;
  align-items:center;
  flex-shrink:0
}
.brand img {
  width:132px;
  height:auto;
  filter:grayscale(1) brightness(0) invert(1)
}
.nav {
  display:flex;
  align-items:center;
  gap:30px;
  margin-left:auto;
  margin-right:40px
}
.nav a {
  font-size:12px;
  color:#c4c5cb;
  transition:color .2s
}
.nav a:hover,.nav a.active {
  color:#fff
}
.header-actions {
  display:flex;
  align-items:center;
  gap:20px
}
.lang-toggle {
  border:0;
  background:none;
  padding:10px 0;
  color:#b9bbc3;
  font-size:11px;
  font-weight:600;
  min-width:28px;
  min-height:40px
}
.menu-button {
  display:none;
  width:40px;
  height:40px;
  border:1px solid #34363c;
  border-radius:50%;
  background:none;
  color:white;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px
}
.menu-button span {
  display:block;
  width:15px;
  height:1px;
  background:currentColor;
  transition:transform .2s
}
.menu-button[aria-expanded=true] span:first-child {
  transform:translateY(3px) rotate(45deg)
}
.menu-button[aria-expanded=true] span:last-child {
  transform:translateY(-3px) rotate(-45deg)
}
/* Hero: DeviceMockup and MetricItem */
.hero {
  position:relative;
  overflow:hidden;
  padding-top:88px;
  background:radial-gradient(ellipse at 80% 60%,#121a2c 0,transparent 48%),#080a0e
}
.hero-grid {
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  align-items:center;
  min-height:675px;
  position:relative;
  gap:30px
}
.hero-content {
  padding:65px 0 72px;
  position:relative;
  z-index:3
}
.hero .eyebrow {
  font-size:9px;
  letter-spacing:.14em;
  margin-bottom:24px
}
.hero h1 {
  font-size:clamp(66px,7.7vw,111px);
  line-height:.99;
  letter-spacing:-.07em;
  white-space:pre-line;
  font-weight:600
}
.hero-copy {
  font-size:15px;
  max-width:375px;
  color:#b9bcc5;
  line-height:1.65;
  margin-top:28px
}
.hero-actions {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:29px
}
.hero-metrics {
  display:flex;
  gap:32px;
  margin-top:51px
}
.metric-item {
  display:flex;
  flex-direction:column;
  gap:7px
}
.metric-item strong {
  font-size:16px;
  letter-spacing:-.03em;
  font-weight:500
}
.metric-item span {
  font-size:10px;
  color:#a0a5b0
}
.hero-art {
  height:560px;
  position:relative;
  perspective:1300px;
  margin-right:-55px;
  isolation:isolate
}
.hero-art::before {
  content:"";
  position:absolute;
  inset:10% -10% 0 0;
  background:radial-gradient(ellipse,#364a8536 0,#445b8112 40%,transparent 68%);
  filter:blur(35px);
  z-index:-1
}
.device-mockup {
  position:relative;
  width:220px;
  aspect-ratio: .468;
  padding:5px;
  border-radius:35px;
  border:1px solid #92949c;
  background:linear-gradient(120deg,#626671,#101217 12%,#363a44 50%,#898c94 80%,#0e0f12);
  box-shadow:12px 20px 35px #0006,inset 0 0 0 2px #23252a;
  flex-shrink:0
}
.device-screen {
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
  border-radius:29px;
  background:#05070d
}
.device-screen img {
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  max-width:none
}
.hero-art .device-mockup {
  position:absolute;
  width:39%;
  max-width:250px;
  will-change:transform
}
.hero-art .device-parai {
  left:0;
  top:91px;
  transform:rotate(-12deg) rotateY(8deg);
  z-index:2
}
.hero-art .device-aurapen {
  left:31%;
  top:5px;
  transform:rotate(7deg) rotateY(-8deg);
  z-index:3;
  box-shadow:12px 28px 48px #0008,0 0 40px #677ad01c
}
.hero-art .device-talemoon {
  left:61%;
  top:113px;
  transform:rotate(16deg) rotateY(-12deg);
  z-index:1
}
.hero-orbit {
  position:absolute;
  left:-10%;
  right:-20%;
  height:100px;
  bottom:5px;
  border:1px solid #778eaa26;
  border-radius:50%;
  transform:rotate(-12deg);
  z-index:-1
}
.hero-art-caption {
  position:absolute;
  bottom:-14px;
  left:27%;
  right:0;
  display:flex;
  gap:30px;
  font-size:9px;
  color:#949aa8;
  letter-spacing:.04em
}
.hero-art-caption>span:first-child {
  color:#606775
}
.hero-bottom {
  height:62px;
  border-top:1px solid #ffffff14;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#a0a5b0;
  font-size:8px;
  letter-spacing:.14em
}
.hero-bottom a {
  display:flex;
  gap:18px;
  align-items:center
}
.hero-bottom a span:last-child {
  font-size:17px
}
/* ProductCard: large storytelling cards, then compact cards */
.products-section {
  padding:var(--section-space) 0
}
/* Brand / ecosystem */
.brand-section {
  padding:90px 0;
  overflow:hidden
}
.brand-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:65px
}
.brand-copy {
  margin-top:26px;
  max-width:430px;
  font-size:14px;
  line-height:1.75;
  color:#adb2bd
}
.text-link {
  display:inline-flex;
  gap:35px;
  border-bottom:1px solid #ffffff50;
  padding-bottom:10px;
  margin-top:32px;
  font-size:12px
}
.text-link:hover {
  border-color:#fff
}
.ecosystem {
  height:420px;
  position:relative
}
.ecosystem svg {
  width:115%;
  height:115%;
  position:absolute;
  inset:-7.5%
}
.orbit-app {
  position:absolute;
  border-radius:14px;
  box-shadow:0 5px 28px #0008;
  border:1px solid #fff3
}
.orbit-app-0 {
  left:14%;
  top:25%
}
.orbit-app-1 {
  right:15%;
  top:5%
}
.orbit-app-2 {
  right:15%;
  bottom:18%
}
.orbit-label {
  position:absolute;
  bottom:-10px;
  left:0;
  right:0;
  text-align:center;
  font-size:8px;
  letter-spacing:.15em;
  color:#979fae
}
/* CapabilityItem and technical architecture */
.capability-section {
  padding:var(--section-space) 0 100px
}
.capability-grid {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:30px;
  margin-top:55px
}
.capability-item {
  position:relative;
  padding-top:23px;
  border-top:1px solid var(--line)
}
.line-icon {
  display:block;
  flex-shrink:0
}
.item-number {
  position:absolute;
  right:0;
  top:26px;
  color:#858991;
  font-size:10px
}
.capability-item h3 {
  font-size:17px;
  letter-spacing:-.025em;
  margin-top:24px
}
.capability-item p {
  font-size:12px;
  color:var(--muted);
  margin-top:10px;
  line-height:1.65
}
.technology-section {
  background:#eceef1;
  padding:85px 0
}
.technology-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center
}
.technology-section h2 {
  font-size:clamp(34px,3.5vw,49px)
}
.tech-copy {
  max-width:385px;
  margin-top:24px;
  color:#60646d;
  font-size:13px;
  line-height:1.7
}
.technology-blocks {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px
}
.technology-item {
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:22px 17px;
  border:1px solid #d5d8e0;
  border-radius:12px;
  min-height:103px
}
.technology-item .line-icon {
  width:20px;
  height:20px
}
.technology-item h3 {
  font-size:12px;
  letter-spacing:-.02em;
  margin:2px 0 8px
}
.technology-item p {
  font-size:10px;
  color:#646976;
  line-height:1.5
}
/* Editorial brand statement */
.elegance-section {
  padding:112px 0 70px
}
.elegance-section h2 {
  font-size:clamp(37px,5vw,70px);
  letter-spacing:-.06em;
  line-height:1.16;
  max-width:1100px
}
.elegance-section h2 span {
  display:block
}
.elegance-section h2 span:last-child {
  color:#777b84
}
.elegance-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:39px;
  padding-bottom:47px;
  border-bottom:1px solid var(--line);
  gap:20px
}
.elegance-bottom p {
  font-size:12px;
  color:var(--muted);
  max-width:310px
}
.small-mark {
  font-size:48px;
  font-weight:600;
  letter-spacing:-.1em
}
/* ProcessStep / timeline */
.process-section {
  padding:30px 0 85px
}
.process-section h2 {
  font-size:40px
}
.process-timeline {
  padding:0;
  margin:48px 0 50px;
  list-style:none;
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr))
}
.process-step {
  position:relative;
  padding:0 20px 0 0
}
.process-step::before {
  content:"";
  position:absolute;
  left:0;
  top:18px;
  width:100%;
  height:1px;
  background:#d5d7dc
}
.process-step:last-child::before {
  display:none
}
.step-marker {
  position:relative;
  z-index:1;
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  border:1px solid #cbd0d7;
  background:var(--paper);
  border-radius:50%;
  font-size:10px;
  color:#616975;
  transition:background .4s,color .4s
}
.process-step.is-active .step-marker {
  background:#181b22;
  color:white;
  border-color:#181b22
}
.process-step h3 {
  font-size:16px;
  margin-top:22px;
  letter-spacing:-.03em
}
.process-step p {
  font-size:11px;
  color:var(--muted);
  max-width:145px;
  margin-top:10px
}
.faq-disclosure {
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  font-size:12px
}
.faq-disclosure>summary {
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  list-style:none;
  padding:24px 0;
  font-weight:500
}
.faq-disclosure>summary>span:last-child {
  font-size:20px
}
.faq-disclosure[open]>summary>span:last-child {
  transform:rotate(45deg)
}
summary::-webkit-details-marker {
  display:none
}
.faq-section {
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:40px;
  padding:25px 0 30px
}
.faq-section h2 {
  font-size:28px
}
.faq-art {
  display:none
}
.faq-list details {
  border-top:1px solid var(--line)
}
.faq-list summary {
  cursor:pointer;
  list-style:none;
  font-weight:500;
  padding:18px 0
}
.faq-list details p {
  font-size:12px;
  color:var(--muted);
  padding:0 0 20px
}
/* CTASection keeps the existing contact integration */
.cta-section {
  padding:100px 0 85px
}
.cta-grid {
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:110px
}
.cta-section h2 {
  font-size:clamp(45px,5.3vw,72px)
}
.cta-copy {
  font-size:14px;
  color:#aeb4bf;
  max-width:350px;
  margin-top:28px
}
.email-link {
  display:inline-flex;
  gap:35px;
  margin-top:36px;
  font-size:15px;
  border-bottom:1px solid #ffffff40;
  padding-bottom:12px
}
.contact-form {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px 18px
}
.contact-form label {
  display:flex;
  flex-direction:column;
  gap:10px;
  font-size:11px;
  color:#d4d6dc
}
.contact-form label:nth-child(3) {
  grid-column:1/-1
}
.contact-form input,.contact-form textarea {
  width:100%;
  min-width:0;
  border:1px solid #373a42;
  color:white;
  border-radius:8px;
  background:#ffffff05;
  padding:14px 15px;
  font-size:12px;
  outline:none;
  transition:border-color .2s
}
.contact-form input::placeholder,.contact-form textarea::placeholder {
  color:#8b919e
}
.contact-form input:focus,.contact-form textarea:focus {
  border-color:#a2afce;
  box-shadow:0 0 0 3px #a2afce20
}
.contact-form textarea {
  resize:vertical;
  min-height:110px
}
.contact-form .button {
  justify-self:start;
  grid-column:1/-1;
  min-width:160px
}
.form-status {
  font-size:12px;
  grid-column:1/-1;
  min-height:18px
}
.form-status.error {
  color:#ffadb3
}
.form-status.success {
  color:#a4e3b8
}
.button:disabled {
  opacity:.6;
  cursor:wait;
  transform:none
}
.footer {
  padding:0 0 30px
}
.footer-main {
  border-top:1px solid #ffffff20;
  padding:37px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px
}
.footer-main nav {
  display:flex;
  gap:23px;
  color:#b4b8c2;
  font-size:10px
}
.social-links {
  display:flex;
  gap:18px;
  color:#aeb4bf;
  font-size:10px
}
.footer a:hover {
  color:#fff
}
.footer-bottom {
  border-top:1px solid #ffffff10;
  padding-top:26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-size:9px;
  color:#9299a7
}
.footer-bottom nav {
  display:flex;
  gap:20px
}
.footer-bottom>a {
  font-size:20px;
  min-width:35px;
  text-align:center
}
/* Responsive: no horizontal carousel, full portfolio at every width */
@media(min-width:1500px) {
  .hero-grid {
    min-height:730px
  }
  .hero-art {
    height:585px
  }
}
@media(max-width:1100px) {
  :root {
    --gutter:32px;
    --section-space:85px
  }
  .nav {
    gap:20px;
    margin-right:20px
  }
  .hero h1 {
    font-size:82px
  }
  .hero-grid {
    min-height:640px;
    gap:10px
  }
  .hero-art {
    height:475px;
    margin-right:-15px
  }
  .hero-art .device-mockup {
    width:41%
  }
  .hero-art .device-parai {
    top:75px;
    left:-3%
  }
  .hero-art .device-aurapen {
    top:15px;
    left:27%
  }
  .hero-art .device-talemoon {
    top:115px;
    left:57%
  }
  .hero-copy {
    font-size:14px;
    max-width:330px
  }
  .hero-metrics {
    gap:20px
  }
  .hero-art-caption {
    left:12%;
    bottom:0;
    font-size:8px;
    gap:20px
  }
  .brand-grid,.technology-grid {
    gap:35px
  }
  .capability-grid {
    gap:22px
  }
  .technology-item {
    padding:20px 13px;
    gap:10px
  }
  .cta-grid {
    gap:55px
  }
  .footer-main {
    flex-wrap:wrap
  }
  .footer-main nav {
    margin-left:auto
  }
}
@media(max-width:800px) {
  :root {
    --gutter:26px;
    --section-space:70px
  }
  .header-inner {
    height:76px
  }
  .brand img {
    width:120px
  }
  .nav {
    display:none;
    position:absolute;
    top:76px;
    left:0;
    right:0;
    margin:0;
    padding:24px var(--gutter);
    background:#11141b;
    border-bottom:1px solid #30343c;
    flex-direction:column;
    align-items:stretch;
    gap:0
  }
  .nav.open {
    display:flex
  }
  .nav a {
    padding:16px 0;
    font-size:16px
  }
  .menu-button {
    display:flex
  }
  .header-actions {
    gap:14px
  }
  .hero {
    padding-top:76px
  }
  .hero-grid {
    grid-template-columns:1fr 1fr;
    min-height:570px
  }
  .hero h1 {
    font-size:64px
  }
  .hero .eyebrow {
    max-width:250px;
    font-size:8px
  }
  .hero-content {
    padding:52px 0
  }
  .hero-actions {
    gap:9px
  }
  .hero-actions .button {
    font-size:10px;
    padding:12px 16px;
    gap:13px;
    min-height:42px
  }
  .hero-metrics {
    flex-wrap:wrap;
    gap:20px;
    margin-top:34px
  }
  .metric-item strong {
    font-size:13px
  }
  .metric-item span {
    font-size:9px
  }
  .hero-art {
    height:400px;
    margin-right:0
  }
  .hero-art .device-mockup {
    padding:3px;
    border-radius:24px;
    width:48%
  }
  .hero-art .device-screen {
    border-radius:20px
  }
  .hero-art .device-parai {
    left:-3%;
    top:76px
  }
  .hero-art .device-aurapen {
    left:28%;
    top:25px
  }
  .hero-art .device-talemoon {
    left:61%;
    top:105px
  }
  .hero-art-caption {
    display:none
  }
  .hero-bottom {
    font-size:7px;
    height:53px
  }
  .brand-section {
    padding:65px 0
  }
  .brand-grid {
    grid-template-columns:1fr 1fr;
    gap:20px
  }
  .brand-grid h2 {
    font-size:36px
  }
  .brand-copy {
    font-size:12px
  }
  .ecosystem {
    height:310px
  }
  .orbit-app {
    width:38px;
    height:38px;
    border-radius:10px
  }
  .orbit-label {
    font-size:6px
  }
  .capability-grid {
    grid-template-columns:repeat(3,1fr);
    gap:30px
  }
  .capability-section {
    padding-bottom:65px
  }
  .technology-grid {
    grid-template-columns:1fr
  }
  .technology-blocks {
    grid-template-columns:repeat(3,1fr)
  }
  .technology-item {
    display:block;
    min-height:125px
  }
  .technology-item h3 {
    margin-top:15px
  }
  .elegance-section {
    padding:75px 0 40px
  }
  .process-timeline {
    grid-template-columns:repeat(3,1fr);
    row-gap:36px
  }
  .process-step:nth-child(3)::before {
    display:none
  }
  .cta-grid {
    grid-template-columns:1fr 1fr;
    gap:35px
  }
  .contact-form {
    grid-template-columns:1fr
  }
  .contact-form label {
    grid-column:1/-1
  }
  .footer-main nav {
    flex-wrap:wrap;
    gap:20px
  }
  .footer-bottom {
    flex-wrap:wrap
  }
  .footer-bottom nav {
    flex-wrap:wrap;
    gap:15px
  }
  .faq-section {
    grid-template-columns:1fr
  }
  .section-heading-row {
    align-items:flex-start
  }
  .section-aside {
    max-width:170px;
    font-size:11px
  }
}
@media(max-width:600px) {
  :root {
    --gutter:22px;
    --section-space:60px
  }
  .header-inner {
    height:72px
  }
  .header-actions {
    gap:10px
  }
  .header-actions>.button {
    display:none
  }
  .nav {
    top:72px
  }
  .hero {
    padding-top:72px
  }
  .hero-grid {
    grid-template-columns:1fr;
    gap:0
  }
  .hero-content {
    padding:48px 0 0
  }
  .hero h1 {
    font-size:clamp(62px,16vw,92px);
    max-width:100%
  }
  .hero .eyebrow {
    max-width:none;
    font-size:8px;
    margin-bottom:20px
  }
  .hero-copy {
    font-size:14px;
    max-width:320px;
    margin-top:24px
  }
  .hero-actions .button {
    min-height:46px;
    font-size:11px;
    padding:13px 18px;
    gap:20px
  }
  .hero-metrics {
    margin-top:29px;
    justify-content:flex-start;
    gap:28px
  }
  .metric-item strong {
    font-size:14px
  }
  .hero-art {
    height:400px;
    width:100%;
    max-width:420px;
    margin:35px auto 10px
  }
  .hero-art .device-mockup {
    width:40%;
    max-width:180px;
    padding:3px;
    border-radius:25px
  }
  .hero-art .device-screen {
    border-radius:21px
  }
  .hero-art .device-parai {
    left:0;
    top:70px;
    transform:rotate(-10deg)
  }
  .hero-art .device-aurapen {
    left:30%;
    top:10px;
    transform:rotate(5deg)
  }
  .hero-art .device-talemoon {
    left:60%;
    top:90px;
    transform:rotate(13deg)
  }
  .hero-orbit {
    bottom:25px
  }
  .hero-bottom {
    font-size:6px;
    letter-spacing:.09em;
    gap:10px
  }
  .hero-bottom a {
    gap:8px
  }
  .section-heading-row {
    display:block;
    margin-bottom:29px
  }
  .section-aside {
    max-width:none;
    margin-top:17px;
    font-size:12px
  }
  .section-header .eyebrow {
    margin-bottom:16px
  }
  h2 {
    font-size:37px
  }
  .brand-grid {
    grid-template-columns:1fr
  }
  .brand-section {
    padding:62px 0 40px
  }
  .brand-grid h2 {
    font-size:38px
  }
  .brand-copy {
    font-size:14px
  }
  .ecosystem {
    height:320px;
    max-width:380px;
    width:100%;
    margin:8px auto 15px
  }
  .orbit-label {
    font-size:7px
  }
  .capability-grid {
    grid-template-columns:1fr;
    gap:0;
    margin-top:32px
  }
  .capability-item {
    padding:23px 30px 23px 45px
  }
  .capability-item .line-icon {
    position:absolute;
    left:0;
    top:26px
  }
  .capability-item h3 {
    font-size:19px;
    margin-top:0
  }
  .capability-item p {
    font-size:13px;
    margin-top:7px
  }
  .item-number {
    top:26px
  }
  .technology-section {
    padding:60px 0
  }
  .technology-section h2 {
    font-size:36px
  }
  .technology-blocks {
    grid-template-columns:1fr 1fr;
    gap:10px
  }
  .technology-item {
    padding:18px 14px
  }
  .technology-item h3 {
    font-size:12px
  }
  .technology-item p {
    font-size:11px
  }
  .elegance-section {
    padding-top:64px
  }
  .elegance-section h2 {
    font-size:38px;
    line-height:1.17
  }
  .elegance-section h2 span+span {
    margin-top:10px
  }
  .elegance-bottom {
    margin-top:26px;
    padding-bottom:30px
  }
  .elegance-bottom p {
    max-width:235px;
    font-size:11px
  }
  .process-section {
    padding-top:15px;
    padding-bottom:60px
  }
  .process-section h2 {
    font-size:34px
  }
  .process-timeline {
    display:block;
    margin:33px 0
  }
  .process-step {
    padding:0 0 30px 59px;
    min-height:96px
  }
  .process-step::before,.process-step:nth-child(3)::before {
    display:block;
    left:17px;
    top:0;
    width:1px;
    height:100%
  }
  .process-step:last-child::before {
    display:none
  }
  .step-marker {
    position:absolute;
    left:0;
    top:0
  }
  .process-step h3 {
    margin:0;
    padding-top:5px;
    font-size:18px
  }
  .process-step p {
    max-width:none;
    font-size:12px;
    margin-top:7px
  }
  .faq-disclosure>summary {
    font-size:12px;
    gap:20px
  }
  .cta-section {
    padding:65px 0 50px
  }
  .cta-grid {
    grid-template-columns:1fr;
    gap:40px
  }
  .cta-section h2 {
    font-size:49px
  }
  .contact-form {
    gap:18px
  }
  .contact-form label {
    font-size:12px
  }
  .contact-form input,.contact-form textarea {
    font-size:16px
  }
  .contact-form .button {
    width:100%
  }
  .footer-main {
    display:grid;
    grid-template-columns:1fr;
    gap:29px;
    padding:28px 0
  }
  .footer-main nav {
    margin:0;
    font-size:11px;
    gap:20px
  }
  .social-links {
    font-size:11px
  }
  .footer-bottom {
    font-size:9px;
    gap:20px
  }
  .footer-bottom nav {
    gap:16px
  }
  .footer-bottom>a {
    margin-left:auto
  }
  .faq-section h2 {
    font-size:25px
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important
  }
  .hero-art .device-mockup {
    will-change:auto
  }
}
/* Asset framing and final desktop proportions. */
.brand {
  height:34px;
  overflow:hidden
}
.brand img {
  height:auto;
  width:132px;
  max-width:none;
  flex-shrink:0
}
@media(min-width:1101px) {
  .hero-grid {
    min-height:610px
  }
  .hero-content {
    padding:47px 0 49px
  }
  .hero h1 {
    font-size:clamp(82px,7vw,100px)
  }
  .hero-metrics {
    margin-top:35px
  }
  .hero-art {
    height:530px;
    margin-right:0
  }
  .hero-art .device-mockup {
    width:37%;
    max-width:227px
  }
  .hero-art .device-parai {
    left:0;
    top:70px
  }
  .hero-art .device-aurapen {
    left:32%;
    top:8px
  }
  .hero-art .device-talemoon {
    left:63%;
    top:105px
  }
  .hero-art-caption {
    bottom:0;
    left:20%
  }
}
@media(max-width:800px) {
  .brand img {
    width:120px
  }
}
.brand {
  height:28px
}
.hero-art-caption {
  display:none
}
@media(max-width:800px) {
  .brand {
    height:26px
  }
}
@media(max-width:360px) {
  :root {
    --gutter:18px
  }
  .hero h1 {
    font-size:55px
  }
  .hero-metrics {
    gap:18px
  }
  .hero-actions .button {
    font-size:10px;
    padding:12px 15px;
    gap:12px
  }
  .hero-art {
    height:340px
  }
  .technology-blocks {
    grid-template-columns:1fr
  }
  .technology-item {
    display:flex;
    min-height:0;
    padding:20px
  }
  .technology-item h3 {
    margin-top:0
  }
  .elegance-section h2 {
    font-size:34px
  }
}

/* ==========================================================================
   HubX-inspired refinement layer
   Interpreted, not copied: true-black grounds, a glowing hero emblem, an
   oversized wordmark, a centered scroll-lit manifesto, and a readable type
   scale. Appended last so it overrides the base rules above at every width.
   ========================================================================== */
:root {
  --dark:#040405;
  --accent:linear-gradient(92deg,#b8a9ff 0%,#e59be0 45%,#ffb49a 100%)
}
body,.dark-section {
  background-color:var(--dark)
}
.site-header {
  background:rgba(4,4,5,.94);
  border-bottom-color:#ffffff0f
}
.nav a {
  font-size:13px
}

/* Type scale: nothing essential below 12px */
.eyebrow {
  font-size:11px;
  letter-spacing:.16em
}
.hero .eyebrow {
  font-size:11px
}
.hero-copy {
  font-size:17px;
  max-width:420px
}
.metric-item strong {
  font-size:18px
}
.metric-item span {
  font-size:12px
}
.hero-bottom {
  font-size:10px
}
.section-aside {
  font-size:15px;
  max-width:270px
}
.brand-copy {
  font-size:16px;
  max-width:470px
}
.text-link {
  font-size:13px
}
.orbit-label {
  font-size:10px
}
.capability-item h3 {
  font-size:19px
}
.capability-item p {
  font-size:14px
}
.item-number {
  font-size:11px
}
.tech-copy {
  font-size:16px;
  max-width:420px
}
.technology-item h3 {
  font-size:15px
}
.technology-item p {
  font-size:13px
}
.process-step h3 {
  font-size:18px
}
.process-step p {
  font-size:13px;
  max-width:160px
}
.faq-disclosure {
  font-size:15px
}
.faq-list details p {
  font-size:14px
}
.cta-copy {
  font-size:16px;
  max-width:400px
}
.contact-form label {
  font-size:12px
}
.contact-form input,.contact-form textarea {
  font-size:14px
}
.footer-main nav,.social-links {
  font-size:13px
}
.footer-bottom {
  font-size:12px
}

/* Hero: soft emblem glow + oversized wordmark */
.hero {
  background:var(--dark)
}
.hero-art::before {
  display:none
}
.hero-glow {
  position:absolute;
  left:50%;
  top:50%;
  width:min(640px,112%);
  aspect-ratio:1;
  translate:-50% -50%;
  border-radius:50%;
  z-index:-1;
  pointer-events:none
}
.hero-glow::before,.hero-glow::after {
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%
}
.hero-glow::before {
  background:conic-gradient(from 0deg,#7c6cff,#e38ad9,#ffa47e,#5aa2ff,#7c6cff);
  -webkit-mask:radial-gradient(closest-side,transparent 78%,#000 80%,#000 86%,transparent 90%);
  mask:radial-gradient(closest-side,transparent 78%,#000 80%,#000 86%,transparent 90%);
  filter:blur(18px);
  opacity:.9;
  animation:glow-spin 18s linear infinite
}
.hero-glow::after {
  inset:12%;
  background:radial-gradient(closest-side,#5b4fd640,#0000 72%)
}
@keyframes glow-spin {
  to {
    rotate:360deg
  }
}
.hero-orbit {
  border-color:#ffffff12
}
.footer {
  position:relative;
  overflow:hidden
}
.footer-wordmark {
  margin:20px 0 calc(.16em + 26px);
  text-align:center;
  font-size:min(22vw,318px);
  font-weight:700;
  letter-spacing:-.075em;
  line-height:.82;
  white-space:nowrap;
  background:linear-gradient(180deg,#26232d 20%,#141418 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  pointer-events:none;
  user-select:none
}
.footer .social-links {
  gap:10px
}
@media(min-width:1101px) {
  .footer-main,.footer-bottom {
    display:grid;
    grid-template-columns:1fr auto 1fr
  }
  .footer-main > :last-child,.footer-bottom > :last-child {
    justify-self:end
  }
}
.social-link {
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid #ffffff1f;
  color:#b4b8c2;
  transition:color .2s,background .2s,border-color .2s,transform .3s var(--ease)
}
.footer .social-link:hover {
  color:#fff;
  background:#ffffff12;
  border-color:#ffffff40;
  transform:translateY(-2px)
}
.hero-grid,.hero-bottom {
  position:relative;
  z-index:2
}
.hero-bottom {
  border-top-color:#ffffff10
}

/* Buttons: HubX-style pills, brighter hover */
.button-outline {
  background:transparent;
  border-color:#ffffff2e
}
.button-outline:hover {
  background:#ffffff12;
  border-color:#ffffff55
}
/* Products: calmer cards, image drift on hover */

/* Ecosystem: echo the hero glow around the sphere */
.ecosystem::before {
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:78%;
  aspect-ratio:1;
  translate:-50% -50%;
  border-radius:50%;
  background:radial-gradient(closest-side,#6a5cff2b,#e38ad914 55%,#0000 75%);
  filter:blur(10px)
}

/* Technology: raised white cards instead of hairline boxes */
.technology-section {
  background:#f1f2f4
}
.technology-item {
  background:#fff;
  border-color:#0000;
  box-shadow:0 1px 2px #10121d0d,0 8px 24px -12px #10121d1f;
  transition:transform .35s var(--ease),box-shadow .35s
}
.technology-item:hover {
  transform:translateY(-3px);
  box-shadow:0 1px 2px #10121d0d,0 18px 36px -14px #10121d2e
}

/* Manifesto: centered, dark, gradient words lit by scroll */
.elegance-section {
  padding:150px 0 140px;
  text-align:center;
  position:relative;
  overflow:hidden
}
.elegance-section::before {
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:900px;
  height:100%;
  translate:-50% 0;
  background:radial-gradient(farthest-side at 50% 100%,#5b4fd62e,#0000);
  pointer-events:none
}
.elegance-section .container {
  position:relative
}
.elegance-section h2 {
  max-width:980px;
  margin-inline:auto;
  font-size:clamp(38px,5.4vw,78px);
  line-height:1.08;
  color:#f6f6f8
}
.elegance-section h2 > span {
  display:block;
  color:inherit
}
.elegance-section h2 > span.accent-text {
  background:var(--accent);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}
.elegance-copy {
  margin:34px auto 0;
  max-width:420px;
  font-size:17px;
  color:#a6a9b2
}
@supports (animation-timeline:view()) {
  @media (prefers-reduced-motion:no-preference) {
    .elegance-section h2 > span {
      background-image:linear-gradient(#f6f6f8,#f6f6f8),linear-gradient(#ffffff38,#ffffff38);
      background-repeat:no-repeat;
      background-size:0% 100%,100% 100%;
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      animation:words-light linear both;
      animation-timeline:view();
      animation-range:entry 40% cover 45%
    }
    .elegance-section h2 > span.accent-text {
      background-image:var(--accent),linear-gradient(#ffffff38,#ffffff38);
      animation-range:cover 30% cover 55%
    }
    @keyframes words-light {
      to {
        background-size:100% 100%,100% 100%
      }
    }
  }
}

/* CTA: glow from below, like the hero */
.cta-section {
  position:relative;
  overflow:hidden
}
.cta-section::before {
  content:"";
  position:absolute;
  left:-260px;
  top:0;
  width:820px;
  height:100%;
  background:radial-gradient(closest-side,#6a5cff24,#0000);
  pointer-events:none
}
.cta-grid {
  position:relative
}

@media(max-width:800px) {
  .hero-copy {
    font-size:15px
  }
  .hero-glow {
    width:min(360px,90%)
  }
  .elegance-section {
    padding:100px 0 95px
  }
  .elegance-copy {
    font-size:15px
  }
  .brand-copy {
    font-size:15px
  }
  .hero-bottom {
    font-size:9px
  }
}

/* Product detail pages — per-product accent via --product-accent on body */
.product-page {
  --product-accent:#8b7bff;
  min-height:100vh;
  background:var(--dark);
  color:#f6f6f8
}
.product-page .light-section {
  color:var(--ink)
}
.product-hero {
  position:relative;
  padding:150px 0 100px;
  overflow:hidden;
  background:radial-gradient(ellipse 60% 55% at 78% 45%,color-mix(in srgb,var(--product-accent) 16%,transparent),transparent 70%),var(--dark)
}
.product-hero-grid {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:64px;
  align-items:center
}
.product-hero-copy {
  max-width:620px
}
.back-link {
  display:inline-flex;
  gap:10px;
  color:#a6a9b2;
  font-size:13px;
  margin-bottom:48px;
  transition:color .2s,gap .2s
}
.back-link:hover {
  color:#fff;
  gap:14px
}
.product-identity {
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:30px
}
.product-identity img {
  width:64px;
  height:64px;
  border-radius:16px;
  object-fit:cover;
  border:1px solid #ffffff1f;
  box-shadow:0 10px 30px -8px color-mix(in srgb,var(--product-accent) 55%,transparent)
}
.product-identity div {
  display:flex;
  flex-direction:column;
  gap:4px
}
.product-name {
  font-size:22px;
  font-weight:600;
  letter-spacing:-.03em
}
.product-tag {
  font-size:14px;
  color:#a6a9b2
}
.product-hero h1 {
  font-size:clamp(48px,6vw,88px);
  line-height:1;
  letter-spacing:-.06em
}
.product-hero-intro {
  color:#b8bcc6;
  font-size:18px;
  line-height:1.65;
  max-width:500px;
  margin-top:26px
}
.product-hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:34px
}
.product-hero-actions .button:not(:first-child) {
  background:transparent;
  color:#fafafa;
  border-color:#ffffff2e
}
.product-hero-actions .button:not(:first-child):hover {
  background:#ffffff12
}
.product-chips {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  list-style:none;
  padding:0;
  margin:40px 0 0
}
.product-chips li {
  font-size:12px;
  color:#b8bcc6;
  padding:7px 13px;
  border:1px solid #ffffff1a;
  border-radius:100px
}
.product-hero-art {
  position:relative;
  height:600px;
  display:flex;
  align-items:center;
  justify-content:center;
  isolation:isolate
}
.product-hero-art .hero-glow {
  width:min(560px,100%)
}
.product-hero-art .hero-glow::before {
  background:conic-gradient(from 0deg,var(--product-accent),#ffffff,var(--product-accent),color-mix(in srgb,var(--product-accent) 30%,#5aa2ff),var(--product-accent));
  opacity:.7
}
.product-hero-art .hero-glow::after {
  background:radial-gradient(closest-side,color-mix(in srgb,var(--product-accent) 28%,transparent),transparent 72%)
}
.product-hero-art > img {
  position:relative;
  width:min(290px,70%);
  height:auto;
  border-radius:30px;
  border:1px solid #ffffff24;
  box-shadow:0 40px 90px -20px #000,0 0 0 8px #ffffff08;
  transform:rotate(4deg);
  transition:transform .8s var(--ease)
}
.product-hero-art:hover > img {
  transform:rotate(1deg) translateY(-8px)
}
.product-index {
  position:absolute;
  bottom:10px;
  right:0;
  color:#868c99;
  font-size:11px;
  letter-spacing:.14em
}

/* Overview: description as an editorial statement + fact sheet */
.product-overview {
  padding:120px 0
}
.overview-grid {
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:90px;
  align-items:start
}
.overview-statement {
  font-size:clamp(26px,2.7vw,38px);
  line-height:1.3;
  letter-spacing:-.035em;
  font-weight:500;
  color:var(--ink)
}
.overview-facts {
  margin:0;
  border-top:1px solid var(--line)
}
.overview-facts > div {
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:20px 0;
  border-bottom:1px solid var(--line);
  font-size:15px
}
.overview-facts dt {
  color:var(--muted)
}
.overview-facts dd {
  margin:0;
  text-align:right;
  font-weight:500
}
.overview-links {
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:6px 16px
}
.text-arrow {
  display:inline-flex;
  gap:6px;
  transition:color .2s
}
.text-arrow:hover {
  color:#5b4fd6
}

/* Features: large tinted cards */
.product-features {
  padding:120px 0
}
.product-section-intro {
  max-width:720px;
  margin-bottom:56px
}
.feature-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px
}
.feature-card {
  position:relative;
  min-height:300px;
  padding:32px;
  border-radius:22px;
  border:1px solid #ffffff14;
  background:linear-gradient(160deg,color-mix(in srgb,var(--product-accent) 14%,#0d0d10) 0%,#0b0b0d 60%);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  transition:transform .4s var(--ease),border-color .4s
}
.feature-card:hover {
  transform:translateY(-4px);
  border-color:color-mix(in srgb,var(--product-accent) 45%,transparent)
}
.feature-number {
  font-size:64px;
  font-weight:600;
  letter-spacing:-.06em;
  line-height:1;
  background:linear-gradient(180deg,var(--product-accent),color-mix(in srgb,var(--product-accent) 10%,transparent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}
.feature-card h3 {
  margin-top:auto;
  padding-top:48px;
  font-size:26px;
  color:#f6f6f8
}
.feature-card p {
  margin-top:12px;
  font-size:15px;
  color:#aeb3be;
  max-width:300px
}

/* Portfolio grid */
.product-next {
  padding:110px 0
}
.portfolio-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px
}
.portfolio-card {
  display:grid;
  grid-template-columns:auto 1fr auto;
  grid-template-rows:auto auto;
  column-gap:16px;
  row-gap:3px;
  align-items:center;
  padding:20px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 1px 2px #10121d0d,0 8px 24px -14px #10121d24;
  transition:transform .35s var(--ease),box-shadow .35s
}
.portfolio-card:hover {
  transform:translateY(-3px);
  box-shadow:0 1px 2px #10121d0d,0 20px 40px -18px color-mix(in srgb,var(--product-accent) 60%,transparent)
}
.portfolio-card img {
  grid-row:1/3;
  width:52px;
  height:52px;
  border-radius:13px;
  object-fit:cover;
  border:1px solid #0000000d
}
.portfolio-name {
  font-size:17px;
  font-weight:600;
  letter-spacing:-.02em;
  color:var(--ink)
}
.portfolio-tag {
  font-size:13px;
  color:var(--muted)
}
.portfolio-arrow {
  grid-row:1/3;
  grid-column:3;
  font-size:18px;
  color:#9a9ea7;
  transition:color .2s,transform .3s var(--ease)
}
.portfolio-card:hover .portfolio-arrow {
  color:var(--ink);
  transform:translate(2px,-2px)
}

/* CTA */
.product-cta {
  position:relative;
  padding:130px 0;
  text-align:center;
  overflow:hidden
}
.product-cta::before {
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:900px;
  height:100%;
  translate:-50% 0;
  background:radial-gradient(farthest-side at 50% 100%,color-mix(in srgb,var(--product-accent) 22%,transparent),transparent);
  pointer-events:none
}
.product-cta .container {
  position:relative
}
.product-cta h2 {
  font-size:clamp(40px,5vw,72px)
}
.product-cta p {
  max-width:440px;
  margin:24px auto 34px;
  font-size:16px;
  color:#a6a9b2
}

@media(max-width:1000px) {
  .product-hero-grid,.overview-grid {
    grid-template-columns:1fr
  }
  .product-hero-grid {
    gap:24px
  }
  .overview-grid {
    gap:48px
  }
  .product-hero-art {
    height:500px
  }
  .feature-grid,.portfolio-grid {
    grid-template-columns:1fr 1fr
  }
}
@media(max-width:640px) {
  .product-hero {
    padding:115px 0 70px
  }
  .back-link {
    margin-bottom:36px
  }
  .product-hero h1 {
    font-size:46px
  }
  .product-hero-intro {
    font-size:16px
  }
  .product-hero-art {
    height:430px
  }
  .product-hero-art > img {
    width:220px
  }
  .product-overview,.product-features,.product-next {
    padding:80px 0
  }
  .feature-grid,.portfolio-grid {
    grid-template-columns:1fr
  }
  .feature-card {
    min-height:240px;
    padding:26px
  }
  .product-cta {
    padding:95px 0
  }
}

/* Product showcase (homepage): large storytelling cards + compact cards */
.products-section .section-aside {
  max-width:400px;
  font-size:16px;
  line-height:1.6
}
.products-section > .container {
  width:min(1340px,calc(100% - var(--gutter)*2))
}
.showcase-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px
}
.showcase-small-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px
}
.products-section .showcase-small-grid {
  margin-top:16px
}
.showcase-card {
  --tint:#eceef3;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  border-radius:24px;
  border:1px solid #10121d0a;
  background:linear-gradient(155deg,var(--tint) 0%,color-mix(in srgb,var(--tint) 35%,#f7f7f9) 55%,#f7f7f9 100%);
  color:var(--ink);
  transition:transform .45s var(--ease),box-shadow .45s
}
.showcase-card:hover {
  transform:translateY(-4px);
  box-shadow:0 26px 50px -24px color-mix(in srgb,var(--tint) 70%,#10121d)
}
.showcase-card .device-mockup {
  position:absolute;
  z-index:1;
  transition:transform .7s var(--ease)
}
.showcase-copy {
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:flex-start
}
.showcase-icon {
  width:60px;
  height:60px;
  border-radius:15px;
  object-fit:cover;
  border:1px solid #0000000d;
  box-shadow:0 8px 20px -10px #10121d55
}
.showcase-card h3 {
  font-size:34px;
  line-height:1.05;
  margin-top:24px
}
.showcase-card h3 a:hover {
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:5px
}
.showcase-line {
  margin-top:8px;
  font-size:17px;
  line-height:1.4;
  color:#4f535c;
  white-space:pre-line
}

/* Large */
.showcase-large {
  min-height:500px;
  padding:28px
}
.showcase-large .showcase-copy {
  max-width:60%;
  height:100%
}
.showcase-platform {
  position:absolute;
  z-index:3;
  top:24px;
  right:24px;
  padding:6px 12px;
  border-radius:100px;
  border:1px solid #10121d14;
  background:#ffffffb8;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  font-size:12px;
  color:#4f535c
}
.showcase-features {
  list-style:none;
  padding:0;
  margin:24px 0 28px;
  display:grid;
  gap:11px
}
.showcase-features li {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13.5px;
  line-height:1.3;
  color:#2a2d34
}
.feature-icon {
  display:grid;
  place-items:center;
  flex-shrink:0;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#ffffffcc;
  border:1px solid #10121d0f;
  color:#2a2d34
}
.button-dark {
  margin-top:auto;
  background:#101114;
  color:#fff;
  gap:14px;
  font-size:13px
}
.button-dark:hover {
  background:#2a2c33
}
.showcase-stores {
  display:flex;
  flex-wrap:wrap;
  gap:6px 16px;
  margin-top:16px;
  font-size:12px;
  font-weight:500
}
.showcase-stores a {
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:24px;
  color:#2a2d34
}
.showcase-stores a:hover {
  text-decoration:underline;
  text-underline-offset:4px
}
.showcase-large .device-mockup {
  width:190px;
  right:-34px;
  bottom:-84px;
  transform:rotate(9deg)
}
.showcase-large:hover .device-mockup {
  transform:rotate(5deg) translateY(-10px)
}

/* Small */
.showcase-small {
  display:block;
  min-height:210px;
  padding:22px
}
.showcase-small .showcase-copy {
  max-width:58%;
  min-height:166px
}
.showcase-small .showcase-icon {
  width:46px;
  height:46px;
  border-radius:12px
}
.showcase-small h3 {
  font-size:21px;
  margin-top:16px
}
.showcase-small .showcase-line {
  font-size:13px;
  margin-top:5px
}
.showcase-arrow {
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  margin-top:auto;
  border-radius:50%;
  background:#ffffffcc;
  border:1px solid #10121d14;
  font-size:15px;
  transition:background .25s,color .25s,transform .35s var(--ease)
}
.showcase-small:hover .showcase-arrow {
  background:#101114;
  color:#fff;
  transform:translateX(3px)
}
.showcase-small .device-mockup {
  width:118px;
  padding:3px;
  border-radius:20px;
  right:-6px;
  bottom:-86px;
  transform:rotate(9deg)
}
.showcase-small .device-screen {
  border-radius:17px
}
.showcase-small:hover .device-mockup {
  transform:rotate(6deg) translateY(-8px)
}

.showcase-note {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-top:30px;
  font-size:13px;
  color:var(--muted)
}
.showcase-note p:last-child {
  display:flex;
  align-items:center;
  gap:14px
}
.showcase-note p:last-child::before {
  content:"";
  width:48px;
  height:1px;
  background:var(--line)
}

@media(max-width:1180px) {
  .showcase-grid {
    grid-template-columns:1fr
  }
  .showcase-large {
    min-height:420px
  }
  .showcase-large .showcase-copy {
    max-width:60%
  }
  .showcase-large .device-mockup {
    width:230px;
    right:6%;
    bottom:-120px
  }
  .showcase-small-grid {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
}
@media(max-width:640px) {
  .products-section .section-aside {
    font-size:15px
  }
  .showcase-large {
    min-height:0;
    padding:24px 22px 250px
  }
  .showcase-large .showcase-copy {
    max-width:none
  }
  .showcase-large h3 {
    font-size:30px
  }
  .showcase-small .showcase-arrow {
    margin-top:14px
  }
  .showcase-large .device-mockup {
    width:190px;
    right:50%;
    bottom:-170px;
    transform:translateX(50%) rotate(6deg)
  }
  .showcase-large:hover .device-mockup {
    transform:translateX(50%) rotate(4deg) translateY(-8px)
  }
  .showcase-small-grid {
    grid-template-columns:1fr
  }
  .showcase-small .showcase-copy {
    max-width:62%
  }
  .showcase-note {
    flex-direction:column;
    align-items:flex-start
  }
}

/* Store / website links with glyphs */
.store-icon {
  display:block;
  flex-shrink:0
}
.product-hero-actions .store-link {
  gap:10px;
  padding-inline:20px 24px
}
.overview-links {
  gap:8px 18px
}
.overview-links .store-link {
  align-items:center;
  gap:7px
}
.showcase-stores .store-icon {
  opacity:.85
}

/* Product hero: in-app screenshot in a device frame */
.product-hero-art .product-device {
  width:min(270px,66%);
  padding:6px;
  border-radius:42px;
  transform:rotate(4deg);
  box-shadow:0 40px 90px -20px #000,0 0 0 1px #ffffff14;
  transition:transform .8s var(--ease)
}
.product-hero-art .product-device .device-screen {
  border-radius:36px
}
.product-hero-art:hover .product-device {
  transform:rotate(1deg) translateY(-8px)
}
@media(max-width:640px) {
  .product-hero-art .product-device {
    width:200px;
    border-radius:32px
  }
  .product-hero-art .product-device .device-screen {
    border-radius:27px
  }
}

/* Legal pages: dark title band, then a readable document with a sticky contents list */
.legal-page {
  background:var(--dark);
  color:#f6f6f8
}
.legal-page .light-section {
  color:var(--ink)
}
.legal-hero {
  padding:150px 0 84px;
  background:radial-gradient(ellipse 55% 70% at 85% 0%,#8b7bff24,transparent 70%),var(--dark)
}
.legal-tabs {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:64px
}
.legal-tabs a {
  padding:9px 16px;
  border:1px solid #ffffff1f;
  border-radius:100px;
  color:#a6a9b2;
  font-size:13px;
  transition:color .2s,border-color .2s,background .2s
}
.legal-tabs a:hover {
  color:#fff;
  border-color:#ffffff47
}
.legal-tabs a[aria-current="page"] {
  background:#fafafa;
  border-color:#fafafa;
  color:#151619;
  font-weight:600
}
.legal-hero h1 {
  font-size:clamp(44px,6vw,88px);
  line-height:1;
  letter-spacing:-.06em;
  max-width:900px
}
.legal-updated {
  margin-top:28px;
  color:#a6a9b2;
  font-size:14px
}
.legal-note {
  display:none;
  margin-top:14px;
  max-width:520px;
  padding:12px 16px;
  border:1px solid #ffffff1f;
  border-radius:12px;
  color:#d4d6dc;
  font-size:14px
}
html[lang="tr"] .legal-note[data-note-lang="tr"],
html[lang="en"] .legal-note[data-note-lang="en"] {
  display:block
}
.legal-main {
  padding:96px 0 120px
}
html[lang="tr"] .legal-layout[data-legal-lang="en"]:not(:only-child),
html:not([lang="tr"]) .legal-layout[data-legal-lang="tr"]:not(:only-child) {
  display:none
}
.legal-layout {
  display:grid;
  grid-template-columns:240px minmax(0,720px);
  gap:90px;
  align-items:start
}
.legal-toc {
  position:sticky;
  top:110px
}
.legal-toc ol {
  list-style:none;
  margin:0;
  padding:0;
  border-left:1px solid var(--line)
}
.legal-toc a {
  display:block;
  padding:7px 0 7px 16px;
  margin-left:-1px;
  border-left:1px solid transparent;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
  transition:color .2s,border-color .2s
}
.legal-toc a:hover {
  color:var(--ink);
  border-color:var(--ink)
}
.legal-body {
  color:#3a3d44;
  font-size:16px;
  line-height:1.75
}
.legal-body h2 {
  font-size:clamp(24px,2.3vw,30px);
  line-height:1.2;
  letter-spacing:-.035em;
  color:var(--ink);
  margin:64px 0 18px;
  padding-top:28px;
  border-top:1px solid var(--line);
  white-space:normal;
  scroll-margin-top:100px
}
.legal-body h2:first-child {
  margin-top:0
}
.legal-body p + p,
.legal-body ul + p,
.legal-body p + ul {
  margin-top:16px
}
.legal-body p {
  line-height:1.75
}
.legal-body ul {
  margin:0;
  padding-left:20px
}
.legal-body li {
  padding-left:4px
}
.legal-body li + li {
  margin-top:12px
}
.legal-body li::marker {
  color:#9a9da6
}
.legal-body strong {
  color:var(--ink);
  font-weight:600
}
.legal-body a {
  color:#5b4fd6;
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-thickness:1px
}
.legal-body code {
  font-size:.9em;
  padding:1px 6px;
  border-radius:6px;
  background:#eeeef1
}
.legal-apps {
  display:grid;
  gap:14px;
  margin-top:8px
}
.legal-app {
  padding:26px 28px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff
}
.legal-app h3 {
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:4px 12px;
  margin-bottom:10px;
  color:var(--ink);
  font-size:19px
}
.legal-app h3 span {
  color:var(--muted);
  font-size:13px;
  font-weight:500;
  letter-spacing:0
}
.legal-app p {
  font-size:15px
}
@media(max-width:1000px) {
  .legal-layout {
    grid-template-columns:1fr;
    gap:48px
  }
  .legal-toc {
    position:static
  }
}
@media(max-width:640px) {
  .legal-hero {
    padding:120px 0 60px
  }
  .legal-tabs {
    margin-bottom:44px
  }
  .legal-main {
    padding:64px 0 88px
  }
  .legal-app {
    padding:22px 20px
  }
}
