@charset "UTF-8";
:root {
  color-scheme:dark;
  --bg:#111d2b;
  --surface:#1b2c3e;
  --text:#f6f8fc;
  --muted:#afbdcc;
  --accent:#ff8580;
  --line:#334354;
  --radius:24px;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  font-synthesis:none;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:32px;
}

body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-size:1rem;
  line-height:1.6;
}

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

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

a {
  -webkit-tap-highlight-color:transparent;
}

a:focus-visible {
  outline:3px solid var(--accent);
  outline-offset:7px;
  border-radius:4px;
}

::selection {
  background:var(--accent);
  color:var(--bg);
}

.wrap {
  width:min(1280px,calc(100% - 112px));
  margin-inline:auto;
}

.skip-link {
  position:absolute;
  top:-100px;
  left:20px;
  padding:12px 24px;
  background:var(--accent);
  color:var(--bg);
  z-index:10;
}

.skip-link:focus {
  top:12px;
}

.site-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-block:28px;
  border-bottom:1px solid var(--line);
}

.brand {
  display:inline-flex;
  gap:10px;
  align-items:center;
  flex-shrink:0;
}

.brand span {
  font-size:2rem;
  font-weight:650;
  letter-spacing:-1.8px;
  line-height:1;
}

.site-header nav {
  display:flex;
  align-items:center;
  gap:34px;
  font-size:.875rem;
  font-weight:500;
}

.site-header nav>a:not(.nav-download) {
  color:#bdcad8;
}

.site-header nav a:hover {
  color:var(--accent);
}

.nav-download {
  border:1px solid #65788c;
  border-radius:50px;
  padding:10px 22px;
}

.nav-download span {
  margin-left:16px;
}

.hero {
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:40px;
  align-items:center;
  min-height:740px;
  padding-block:64px 72px;
}

.hero-copy {
  position:relative;
  z-index:1;
}

.eyebrow {
  font-size:.75rem;
  font-weight:650;
  letter-spacing:1.6px;
  display:flex;
  align-items:center;
  gap:12px;
  line-height:1.5;
  margin:0 0 30px;
}

.mini-line {
  width:25px;
  height:2px;
  background:var(--accent);
  flex-shrink:0;
}

h1,h2,h3,p {
  margin-top:0;
}

h1 {
  font-size:clamp(3.6rem,6.6vw,6rem);
  font-weight:650;
  line-height:1.04;
  letter-spacing:-.068em;
  margin-bottom:28px;
}

h1 em {
  font-style:normal;
  color:var(--accent);
}

.hero-description {
  font-size:1.125rem;
  line-height:1.7;
  color:var(--muted);
  max-width:390px;
  margin-bottom:30px;
}

.store-button {
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:var(--text);
  color:#111d2b;
  padding:12px 23px;
  border-radius:12px;
  min-height:64px;
  transition:background .2s,transform .2s;
}

.store-button:hover {
  background:var(--accent);
  transform:translateY(-2px);
}

.store-button span {
  display:flex;
  flex-direction:column;
  line-height:1.15;
}

.store-button small {
  font-size:.75rem;
}

.store-button strong {
  font-size:1.5rem;
  font-weight:600;
  letter-spacing:-.5px;
}

.availability {
  font-size:.8125rem;
  color:var(--muted);
  margin:14px 0 0;
}

.explore-link {
  display:inline-flex;
  align-items:center;
  gap:25px;
  font-size:.875rem;
  margin-top:46px;
}

.explore-link span {
  color:var(--accent);
  font-size:1.4rem;
}

.explore-link:hover {
  color:var(--accent);
}

.hero-visual {
  position:relative;
  min-width:0;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:12px 0 45px;
  isolation:isolate;
}

