/* ==========================================================
   DESIGN TOKENS
   ========================================================== */
:root {
  --accent:#00d1c1;
  --accent-dark:#009f96;
  --enable-accent:#8c6fbb;
  --delivery-accent:#af581a;
  --framegap-accent:#467fd0;
  --enable-on-accent:#10141d;
  --delivery-on-accent:#fff;
  --framegap-on-accent:#10141d;
  --text:#10141d;
  --text-soft:#4d5563;
  --text-muted:#7c8491;
  --border:rgba(16,20,29,.1);
  --container:1440px;
  --transition:320ms cubic-bezier(.2,.75,.25,1)
}

/* ==========================================================
   RESET AND BASE
   ========================================================== */
* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth
}

body {
  margin:0;
  overflow-x:hidden;
  color:var(--text);
  background:#fff;
  font-family:"League Spartan",sans-serif;
  font-size:18px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased
}

body.menu-open {
  overflow:hidden
}

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

img {
  display:block;
  max-width:100%
}

button {
  font:inherit
}

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

/* ==========================================================
   STUDIOFLOW LOGO
   ========================================================== */
.brand-logo-link {
  display:inline-flex;
  align-items:center;
  flex-shrink:0
}

.brand-logo-svg {
  display:block;
  width:auto;
  max-width:100%;
  height:auto;
  user-select:none;
  pointer-events:none
}

.brand-logo-svg-small {
  width:190px
}

.hero-logo-heading {
  margin:24px 0 0;
  line-height:0
}

.brand-logo-svg-hero {
  width:min(100%,1180px)
}

.brand-logo-footer-link {
  align-self:start
}

.brand-logo-svg-footer {
  width:clamp(210px,22vw,340px)
}

/* ==========================================================
   HEADER AND NAVIGATION
   ========================================================== */
.site-header {
  position:fixed;
  z-index:100;
  inset:0 0 auto;
  background:rgba(255,255,255,.82);
  border-bottom:1px solid transparent;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  transition:var(--transition)
}

.site-header.is-scrolled {
  background:rgba(255,255,255,.95);
  border-color:var(--border)
}

.header-inner {
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px
}

.main-navigation {
  display:flex;
  align-items:center;
  gap:38px;
  font-size:.92rem;
  font-weight:600
}

.header-cta {
  min-height:44px;
  padding:10px 24px;
  border:1px solid rgba(0,209,193,.6);
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:var(--transition)
}

.header-cta:hover {
  color:#fff;
  background:var(--accent-dark)
}

.mobile-menu-button {
  width:46px;
  height:46px;
  padding:0;
  border:0;
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  background:transparent
}

.mobile-menu-button span {
  width:24px;
  height:2px;
  background:var(--text);
  transition:var(--transition)
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position:relative;
  min-height:780px;
  padding:170px 0 120px;
  overflow:hidden;
  display:grid;
  align-items:center;
  background:#fff
}

.hero-background {
  position:absolute;
  z-index:0;
  inset:0;
  overflow:hidden;
  background:radial-gradient(circle at 48% 45%,#fff 0%,#fbfdfd 50%,#f3f9f9 100%)
}

.hero-background::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.12),rgba(255,255,255,.02) 55%,rgba(255,255,255,.12));
  pointer-events:none
}

.hero-waves {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:.95
}

.hero-content {
  position:relative;
  z-index:5;
  width:min(100%,1300px);
  text-align:left
}

.hero-eyebrow,.section-label {
  margin:0;
  color:var(--accent-dark);
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase
}

.hero-description {
  max-width:680px;
  margin:36px 0 0;
  color:#343c48;
  font-size:clamp(1.18rem,2vw,1.5rem)
}

.hero-scroll-link {
  margin-top:48px;
  display:inline-flex;
  align-items:center;
  gap:38px;
  padding-bottom:9px;
  border-bottom:1px solid var(--accent);
  font-weight:600
}

.hero-scroll-arrow {
  font-size:1.65rem
}

/* ==========================================================
   SHARED SECTIONS
   ========================================================== */