.hero-visual:before {
  content:"";
  position:absolute;
  inset:7% -2% 6%;
  background:radial-gradient(ellipse,#28567a 0,transparent 68%);
  z-index:-2;
}

.visual-word {
  position:absolute;
  top:22%;
  left:-6%;
  font-size:clamp(9rem,21vw,19rem);
  line-height:1;
  font-weight:800;
  letter-spacing:-.1em;
  color:#243a50;
  z-index:-1;
  transform:rotate(-90deg);
  user-select:none;
}

.screenshot-frame {
  width:280px;
  padding:7px;
  border:1px solid #657c93;
  background:#1b2d40;
  border-radius:42px;
  transform:rotate(7deg);
  box-shadow:12px 28px 65px #0007;
  overflow:hidden;
}

.screenshot-frame img {
  width:100%;
  border-radius:35px;
}

.visual-caption {
  position:absolute;
  bottom:0;
  left:6%;
  right:0;
  display:flex;
  justify-content:space-between;
  font-size:.75rem;
  letter-spacing:1.4px;
  color:var(--muted);
  gap:20px;
}

.visual-caption span:first-child {
  color:var(--accent);
}

.learning-strip {
  border-block:1px solid var(--line);
}

.learning-strip>.wrap {
  display:flex;
  gap:30px;
  align-items:center;
  justify-content:space-between;
  padding-block:25px;
}

.learning-strip .wrap>span {
  font-size:.75rem;
  letter-spacing:1.2px;
  color:var(--muted);
  max-width:180px;
}

.learning-strip ul {
  display:flex;
  justify-content:space-between;
  flex:1;
  max-width:830px;
  gap:24px;
  padding:0;
  margin:0;
  list-style:none;
  font-size:1.125rem;
  font-weight:550;
}

.site-footer {
  padding-block:36px;
  display:flex;
  gap:28px;
  align-items:center;
  border-top:1px solid var(--line);
}

.site-footer .brand span {
  font-size:1.6rem;
}

.site-footer p {
  margin:0;
  color:var(--muted);
  font-size:.875rem;
}

.site-footer>div {
  margin-left:auto;
  display:flex;
  gap:26px;
  font-size:.875rem;
  color:var(--muted);
}

.site-footer a:hover {
  color:var(--accent);
}

@media(min-width:1500px) {
  .hero {
    min-height:800px;
  }
  .screenshot-frame {
    width:310px;
  }
}

@media(max-width:1000px) {
  .wrap {
    width:calc(100% - 64px);
  }
  .hero {
    gap:20px;
    min-height:680px;
  }
  h1 {
    font-size:clamp(3.25rem,6.7vw,5rem);
  }
  .eyebrow {
    letter-spacing:1px;
  }
  .screenshot-frame {
    width:240px;
  }
  .visual-caption {
    left:0;
    letter-spacing:.5px;
  }
  .learning-strip ul {
    font-size:1rem;
    gap:20px;
  }
  .learning-strip .wrap>span {
    max-width:150px;
  }
}

@media(max-width:700px) {
  .wrap {
    width:calc(100% - 40px);
  }
  .site-header {
    padding-block:21px;
  }
  .site-header .brand img {
    width:30px;
  }
  .brand span {
    font-size:1.75rem;
  }
  .site-header nav {
    gap:0;
  }
  .site-header nav>a:not(.nav-download) {
    display:none;
  }
  .nav-download {
    padding:8px 18px;
  }
  .hero {
    grid-template-columns:1fr;
    gap:30px;
    padding-block:48px 34px;
  }
  .hero-copy {
    max-width:520px;
  }
  h1 {
    font-size:clamp(3.3rem,11vw,5rem);
    letter-spacing:-.06em;
  }
  .eyebrow {
    letter-spacing:.8px;
    margin-bottom:24px;
  }
  .hero-description {
    font-size:1.0625rem;
    max-width:340px;
  }
  .explore-link {
    margin-top:24px;
  }
  .hero-visual {
    padding:20px 0 45px;
    max-width:440px;
    width:100%;
    margin-inline:auto;
  }
  .screenshot-frame {
    width:235px;
    transform:rotate(5deg);
  }
  .visual-word {
    font-size:15rem;
    left:-2%;
    top:21%;
  }
  .visual-caption {
    left:0;
    right:0;
    letter-spacing:.5px;
  }
  .learning-strip>.wrap {
    display:block;
    padding-block:22px;
  }
  .learning-strip .wrap>span {
    max-width:none;
    display:block;
    margin-bottom:14px;
  }
  .learning-strip ul {
    flex-wrap:wrap;
    gap:10px 25px;
    justify-content:flex-start;
    font-size:1rem;
  }
  .site-footer {
    flex-wrap:wrap;
    gap:18px;
    padding-block:28px;
  }
  .site-footer>div {
    width:100%;
    margin-left:0;
  }
  .site-footer p {
    margin-left:auto;
    font-size:.8125rem;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important;
  }
}

/* The product story */
h2 {
  font-size:clamp(2.4rem,4vw,3.75rem);
  line-height:1.1;
  letter-spacing:-.055em;
  font-weight:600;
  margin-bottom:24px;
}

h3 {
  font-size:1.375rem;
  line-height:1.35;
  letter-spacing:-.025em;
  font-weight:550;
  margin-bottom:16px;
}

.features {
  padding-block:112px 104px;
}

.section-heading {
  max-width:650px;
}

.section-heading>p:last-child {
  max-width:410px;
  color:var(--muted);
  font-size:1.125rem;
}

.section-heading .eyebrow,.custom-copy .eyebrow,.companion .eyebrow {
  color:var(--accent);
  margin-bottom:25px;
}

.feature-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:48px;
  margin-top:66px;
}