.section {
  padding:120px 0
}

.plugins-section {
  background:linear-gradient(180deg,#f7fbfb 0%,#fff 26%)
}

.section-heading {
  margin-bottom:54px;
  display:grid;
  grid-template-columns:1fr minmax(320px,470px);
  gap:80px;
  align-items:end
}

.section-heading h2,.applications-copy h2,.about-layout h2 {
  margin:14px 0 0;
  font-size:clamp(3rem,5vw,5.2rem);
  line-height:.96;
  letter-spacing:-.055em
}

.section-heading > p,.applications-copy > p:last-child,.about-layout > p {
  margin:0;
  color:var(--text-soft);
  font-size:1.08rem
}

/* ==========================================================
   PREMIERE PRO PLUGINS
   ========================================================== */
.plugin-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px
}

.product-card {
  --card-accent:var(--enable-accent);
  --card-on-accent:var(--enable-on-accent);
  min-width:0;
  min-height:300px;
  display:grid;
  grid-template-columns:42% 58%;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:25px;
  background:#fff;
  transition:border-color var(--transition),transform var(--transition),background-color var(--transition)
}

.product-card-enable {
  --card-accent:var(--enable-accent);
  --card-on-accent:var(--enable-on-accent)
}

.product-card-delivery {
  --card-accent:var(--delivery-accent);
  --card-on-accent:var(--delivery-on-accent)
}

.product-card-framegap {
  --card-accent:var(--framegap-accent);
  --card-on-accent:var(--framegap-on-accent)
}

.product-card:hover {
  border-color:color-mix(in srgb,var(--card-accent) 45%,transparent);
  background:color-mix(in srgb,var(--card-accent) 10%,white);
  transform:translateY(-5px)
}

.product-card:focus-visible {
  border-color:var(--card-accent);
  outline:3px solid var(--accent);
  outline-offset:4px;
  transform:translateY(-5px)
}

.product-accent-panel {
  padding:30px 24px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  color:var(--card-on-accent);
  background:var(--card-accent);
  transition:background-color var(--transition)
}

.product-card:hover .product-accent-panel {
  background:color-mix(in srgb,var(--card-accent) 93%,black)
}

.product-icon {
  display:block;
  aspect-ratio:1;
  object-fit:contain;
  flex-shrink:0
}

.product-icon-plugin {
  width:clamp(58px,5vw,76px);
  height:clamp(58px,5vw,76px);
  margin-bottom:auto;
}

.product-accent-panel p {
  margin:34px 0 0;
  font-size:.9rem
}

.product-accent-panel h3 {
  margin:0;
  font-size:2rem;
  line-height:1
}

.product-accent-panel .product-summary {
  margin-top:12px;
  font-size:.9rem;
  line-height:1.3
}

.product-status {
  width:max-content;
  max-width:100%;
  padding:5px 9px 4px;
  border:1px solid currentColor;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.08em;
  line-height:1;
  text-transform:uppercase
}

.product-accent-panel .product-status {
  margin:14px 0 0
}

.product-status-available {
  color:#123d39;
  background:#bff7f1
}

.product-status-soon {
  color:#343b46;
  background:#f3f5f7
}

.product-media {
  padding:14px;
  background:#11151a;
  display:flex;
  align-items:stretch
}

.product-media img {
  width:100%;
  height:100%;
  min-height:272px;
  border-radius:13px;
  object-fit:contain;
  object-position:center;
  background:#1d1d1d
}

/* ==========================================================
   DESKTOP APPLICATIONS
   ========================================================== */
.applications-section {
  position:relative;
  overflow:hidden;
  border-top:1px solid var(--border);
  background:#fbfcfd
}

.applications-section::before {
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 18% 18%,rgba(0,209,193,.08),transparent 40%)
}

.applications-layout {
  position:relative;
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:90px;
  align-items:center
}

.applications-copy > p:last-child {
  max-width:520px;
  margin-top:26px
}

.application-list {
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:26px;
  background:rgba(255,255,255,.94)
}

.application-item {
  min-height:132px;
  padding:20px 26px;
  display:grid;
  grid-template-columns:92px 1fr auto;
  gap:22px;
  align-items:center;
  transition:background-color var(--transition),transform var(--transition)
}

.application-item + .application-item {
  border-top:1px solid var(--border)
}

.application-item:hover {
  background:#fff;
  transform:translateX(5px)
}

.application-item:focus-visible {
  outline:3px solid var(--accent);
  outline-offset:-3px;
  background:#fff
}

.application-icon {
  width:92px;
  height:92px;
}

.application-item h3 {
  margin:7px 0 0;
  font-size:1.45rem
}

.application-item p {
  margin:4px 0 0;
  color:var(--text-soft);
  font-size:.92rem
}

.application-arrow {
  font-size:1.5rem
}

/* ==========================================================
   PRODUCT PAGES
   ========================================================== */
.product-page {
  min-height:100vh;
  padding:170px 0 110px;
  display:grid;
  align-items:center;
  background:radial-gradient(circle at 78% 24%,rgba(0,209,193,.08),transparent 34%),#fff
}

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

.product-page-hero {
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:64px;
  align-items:center
}

.product-page-icon {
  width:220px;
  height:220px
}

.product-page-copy {
  max-width:820px
}

.product-page-copy .product-status {
  margin-bottom:24px
}

.product-page-copy h1 {
  margin:0;
  font-size:clamp(3.4rem,7vw,7.2rem);
  line-height:.9;
  letter-spacing:-.06em
}

.product-page-description {
  max-width:760px;
  margin:30px 0 0;
  color:var(--text-soft);
  font-size:clamp(1.18rem,2vw,1.45rem)
}

.product-page-note {
  max-width:760px;
  margin:28px 0 0;
  padding-top:24px;
  border-top:1px solid var(--border);
  color:var(--text-muted)
}

.product-page-with-banner {
  --product-page-accent:var(--accent);
  align-items:start;
  background:
    radial-gradient(circle at 78% 15%,color-mix(in srgb,var(--product-page-accent) 11%,transparent),transparent 32%),
    #fff
}

.product-page-enable {
  --product-page-accent:var(--enable-accent)
}

.product-page-delivery {
  --product-page-accent:var(--delivery-accent)
}

.product-page-framegap {
  --product-page-accent:var(--framegap-accent)
}

.product-page-banner {
  margin:82px 0 0;
  padding:16px;
  overflow:hidden;
  border:1px solid color-mix(in srgb,var(--product-page-accent) 38%,rgba(255,255,255,.12));
  border-radius:30px;
  background:
    radial-gradient(circle at 75% 10%,color-mix(in srgb,var(--product-page-accent) 17%,transparent),transparent 34%),
    #0d0f14;
  box-shadow:0 32px 80px rgba(16,20,29,.18)
}

.product-page-banner-heading {
  padding:3px 8px 15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:rgba(255,255,255,.48);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase
}

.product-page-banner-heading span:first-child {
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.82)
}

.product-page-banner-heading span:first-child::before {
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--product-page-accent);
  box-shadow:0 0 18px color-mix(in srgb,var(--product-page-accent) 75%,transparent)
}

.product-page-banner > img {
  width:100%;
  aspect-ratio:17 / 10;
  border:1px solid rgba(255,255,255,.08);
  border-radius:19px;
  object-fit:cover;
  object-position:center
}

/* ==========================================================
   HOMEPAGE CONTACT
   ========================================================== */
.homepage-contact-section {
  border-top:1px solid var(--border);
  background:#fff
}

.homepage-contact-layout {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:90px;
  align-items:start
}

.homepage-contact-copy h2 {
  margin:14px 0 0;
  font-size:clamp(3rem,5vw,5.2rem);
  line-height:.96;
  letter-spacing:-.055em
}

.homepage-contact-copy > p:last-child {
  max-width:520px;
  margin:26px 0 0;
  color:var(--text-soft);
  font-size:1.08rem
}

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