.feature-grid article {
  border-top:1px solid var(--line);
  padding-top:25px;
}

.feature-number {
  display:block;
  color:var(--accent);
  font-size:.75rem;
  letter-spacing:1.6px;
  margin-bottom:28px;
}

.feature-grid p {
  color:var(--muted);
  margin:0;
  max-width:330px;
}

.custom-section {
  background:#edf4fa;
  color:#172d43;
  overflow:hidden;
}

.custom-layout {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  gap:90px;
  padding-block:80px;
}

.custom-copy .eyebrow {
  color:#a53632;
}

.custom-copy>p:not(.eyebrow) {
  max-width:430px;
  color:#4d6276;
  font-size:1.125rem;
}

.custom-benefits {
  list-style:none;
  padding:0;
  margin:30px 0;
}

.custom-benefits li {
  position:relative;
  padding:12px 0 12px 25px;
  border-bottom:1px solid #cbd8e3;
  font-size:1rem;
}

.custom-benefits li:before {
  content:"+";
  position:absolute;
  left:0;
  color:#a53632;
  font-weight:600;
}

.text-link {
  display:inline-flex;
  align-items:center;
  gap:20px;
  font-size:.875rem;
  font-weight:600;
  padding-block:12px;
}

.text-link:hover {
  text-decoration:underline;
  text-underline-offset:5px;
}

.custom-visual {
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:26px;
  position:relative;
}

.custom-image {
  border:1px solid #687d92;
  border-radius:38px;
  padding:6px;
  background:#1b2d40;
  overflow:hidden;
  width:245px;
  box-shadow:18px 28px 60px #16385330;
  transform:rotate(-5deg);
}

.custom-image img {
  border-radius:31px;
}

.custom-visual figcaption {
  font-size:.75rem;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#4d6276;
}

.companion {
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:100px;
  padding-block:112px;
}

.companion h2 span {
  color:var(--muted);
}

.companion-details article {
  border-bottom:1px solid var(--line);
  padding-block:26px;
}

.companion-details article:first-child {
  padding-top:0;
}

.companion-details h3 {
  font-size:1.25rem;
  margin-bottom:10px;
}

.companion-details p {
  color:var(--muted);
  margin:0;
  max-width:410px;
}

.download-section {
  background:var(--accent);
  color:#172d43;
  border-radius:var(--radius);
  padding:54px 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  margin-bottom:85px;
}

.download-section .eyebrow {
  font-size:.75rem;
  letter-spacing:1.4px;
  margin-bottom:22px;
}

.download-section h2 {
  font-size:clamp(2.5rem,4.7vw,4.5rem);
  margin-bottom:10px;
}

.download-section h2 em {
  font-style:normal;
}

.download-section p {
  margin-bottom:0;
}