.homepage-contact-card {
  min-width:0;
  padding:24px 26px;
  border:1px solid var(--border);
  border-radius:21px;
  background:#fff;
  cursor:pointer;
  transition:border-color var(--transition),transform var(--transition)
}

.homepage-contact-card:hover {
  border-color:var(--accent);
  transform:translateY(-4px)
}

.homepage-contact-card:focus-visible {
  border-color:var(--accent);
  outline:2px solid var(--accent);
  outline-offset:3px;
  transform:translateY(-4px)
}

.homepage-contact-card h3 {
  margin:0;
  font-size:1.45rem
}

.homepage-contact-card p {
  margin:8px 0 0;
  overflow-wrap:anywhere;
  color:var(--text-soft);
  font-size:.92rem
}

/* ==========================================================
   ABOUT AND FOOTER
   ========================================================== */
.about-section {
  padding:95px 0;
  border-top:1px solid var(--border);
  background:#fff
}

.about-layout {
  display:grid;
  grid-template-columns:.8fr 1.1fr 1fr;
  gap:55px;
  align-items:start
}

.about-layout h2 {
  margin:0;
  padding-left:34px;
  border-left:1px solid var(--border);
  font-size:clamp(2rem,3.4vw,3.4rem)
}

.about-layout > p {
  max-width:430px
}

.site-footer {
  padding:30px 0;
  border-top:1px solid var(--border)
}

.footer-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  color:var(--text-muted);
  font-size:.85rem
}

.footer-inner p {
  margin:0
}

.footer-links {
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:12px 28px
}

.footer-links a {
  transition:color var(--transition)
}

.footer-links a:hover {
  color:var(--text)
}

/* ==========================================================
   INFORMATIONAL PAGES
   ========================================================== */
.info-page {
  min-height:100vh;
  padding:170px 0 110px;
  background:#fff
}

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

.info-header {
  max-width:780px;
  margin-bottom:64px;
  padding-bottom:46px;
  border-bottom:1px solid var(--border)
}

.info-header h1 {
  margin:14px 0 0;
  font-size:clamp(3.2rem,7vw,6.2rem);
  line-height:.94;
  letter-spacing:-.055em
}

.info-intro {
  max-width:720px;
  margin:28px 0 0;
  color:var(--text-soft);
  font-size:clamp(1.12rem,2vw,1.35rem)
}

.info-updated {
  margin:22px 0 0;
  color:var(--text-muted);
  font-size:.9rem;
  font-weight:600
}

.info-content {
  display:grid;
  gap:52px
}

.info-section {
  scroll-margin-top:110px
}

.info-section + .info-section {
  padding-top:52px;
  border-top:1px solid var(--border)
}

.info-section h2 {
  margin:0 0 18px;
  font-size:clamp(1.8rem,3vw,2.35rem);
  line-height:1.08;
  letter-spacing:-.035em
}

.info-section h3 {
  margin:30px 0 10px;
  font-size:1.15rem;
  line-height:1.25
}

.info-section p {
  max-width:780px;
  margin:0;
  color:var(--text-soft)
}

.info-section p + p {
  margin-top:16px
}

.info-section ul {
  margin:18px 0 0;
  padding-left:1.2em;
  color:var(--text-soft)
}

.info-section li + li {
  margin-top:8px
}

.info-section strong {
  color:var(--text);
  font-weight:700
}

.info-section a,
.contact-link {
  color:var(--accent-dark);
  font-weight:700;
  text-decoration:underline;
  text-decoration-color:rgba(0,159,150,.35);
  text-underline-offset:.2em;
  transition:color var(--transition),text-decoration-color var(--transition)
}

.info-section a:hover,
.contact-link:hover {
  color:var(--text);
  text-decoration-color:var(--text)
}

.instruction-path {
  margin-top:18px!important;
  padding:18px 22px;
  border:1px solid var(--border);
  border-radius:14px;
  color:var(--text)!important;
  font-weight:700
}