.download-button {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:30px;
  padding:18px 25px;
  background:#172d43;
  color:#f6f8fc;
  border-radius:50px;
  font-weight:550;
  white-space:nowrap;
  transition:background .2s,transform .2s;
}

.download-button:hover {
  background:#294966;
  transform:translateY(-2px);
}

.download-action>p {
  font-size:.75rem;
  text-align:center;
  margin-top:12px;
}

.custom-section a:focus-visible,.download-section a:focus-visible {
  outline-color:#172d43;
}

@media(max-width:1000px) {
  .feature-grid {
    gap:28px;
  }
  .custom-layout {
    gap:50px;
  }
  .companion {
    gap:50px;
  }
  .download-section {
    padding:42px 35px;
  }
}

@media(max-width:700px) {
  h1 {
    font-size:clamp(2.7rem,10.8vw,4.7rem);
  }
  h2 {
    font-size:clamp(2.2rem,8vw,3rem);
  }
  .features {
    padding-block:70px;
  }
  .feature-grid {
    grid-template-columns:1fr;
    gap:32px;
    margin-top:40px;
  }
  .feature-grid article {
    padding-top:20px;
  }
  .feature-grid h3 br {
    display:none;
  }
  .feature-number {
    margin-bottom:15px;
  }
  .feature-grid p {
    max-width:450px;
  }
  .custom-layout {
    grid-template-columns:1fr;
    gap:40px;
    padding-block:60px;
  }
  .custom-visual {
    padding:12px 0;
  }
  .custom-image {
    width:230px;
  }
  .companion {
    grid-template-columns:1fr;
    gap:28px;
    padding-block:70px;
  }
  .companion h2 {
    margin-bottom:0;
  }
  .download-section {
    display:block;
    padding:32px 25px;
    margin-bottom:50px;
    border-radius:20px;
  }
  .download-section h2 {
    font-size:clamp(2.2rem,8.5vw,3.6rem);
  }
  .download-action {
    display:inline-block;
    margin-top:28px;
  }
  .download-section .eyebrow {
    font-size:.75rem;
    letter-spacing:.8px;
  }
  .download-button {
    white-space:normal;
  }
  .hero-copy {
    min-width:0;
  }
  .visual-word {
    max-width:100%;
  }
}

/* Terms and privacy share the landing page's type, colors and navigation. */
.legal-page {
  padding-block: 50px 100px;
}

.legal-heading {
  max-width: 780px;
  padding-bottom: 64px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .875rem;
  padding-block: 10px;
  margin-bottom: 40px;
}

.legal-back:hover {
  color: var(--accent);
}

.legal-heading .eyebrow {
  color: var(--muted);
}

.legal-heading h1 {
  margin-bottom: 24px;
}

.legal-intro {
  color: var(--muted);
  max-width: 520px;
  font-size: 1.25rem;
  line-height: 1.6;
}

.legal-date {
  color: var(--muted);
  font-size: .875rem;
  margin: 24px 0 0;
}

.legal-date time {
  color: var(--text);
  margin-left: 8px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 225px minmax(0, 760px);
  align-items: start;
  gap: clamp(40px, 7vw, 110px);
  border-top: 1px solid var(--line);
}

.legal-sidebar {
  position: sticky;
  top: 32px;
  padding-top: 36px;
}

.legal-sidebar nav {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.legal-sidebar .eyebrow {
  color: var(--accent);
  margin-bottom: 18px;
}

.legal-sidebar nav a {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.5;
  padding-block: 10px;
}

.legal-sidebar a:hover {
  color: var(--accent);
}

.legal-sidebar-note {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .875rem;
}

.legal-sidebar-note a {
  display: inline-block;
  color: var(--text);
  padding-top: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  padding-block: 48px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 16px;
}

.legal-content section:first-child {
  padding-top: 36px;
}

.legal-section-label {
  color: var(--accent);
  font-size: .75rem;
  letter-spacing: 1.5px;
  font-weight: 550;
  margin-bottom: 14px;
}

.legal-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -.04em;
  line-height: 1.2;
  margin-bottom: 26px;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 30px;
  margin-bottom: 12px;
}