.control-list,
.troubleshooting-list,
.contact-grid {
  margin-top:26px;
  display:grid;
  gap:14px
}

.control-item,
.troubleshooting-item,
.contact-card {
  padding:24px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff
}

.control-item h3,
.troubleshooting-item h3,
.contact-card h2 {
  margin:0 0 8px
}

.control-item p,
.troubleshooting-item p,
.contact-card p {
  margin:0
}

.contact-grid {
  grid-template-columns:repeat(2,minmax(0,1fr))
}

.contact-card h2 {
  font-size:1.55rem;
  letter-spacing:-.025em
}

.contact-card .contact-link {
  margin-top:18px;
  display:inline-block
}

.support-note {
  margin-top:34px;
  padding:24px;
  border-left:3px solid var(--accent);
  background:#f7fbfb
}

.support-note p {
  margin:0
}

/* ==========================================================
   BLOG
   ========================================================== */
.main-navigation a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color:var(--accent-dark)
}

.blog-index-page,
.blog-post-page {
  min-height:100vh
}

.blog-index-hero {
  padding:190px 0 95px;
  border-bottom:1px solid var(--border);
  background:
    radial-gradient(circle at 82% 30%,rgba(0,209,193,.14),transparent 28%),
    linear-gradient(180deg,#fff,#f7fbfb)
}

.blog-index-hero h1 {
  max-width:900px;
  margin:18px 0 0;
  font-size:clamp(4rem,9vw,8.5rem);
  line-height:.88;
  letter-spacing:-.065em
}

.blog-index-hero > .container > p:last-child {
  max-width:660px;
  margin:34px 0 0;
  color:var(--text-soft);
  font-size:clamp(1.15rem,2vw,1.4rem)
}

.blog-list-section {
  padding:92px 0 120px
}

.blog-list {
  display:grid;
  gap:0
}

.blog-card {
  padding:52px 0;
  display:grid;
  grid-template-columns:minmax(180px,.35fr) minmax(0,1fr) auto;
  gap:34px 56px;
  align-items:start;
  border-bottom:1px solid var(--border)
}

.blog-card:first-child {
  border-top:1px solid var(--border)
}

.blog-card-meta {
  margin:9px 0 0;
  display:grid;
  gap:8px;
  color:var(--text-muted);
  font-size:.86rem;
  font-weight:600
}

.blog-card h2 {
  margin:0;
  font-size:clamp(2rem,3.7vw,3.6rem);
  line-height:1;
  letter-spacing:-.045em
}

.blog-card h2 a:hover {
  color:var(--accent-dark)
}

.blog-card > p:not(.blog-card-meta) {
  grid-column:2;
  max-width:760px;
  margin:0;
  color:var(--text-soft)
}

.blog-read-link {
  grid-column:3;
  grid-row:1 / span 2;
  min-height:48px;
  padding:11px 18px;
  border:1px solid var(--border);
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:20px;
  font-weight:700;
  transition:var(--transition)
}

.blog-read-link:hover {
  color:#fff;
  border-color:var(--accent-dark);
  background:var(--accent-dark);
  transform:translateX(4px)
}

.blog-post-page {
  padding:168px 0 120px;
  background:linear-gradient(180deg,#f7fbfb 0,rgba(247,251,251,0) 540px)
}

.blog-post {
  width:min(calc(100% - 64px),920px);
  margin-inline:auto
}

.blog-post-header {
  padding-bottom:52px;
  border-bottom:1px solid var(--border)
}

.blog-back-link {
  margin-bottom:68px;
  display:inline-flex;
  color:var(--text-muted);
  font-size:.9rem;
  font-weight:700;
  transition:color var(--transition)
}

.blog-back-link:hover {
  color:var(--accent-dark)
}

.blog-post-header h1 {
  margin:18px 0 0;
  font-size:clamp(3.1rem,7vw,6.5rem);
  line-height:.92;
  letter-spacing:-.058em
}

.blog-post-header time {
  margin-top:28px;
  display:block;
  color:var(--text-muted);
  font-size:.92rem;
  font-weight:600
}

.blog-post-content {
  padding:62px 0;
  color:var(--text-soft);
  font-size:1.08rem
}

.blog-post-content > * {
  max-width:760px;
  margin-inline:auto
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  color:var(--text);
  line-height:1.05;
  letter-spacing:-.035em
}

.blog-post-content h2 {
  margin-top:78px;
  margin-bottom:24px;
  font-size:clamp(2.2rem,4vw,3.5rem)
}

.blog-post-content h3 {
  margin-top:52px;
  margin-bottom:18px;
  font-size:clamp(1.6rem,3vw,2.25rem)
}

.blog-post-content p {
  margin-top:0;
  margin-bottom:24px
}

.blog-post-content blockquote {
  margin-top:38px;
  margin-bottom:38px;
  padding:8px 0 8px 30px;
  border-left:3px solid var(--accent);
  color:var(--text);
  font-size:1.35rem;
  font-weight:600
}

.blog-post-content blockquote p {
  margin:0
}

.blog-post-content hr {
  margin-top:68px;
  margin-bottom:68px;
  border:0;
  border-top:1px solid var(--border)
}

.blog-post-content a {
  color:var(--accent-dark);
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:.18em
}

.blog-post-content img {
  width:100%;
  margin:40px 0;
  border:1px solid var(--border);
  border-radius:22px
}

.blog-post-content pre {
  padding:24px;
  overflow:auto;
  border-radius:16px;
  color:#e8efee;
  background:#11151a
}

.blog-post-content code {
  font-size:.88em
}

.blog-attachments {
  padding-top:52px;
  border-top:1px solid var(--border)
}

.blog-attachments h2 {
  margin:0 0 24px;
  font-size:2rem;
  letter-spacing:-.035em
}

.blog-attachment-list {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px
}

.blog-attachment {
  min-width:0;
  padding:20px;
  border:1px solid var(--border);
  border-radius:18px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:5px 20px;
  align-items:center;
  transition:var(--transition)
}

.blog-attachment:hover {
  border-color:var(--accent);
  transform:translateY(-3px)
}

.blog-attachment-type {
  grid-column:1 / -1;
  color:var(--text-muted);
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase
}

.blog-attachment strong {
  overflow:hidden;
  text-overflow:ellipsis
}

.blog-attachment-image {
  display:block
}

.blog-attachment-image img {
  width:100%;
  aspect-ratio:16 / 9;
  margin-bottom:14px;
  border-radius:10px;
  object-fit:cover
}

.blog-attachment-image span {
  font-weight:700
}

.blog-author {
  margin-top:72px;
  padding:30px 32px;
  border:1px solid var(--border);
  border-radius:24px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:22px;
  align-items:center;
  background:
    radial-gradient(circle at 100% 0,rgba(0,209,193,.09),transparent 42%),
    #fff
}

.blog-author-photo {
  width:88px;
  height:88px;
  border:3px solid #fff;
  border-radius:50%;
  box-shadow:0 0 0 1px var(--border),0 10px 28px rgba(16,20,29,.12);
  object-fit:cover;
  object-position:center 38%
}

.blog-author-details {
  min-width:0;
  display:grid;
  line-height:1.2
}

.blog-author-label {
  margin-bottom:7px;
  color:var(--accent-dark);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase
}

.blog-author-details strong {
  font-size:1.4rem;
  letter-spacing:-.02em
}

.blog-author-details > span:last-child {
  margin-top:5px;
  color:var(--text-muted);
  font-size:.9rem;
  font-weight:600
}

.blog-author-brand {
  padding-left:28px;
  border-left:1px solid var(--border);
  display:flex;
  align-items:center
}

.blog-author-brand img {
  width:154px;
  height:auto
}

/* ==========================================================
   REVEAL ANIMATION
   ========================================================== */
.reveal {
  opacity:0;
  transform:translateY(28px);
  transition:opacity 700ms ease,transform 700ms cubic-bezier(.2,.75,.25,1)
}

.reveal.is-visible {
  opacity:1;
  transform:none
}

/* ==========================================================
   RESPONSIVE: TABLET
   ========================================================== */
@media(max-width:1120px) {
  .plugin-grid {
    grid-template-columns:1fr
  }
  .product-card {
    grid-template-columns:34% 66%
  }
  .applications-layout {
    grid-template-columns:1fr;
    gap:50px
  }
  .homepage-contact-layout {
    grid-template-columns:1fr;
    gap:50px
  }
  .about-layout {
    grid-template-columns:1fr 1fr
  }
  .product-page-hero {
    grid-template-columns:170px minmax(0,1fr);
    gap:44px
  }
  .product-page-icon {
    width:170px;
    height:170px
  }
  .about-layout > p {
    grid-column:2
  }
  .blog-card {
    grid-template-columns:160px minmax(0,1fr);
    gap:24px 36px
  }
  .blog-read-link {
    grid-column:2;
    grid-row:auto;
    justify-self:start
  }
}

/* ==========================================================
   RESPONSIVE: MOBILE
   ========================================================== */
@media(max-width:760px) {
  body {
    font-size:16px
  }
  .container {
    width:min(calc(100% - 30px),var(--container))
  }
  .header-inner {
    min-height:68px
  }
  .brand-logo-svg-small {
    width:156px
  }
  .mobile-menu-button {
    display:flex
  }
  .mobile-menu-button[aria-expanded="true"] span:first-child {
    transform:translateY(4.5px) rotate(45deg)
  }
  .mobile-menu-button[aria-expanded="true"] span:last-child {
    transform:translateY(-4.5px) rotate(-45deg)
  }
  .main-navigation {
    position:fixed;
    top:68px;
    right:0;
    left:0;
    height:calc(100vh - 68px);
    padding:44px 24px;
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    background:rgba(255,255,255,.98);
    transform:translateX(100%);
    transition:transform var(--transition)
  }
  .main-navigation.is-open {
    transform:none
  }
  .main-navigation>a {
    padding:15px 4px;
    border-bottom:1px solid var(--border);
    font-size:1.15rem
  }
  .hero {
    min-height:700px;
    padding:128px 0 90px
  }
  .hero-content {
    text-align:center
  }
  .brand-logo-svg-hero {
    width:100%
  }
  .brand-logo-svg-footer {
    width:230px
  }
  .hero-description {
    margin-inline:auto
  }
  .section {
    padding:90px 0
  }
  .section-heading {
    grid-template-columns:1fr;
    gap:24px
  }
  .product-card {
    grid-template-columns:1fr
  }
  .product-accent-panel {
    min-height:240px
  }
  .product-media img {
    min-height:245px
  }
  .application-item {
    grid-template-columns:72px 1fr auto;
    padding:16px
  }
  .application-icon {
    width:72px;
    height:72px
  }
  .homepage-contact-grid {
    grid-template-columns:1fr
  }
  .homepage-contact-card {
    padding:20px
  }
  .about-layout {
    grid-template-columns:1fr
  }
  .about-layout h2 {
    padding:28px 0 0;
    border-top:1px solid var(--border);
    border-left:0
  }
  .about-layout > p {
    grid-column:auto
  }
  .footer-inner {
    flex-direction:column;
    align-items:flex-start
  }
  .footer-links {
    justify-content:flex-start
  }
  .info-page {
    padding:124px 0 78px
  }
  .info-container {
    width:min(calc(100% - 30px),920px)
  }
  .info-header {
    margin-bottom:46px;
    padding-bottom:34px
  }
  .info-header h1 {
    font-size:clamp(2.75rem,14vw,4.4rem)
  }
  .info-content {
    gap:40px
  }
  .info-section + .info-section {
    padding-top:40px
  }
  .control-item,
  .troubleshooting-item,
  .contact-card,
  .support-note {
    padding:20px
  }
  .contact-grid {
    grid-template-columns:1fr
  }
  .product-page {
    padding:124px 0 78px
  }
  .product-page-container {
    width:min(calc(100% - 30px),1180px)
  }
  .product-page-hero {
    grid-template-columns:1fr;
    gap:34px
  }
  .product-page-icon {
    width:118px;
    height:118px
  }
  .product-page-copy h1 {
    font-size:clamp(2.8rem,15vw,4.8rem)
  }
  .product-page-banner {
    margin-top:58px;
    padding:9px;
    border-radius:20px
  }
  .product-page-banner-heading {
    padding:4px 5px 12px;
    font-size:.62rem
  }
  .product-page-banner-heading span:last-child {
    display:none
  }
  .product-page-banner > img {
    border-radius:13px
  }
  .blog-index-hero {
    padding:138px 0 72px
  }
  .blog-index-hero h1 {
    font-size:clamp(3.5rem,19vw,5.6rem)
  }
  .blog-list-section {
    padding:58px 0 86px
  }
  .blog-card {
    padding:38px 0;
    grid-template-columns:1fr;
    gap:18px
  }
  .blog-card-meta {
    margin:0
  }
  .blog-card > p:not(.blog-card-meta),
  .blog-read-link {
    grid-column:1
  }
  .blog-post-page {
    padding:120px 0 82px
  }
  .blog-post {
    width:min(calc(100% - 30px),920px)
  }
  .blog-back-link {
    margin-bottom:48px
  }
  .blog-post-header {
    padding-bottom:38px
  }
  .blog-post-header h1 {
    font-size:clamp(2.7rem,14vw,4.7rem)
  }
  .blog-post-content {
    padding:46px 0;
    font-size:1rem
  }
  .blog-post-content h2 {
    margin-top:58px
  }
  .blog-post-content hr {
    margin-top:48px;
    margin-bottom:48px
  }
  .blog-post-content blockquote {
    padding-left:20px;
    font-size:1.18rem
  }
  .blog-attachment-list {
    grid-template-columns:1fr
  }
  .blog-author {
    margin-top:54px;
    padding:24px;
    grid-template-columns:auto 1fr;
    gap:18px
  }
  .blog-author-photo {
    width:72px;
    height:72px
  }
  .blog-author-brand {
    grid-column:1 / -1;
    padding:20px 0 0;
    border-top:1px solid var(--border);
    border-left:0
  }
  .blog-author-brand img {
    width:136px
  }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*::before,*::after {
    transition-duration:.01ms!important
  }
}



.product-buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;

  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.product-page-hero-with-buy {
  align-items:center
}

.product-page-buy-stack {
  width:220px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:58px
}

.product-page-hero-with-buy .product-page-copy {
  align-self:center
}

.product-page-buy-stack .product-buy-button {
  width:100%
}

.enable-buy-button {
  color: #ffffff;
  background-color: #9276bd;
  border-color: #9276bd;
  box-shadow: 0 8px 22px rgba(146, 118, 189, 0.22);
}

.enable-buy-button:hover {
  color: #ffffff;
  background-color: #8063ae;
  border-color: #8063ae;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(146, 118, 189, 0.3);
}

.enable-buy-button:active {
  transform: translateY(0);
}

.enable-buy-button:focus-visible {
  outline: 3px solid rgba(146, 118, 189, 0.35);
  outline-offset: 3px;
}

.framegap-buy-button {
  color:#fff;
  background-color:#467fd0;
  border-color:#467fd0;
  box-shadow:0 8px 22px rgba(70,127,208,.24)
}

.framegap-buy-button:hover {
  color:#fff;
  background-color:#386fbd;
  border-color:#386fbd;
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(70,127,208,.34)
}

.framegap-buy-button:active {
  transform:translateY(0)
}

.framegap-buy-button:focus-visible {
  outline:3px solid rgba(70,127,208,.36);
  outline-offset:3px
}

@media(max-width:1120px) {
  .product-page-buy-stack {
    width:170px;
    gap:36px
  }
}

@media(max-width:760px) {
  .product-page-buy-stack {
    width:min(220px,100%);
    gap:29px
  }
}