.legal-content p:not(.legal-section-label),
.legal-content li,
.legal-content dd,
.legal-content address {
  color: #bdcad8;
  font-size: 1rem;
  line-height: 1.85;
}

.legal-content p {
  margin-bottom: 20px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.legal-content a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: #60788c;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.legal-content a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.legal-content ul {
  padding-left: 22px;
  margin-block: 22px;
}

.legal-content li {
  padding-left: 5px;
  margin-bottom: 12px;
}

.legal-content li::marker {
  color: var(--accent);
}

.legal-data-list {
  margin-block: 30px;
}

.legal-data-list > div {
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.legal-data-list > div:first-child {
  padding-top: 0;
}

.legal-data-list dt {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.legal-data-list dd {
  margin: 0;
}

.legal-content .legal-provider-links {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.legal-provider-links li {
  margin: 0;
  padding: 0;
}

.legal-provider-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  height: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: .875rem;
  line-height: 1.6;
  text-decoration: none;
  background: var(--surface);
}

.legal-content .legal-email {
  display: inline-block;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  color: var(--accent);
  margin-top: 4px;
}

.legal-email span {
  margin-left: 12px;
}

.legal-operator {
  margin-top: 32px;
  padding: 26px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--line);
}

.legal-operator h3 {
  margin-top: 0;
}

.legal-operator address {
  font-style: normal;
  margin-bottom: 18px;
}

.legal-content section:last-child {
  border: 0;
  padding-bottom: 0;
}

@media(max-width: 900px) {
  .legal-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 32px;
  }

  .legal-content .legal-provider-links {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 700px) {
  .legal-page {
    padding-block: 26px 64px;
  }

  .legal-back {
    margin-bottom: 30px;
  }

  .legal-heading {
    padding-bottom: 40px;
  }

  .legal-intro {
    font-size: 1.125rem;
  }

  .legal-layout {
    display: block;
  }

  .legal-sidebar {
    position: static;
    padding-block: 28px;
    border-bottom: 1px solid var(--line);
  }

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

  .legal-sidebar .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 10px;
  }

  .legal-sidebar-note {
    margin-top: 18px;
    padding-top: 18px;
  }

  .legal-content section {
    padding-block: 36px;
  }

  .legal-operator {
    padding: 22px;
  }
}

/* Irregular Verbs: Cero's layout with the app's blue and coral identity. */
.brand img { border-radius: 9px; }
.brand span { font-size: 1.35rem; letter-spacing: -.045em; line-height: 1.05; }
.hero { grid-template-columns: 1.2fr 1fr; }
h1 { font-size: clamp(3.5rem, 6.3vw, 5.75rem); }
.hero-description { max-width: 440px; }
.eyebrow, .feature-number, .learning-strip .wrap>span, .visual-caption,
.custom-visual figcaption, .download-section .eyebrow { font-size: .875rem; }
.hero-visual { padding-block: 25px 55px; }
.visual-word { transform: none; left: -3%; top: 10%; font-size: clamp(6rem, 12vw, 11rem); line-height: .95; letter-spacing: -.075em; }
.visual-word span { display: block; }
.screenshot-frame { width: 295px; border-radius: 27px; transform: rotate(5deg); }
.screenshot-frame img { border-radius: 20px; }
.visual-caption { left: 0; justify-content: center; }
.learning-strip ul { max-width: 780px; }
.learning-strip .wrap>span { max-width: 200px; }
.verb-example { margin: 0; padding: 38px; background: #fff; border: 1px solid #cbd8e3; border-radius: 20px; box-shadow: 14px 20px 0 #dae6f0; }
.verb-example>p { font-size: .875rem; color: #4d6276; margin-bottom: 26px; }
.verb-example dl { margin: 0; }
.verb-example dl>div { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; padding-block: 18px; border-top: 1px solid #dbe4ed; }
.verb-example dt { color: #4d6276; font-size: .875rem; }
.verb-example dd { font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 650; letter-spacing: -.05em; line-height: 1.1; margin: 0; }
.verb-example dl>div:last-child dd { color: #a53632; }
.verb-example figcaption { margin-top: 30px; padding-top: 24px; border-top: 1px solid #dbe4ed; font-size: 1rem; color: #4d6276; }
.verb-example figcaption strong { color: #172d43; }
.site-footer { flex-wrap: wrap; }
.site-footer .brand span { font-size: 1.125rem; }
.site-footer>div { flex-wrap: wrap; gap: 12px 24px; }
.site-footer a { padding-block: 8px; }
.availability, .download-action>p { font-size: .875rem; }
.legal-heading h1 { font-size: clamp(2.7rem, 6vw, 5.5rem); }
.legal-sidebar a[aria-current="page"] { color: var(--accent); }
@media(max-width:1000px) {
  .site-header nav { gap: 20px; }
  .screenshot-frame { width: 250px; }
  .custom-layout { gap: 40px; }
}
@media(max-width:700px) {
  .hero { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.7rem, 10.8vw, 4.7rem); }
  .site-header { gap: 12px; }
  .brand { gap: 8px; }
  .brand span { font-size: 1.125rem; }
  .site-header .brand img { width: 34px; }
  .nav-download { padding: 9px 14px; }
  .nav-download span { margin-left: 8px; }
  .hero-visual { max-width: 380px; }
  .visual-word { font-size: clamp(5rem, 25vw, 7.5rem); left: 0; top: 14%; }
  .screenshot-frame { width: min(250px, 80%); }
  .learning-strip .wrap>span { max-width: none; }
  .verb-example { padding: 26px; box-shadow: 8px 12px 0 #dae6f0; }
  .site-footer p { margin-left: 0; font-size: .875rem; }
  .site-footer>div { gap: 12px 22px; }
}
@media(max-width:360px) {
  .wrap { width: calc(100% - 32px); }
  .site-header { flex-wrap: wrap; }
  .eyebrow { letter-spacing: .4px; }
}

/* Equal outer columns keep the studio credit centered in the footer. */
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}
.site-footer > .brand { justify-self: start; }
.site-footer > div { justify-self: end; margin-left: 0; }
.site-footer p.studio-credit { margin: 0; justify-self: center; text-align: center; }
@media (max-width: 900px) {
  .site-footer { grid-template-columns: 1fr; justify-items: center; }
  .site-footer > .brand, .site-footer > div { justify-self: center; }
  .site-footer > div { width: auto; flex-wrap: wrap; justify-content: center; }
}
.studio-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding-block: 6px;
  font-size: .875rem;
  line-height: 1.5;
}
.studio-credit-link img { width: 32px; height: 32px; flex-shrink: 0; }
.studio-credit-link strong { color: var(--text); font-weight: 600; }
.studio-credit-link:hover strong { text-decoration: underline; text-underline-offset: 4px; }

/* English Idioms retains the shared app-site layout with its teal identity. */
:root { --bg: #102a30; --surface: #1b3b42; --muted: #b2c9cd; --accent: #72d8c3; --line: #37565e; }
.hero-visual::before { background: radial-gradient(ellipse, #25656c 0, transparent 68%); }
.visual-word { color: #264b52; }
.screenshot-frame { background: #1b3b42; border-color: #74959c; }
.store-button { color: #102a30; }
.verb-example dd { max-width: 100%; font-size: clamp(1.5rem, 2.8vw, 2.4rem); }
.verb-example dl > div { display: block; }
.verb-example dt { margin-bottom: 9px; }
.custom-section { background: #eaf5f1; color: #173d3e; }
.custom-copy .eyebrow, .custom-benefits li::before, .verb-example dl > div:last-child dd { color: #176c60; }
.custom-copy > p:not(.eyebrow), .verb-example dt, .verb-example > p, .verb-example figcaption { color: #43615c; }
.verb-example { border-color: #c6ded5; box-shadow: 14px 20px 0 #d1e7df; }
.download-section { color: #102a30; }
.download-button { background: #102a30; }
.download-button:hover { background: #24505a; }
@media (max-width: 700px) { .verb-example { box-shadow: 8px 12px 0 #d1e7df; } }
