:root {
  --accent:#ff3f6f;
  --accent-dark:#d82756;
  --accent-soft:#fff0f4;
  --cyan:#18c7d1;
  --cyan-dark:#079ca8;
  --cyan-soft:#eafcfd;
  --dark:#17191d;
  --text:#1d2025;
  --muted:#747982;
  --line:#e4e6ea;
  --bg:#f5f6f8;
  --card:#ffffff;
  --shadow:0 18px 46px rgba(18,21,25,.10);
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(255,63,111,.08), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(24,199,209,.09), transparent 30%),
    var(--bg);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  line-height:1.7;
}

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

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

.site-header {
  width:min(1120px, calc(100% - 32px));
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:0 auto;
}

.brand,
.footer-brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:-.02em;
}

.brand {
  font-size:20px;
}

.brand-mark {
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:#fff;
  background:
    linear-gradient(135deg, var(--accent) 0 48%, var(--cyan) 52% 100%);
  box-shadow:0 8px 20px rgba(23,25,29,.14);
  font-size:13px;
  font-weight:1000;
}

.brand-mark.small {
  width:30px;
  height:30px;
  border-radius:9px;
  font-size:10px;
}

.header-cta {
  padding:9px 15px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.8);
  font-size:13px;
  font-weight:850;
  backdrop-filter:blur(10px);
}

.hero {
  width:min(1120px, calc(100% - 32px));
  min-height:640px;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr);
  align-items:center;
  gap:58px;
  margin:0 auto;
  padding:64px 0 88px;
}

.status-badge {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 11px;
  border-radius:999px;
  color:var(--accent-dark);
  background:var(--accent-soft);
  font-size:12px;
  font-weight:900;
}

.hero h1 {
  margin:20px 0 18px;
  font-size:clamp(38px,5vw,68px);
  line-height:1.14;
  letter-spacing:-.05em;
}

.hero-lead {
  max-width:620px;
  margin:0;
  color:var(--muted);
  font-size:17px;
}

.hero-actions {
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:30px;
}

.primary-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:12px 22px;
  border-radius:15px;
  color:#fff;
  background:var(--dark);
  box-shadow:0 12px 28px rgba(23,25,29,.18);
  font-weight:900;
}

.primary-button:hover {
  transform:translateY(-1px);
}

.text-link {
  color:var(--accent-dark);
  font-size:14px;
  font-weight:850;
}

.small-note {
  margin:16px 0 0;
  color:#92969d;
  font-size:12px;
}

.hero-panel {
  position:relative;
  display:grid;
  place-items:center;
}

.hero-panel::before,
.hero-panel::after {
  content:"";
  position:absolute;
  border-radius:50%;
  filter:blur(2px);
}

.hero-panel::before {
  width:220px;
  height:220px;
  top:30px;
  right:0;
  background:rgba(24,199,209,.14);
}

.hero-panel::after {
  width:170px;
  height:170px;
  left:0;
  bottom:30px;
  background:rgba(255,63,111,.13);
}

.phone-card {
  position:relative;
  z-index:1;
  width:min(390px,100%);
  padding:22px;
  border:1px solid rgba(255,255,255,.9);
  border-radius:30px;
  background:rgba(255,255,255,.94);
  box-shadow:var(--shadow);
  backdrop-filter:blur(16px);
}

.phone-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.phone-logo {
  font-size:18px;
  font-weight:950;
}

.phone-status {
  padding:5px 9px;
  border-radius:999px;
  color:var(--cyan-dark);
  background:var(--cyan-soft);
  font-size:10px;
  font-weight:900;
}

.summary-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin-top:18px;
}

.summary-grid div {
  padding:12px 10px;
  border-radius:14px;
  background:#f7f8fa;
}

.summary-grid small {
  display:block;
  color:var(--muted);
  font-size:9px;
}

.summary-grid strong {
  display:block;
  margin-top:4px;
  font-size:23px;
}

.sample-listener {
  display:grid;
  grid-template-columns:42px minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  margin-top:16px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:17px;
}

.sample-avatar {
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f0f1f3;
  font-size:22px;
}

.sample-copy strong,
.sample-copy small {
  display:block;
}

.sample-copy small {
  color:var(--muted);
  font-size:10px;
}

.sample-time {
  color:var(--accent-dark);
  font-size:11px;
  font-weight:900;
}

.sample-items {
  display:flex;
  gap:8px;
  margin-top:10px;
}

.sample-item {
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:#fff;
  font-size:15px;
  font-weight:1000;
}

.sample-item.cyan {
  background:var(--cyan-dark);
}

.sample-item.magenta {
  background:var(--accent);
}

.sample-item.dark {
  background:var(--dark);
}

.sample-actions {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
  margin-top:18px;
}

.sample-actions span {
  display:grid;
  place-items:center;
  min-height:48px;
  border-radius:14px;
  color:#fff;
  font-size:11px;
  font-weight:900;
}

.sample-register {
  background:var(--accent);
}

.sample-use {
  background:var(--cyan);
  color:#10272a !important;
}

.section-wrap {
  width:min(1040px, calc(100% - 32px));
  margin:0 auto;
  padding:92px 0;
}

.section-heading {
  max-width:660px;
  margin-bottom:34px;
}

.section-heading > span {
  color:var(--accent-dark);
  font-size:11px;
  font-weight:950;
  letter-spacing:.12em;
}

.section-heading h2 {
  margin:8px 0 0;
  font-size:clamp(28px,4vw,42px);
  line-height:1.25;
  letter-spacing:-.035em;
}

.feature-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.feature-card {
  min-height:250px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.9);
  box-shadow:0 10px 30px rgba(18,21,25,.05);
}

.feature-icon {
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:#fff;
  font-weight:950;
}

.magenta-bg {
  background:var(--accent);
}

.cyan-bg {
  color:#10272a;
  background:var(--cyan);
}

.dark-bg {
  background:var(--dark);
}

.feature-card h3 {
  margin:22px 0 8px;
  font-size:19px;
}

.feature-card p {
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.howto {
  padding-top:54px;
}

.step-list {
  display:grid;
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
}

.step-list li {
  display:grid;
  grid-template-columns:54px minmax(0,1fr);
  gap:16px;
  align-items:flex-start;
  padding:20px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}

.step-number {
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#fff;
  background:var(--dark);
  font-size:18px;
  font-weight:950;
}

.step-list h3 {
  margin:1px 0 4px;
  font-size:17px;
}

.step-list p {
  margin:0;
  color:var(--muted);
  font-size:13px;
}

.notice {
  padding-top:42px;
}

.notice-card {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:34px;
  border-radius:26px;
  color:#fff;
  background:
    linear-gradient(135deg, rgba(255,63,111,.96), rgba(196,41,85,.98));
  box-shadow:0 18px 46px rgba(216,39,86,.20);
}

.notice-card .status-badge {
  color:#fff;
  background:rgba(255,255,255,.18);
}

.notice-card h2 {
  margin:14px 0 8px;
  font-size:clamp(24px,3.2vw,36px);
  line-height:1.3;
}

.notice-card p {
  max-width:680px;
  margin:0;
  color:rgba(255,255,255,.84);
  font-size:14px;
}

.notice-card .primary-button {
  flex:0 0 auto;
  color:var(--dark);
  background:#fff;
  box-shadow:none;
}

.site-footer {
  width:min(1040px, calc(100% - 32px));
  margin:0 auto;
  padding:28px 0 42px;
  border-top:1px solid var(--line);
  color:var(--muted);
}

.site-footer p {
  max-width:760px;
  margin:14px 0 8px;
  font-size:11px;
}

.site-footer small {
  font-size:10px;
}

@media (max-width:860px) {
  .hero {
    grid-template-columns:1fr;
    gap:36px;
    padding-top:54px;
  }

  .hero-copy {
    text-align:center;
  }

  .hero-lead {
    margin-inline:auto;
  }

  .hero-actions {
    justify-content:center;
  }

  .feature-grid {
    grid-template-columns:1fr;
  }

  .feature-card {
    min-height:auto;
  }

  .notice-card {
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width:560px) {
  .site-header {
    width:min(100% - 24px,1120px);
  }

  .brand {
    font-size:18px;
  }

  .hero,
  .section-wrap,
  .site-footer {
    width:min(100% - 24px,1040px);
  }

  .hero {
    min-height:auto;
    padding:44px 0 64px;
  }

  .hero h1 {
    font-size:38px;
  }

  .hero-lead {
    font-size:15px;
  }

  .hero-actions {
    flex-direction:column;
    gap:12px;
  }

  .primary-button {
    width:100%;
  }

  .phone-card {
    padding:17px;
    border-radius:24px;
  }

  .summary-grid small {
    font-size:8px;
  }

  .summary-grid strong {
    font-size:20px;
  }

  .section-wrap {
    padding:70px 0;
  }

  .notice-card {
    padding:24px;
  }
}


/* v0.2: iPhone PWA install guide */
.header-actions {
  display:flex;
  align-items:center;
  gap:16px;
}

.header-guide-link {
  color:var(--muted);
  font-size:12px;
  font-weight:800;
}

.install-guide {
  padding-top:54px;
}

.install-heading p {
  max-width:720px;
  margin:14px 0 0;
  color:var(--muted);
  font-size:15px;
}

.install-important {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:22px;
  padding:14px 16px;
  border:1px solid #cdeff1;
  border-radius:17px;
  color:#28585c;
  background:var(--cyan-soft);
}

.install-important > span {
  flex:0 0 auto;
  padding:5px 9px;
  border-radius:999px;
  color:#fff;
  background:var(--cyan-dark);
  font-size:11px;
  font-weight:950;
}

.install-important p {
  margin:0;
  font-size:13px;
}

.install-important code {
  padding:2px 6px;
  border-radius:6px;
  color:#1d2025;
  background:rgba(255,255,255,.75);
  font-family:inherit;
  font-weight:800;
}

.install-step-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  margin:0;
  padding:0;
  list-style:none;
}

.install-step-card {
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:0 10px 30px rgba(18,21,25,.05);
}

.install-step-image {
  padding:18px 18px 0;
  background:
    linear-gradient(145deg, rgba(255,63,111,.05), rgba(24,199,209,.07));
}

.install-step-image img {
  width:100%;
  height:auto;
  display:block;
  border-radius:18px 18px 0 0;
}

.install-step-copy {
  position:relative;
  min-height:170px;
  padding:25px 24px 26px;
}

.install-step-number {
  position:absolute;
  top:-22px;
  left:24px;
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:5px solid #fff;
  border-radius:50%;
  color:#fff;
  background:var(--dark);
  font-size:15px;
  font-weight:950;
}

.install-step-copy h3 {
  margin:8px 0 8px;
  font-size:18px;
}

.install-step-copy p {
  margin:0;
  color:var(--muted);
  font-size:13px;
}

.install-help {
  margin-top:20px;
  padding:20px 22px;
  border:1px dashed #cbd0d6;
  border-radius:18px;
  background:rgba(255,255,255,.7);
}

.install-help h3 {
  margin:0 0 5px;
  font-size:14px;
}

.install-help p {
  margin:0;
  color:var(--muted);
  font-size:12px;
}

@media (max-width:760px) {
  .header-guide-link {
    display:none;
  }

  .install-step-grid {
    grid-template-columns:1fr;
  }

  .install-step-card {
    max-width:520px;
    margin-inline:auto;
  }
}

@media (max-width:560px) {
  .install-important {
    align-items:flex-start;
  }

  .install-step-image {
    padding:12px 12px 0;
  }

  .install-step-copy {
    min-height:auto;
    padding:24px 18px 22px;
  }
}


/* v0.3: important storage warning */
.warning-section {
  padding-top:16px;
  padding-bottom:8px;
}

.warning-card {
  display:grid;
  grid-template-columns:96px minmax(0,1fr);
  gap:20px;
  align-items:flex-start;
  padding:24px;
  border:1px solid #ffc5cf;
  border-radius:24px;
  background:linear-gradient(145deg, #fff4f6, #fff0f3);
  box-shadow:0 12px 34px rgba(216,39,86,.08);
}

.warning-badge {
  display:inline-grid;
  place-items:center;
  min-height:52px;
  padding:10px 12px;
  border-radius:16px;
  color:#fff;
  background:#d82756;
  font-size:18px;
  font-weight:950;
  letter-spacing:.06em;
}

.warning-copy h2 {
  margin:0 0 10px;
  color:#8f183b;
  font-size:clamp(24px,3.4vw,34px);
  line-height:1.3;
  letter-spacing:-.03em;
}

.warning-lead {
  margin:0 0 10px;
  color:#3a2a31;
  font-size:15px;
}

.warning-list {
  margin:0;
  padding-left:1.2em;
  color:#4a3138;
}

.warning-list li {
  margin:7px 0;
  font-size:14px;
}

.warning-subtext {
  margin:12px 0 0;
  color:#6e4b55;
  font-size:13px;
}

@media (max-width:680px) {
  .warning-card {
    grid-template-columns:1fr;
    gap:14px;
    padding:18px;
  }

  .warning-badge {
    width:84px;
    min-height:44px;
    font-size:16px;
  }
}


/* v0.4: emphasize that local-only storage is a prototype limitation */
.warning-kicker {
  display:inline-flex;
  margin:0 0 8px;
  padding:5px 9px;
  border-radius:999px;
  color:#8f183b;
  background:#ffdfe6;
  font-size:11px;
  font-weight:950;
}

.warning-future {
  margin:0 0 16px;
  color:#3a2a31;
  font-size:15px;
  line-height:1.75;
}

.warning-current {
  padding:15px 17px;
  border:1px solid #ffcbd5;
  border-radius:16px;
  background:rgba(255,255,255,.72);
}

.warning-current h3 {
  margin:0 0 6px;
  color:#8f183b;
  font-size:13px;
}

.warning-current .warning-list {
  margin:0;
}

.warning-card .warning-badge {
  align-self:start;
}

.install-important code + strong {
  color:#8f183b;
}


/* v0.5: footer navigation and release notes */
.footer-nav {
  display:flex;
  flex-wrap:wrap;
  gap:9px 18px;
  margin-top:18px;
}

.footer-nav a {
  color:var(--text);
  font-size:12px;
  font-weight:800;
}

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

.release-main {
  width:min(900px, calc(100% - 32px));
  margin:0 auto;
  padding:64px 0 100px;
}

.release-hero {
  max-width:720px;
  margin-bottom:38px;
}

.release-hero .status-badge {
  margin-bottom:16px;
}

.release-hero h1 {
  margin:0;
  font-size:clamp(38px,6vw,62px);
  line-height:1.15;
  letter-spacing:-.05em;
}

.release-hero p {
  margin:17px 0 0;
  color:var(--muted);
  font-size:15px;
}

.release-current {
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:18px;
  align-items:start;
  margin:30px 0 44px;
  padding:22px;
  border:1px solid #cdeff1;
  border-radius:22px;
  background:linear-gradient(145deg,#fff,var(--cyan-soft));
}

.release-current-badge {
  padding:8px 11px;
  border-radius:12px;
  color:#10272a;
  background:var(--cyan);
  font-size:12px;
  font-weight:950;
}

.release-current strong {
  display:block;
  font-size:20px;
}

.release-current small {
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:11px;
}

.release-list {
  display:grid;
  gap:18px;
}

.release-card {
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  box-shadow:0 9px 28px rgba(18,21,25,.05);
}

.release-card.latest {
  border-color:#ffc8d4;
  box-shadow:0 13px 34px rgba(216,39,86,.08);
}

.release-card-header {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:15px;
}

.release-version {
  display:flex;
  align-items:center;
  gap:9px;
}

.release-version h2 {
  margin:0;
  font-size:22px;
  letter-spacing:-.025em;
}

.release-tag {
  padding:4px 8px;
  border-radius:999px;
  color:#fff;
  background:var(--accent);
  font-size:9px;
  font-weight:950;
}

.release-date {
  color:var(--muted);
  font-size:11px;
  white-space:nowrap;
}

.release-card h3 {
  margin:0 0 8px;
  font-size:15px;
}

.release-card ul {
  margin:0;
  padding-left:1.25em;
  color:#52575f;
}

.release-card li {
  margin:6px 0;
  font-size:13px;
}

.release-archive {
  margin-top:18px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
}

.release-archive summary {
  padding:18px 20px;
  cursor:pointer;
  font-size:14px;
  font-weight:900;
}

.release-archive-body {
  display:grid;
  gap:14px;
  padding:0 20px 20px;
}

.release-archive-item {
  padding-top:14px;
  border-top:1px solid var(--line);
}

.release-archive-item strong {
  display:block;
  font-size:13px;
}

.release-archive-item p {
  margin:4px 0 0;
  color:var(--muted);
  font-size:12px;
}

.release-back {
  display:inline-flex;
  margin-top:28px;
  color:var(--accent-dark);
  font-size:13px;
  font-weight:900;
}

@media (max-width:560px) {
  .footer-nav {
    gap:10px 16px;
  }

  .release-main {
    width:calc(100% - 32px);
    max-width:900px;
    padding-top:44px;
  }

  .release-current {
    grid-template-columns:1fr;
  }

  .release-card {
    padding:19px;
  }

  .release-card-header {
    flex-direction:column;
    gap:6px;
  }
}


/* v0.6: current iPhone Safari text-only install guide */
.install-text-steps {
  display:grid;
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
}

.install-text-step {
  display:grid;
  grid-template-columns:48px minmax(0,1fr);
  gap:15px;
  align-items:start;
  padding:19px 20px;
  border:1px solid var(--line);
  border-radius:19px;
  background:#fff;
  box-shadow:0 8px 24px rgba(18,21,25,.04);
}

.install-text-step .install-step-number {
  position:static;
  width:42px;
  height:42px;
  border:0;
  border-radius:13px;
  color:#fff;
  background:var(--dark);
  font-size:14px;
  font-weight:950;
}

.install-text-step h3 {
  margin:1px 0 6px;
  font-size:16px;
}

.install-text-step p {
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.install-finish-card {
  margin-top:18px;
  padding:18px 20px;
  border:1px solid #ffc8d4;
  border-radius:19px;
  background:var(--accent-soft);
}

.install-finish-card strong {
  display:block;
  margin-bottom:5px;
  color:#8f183b;
  font-size:14px;
}

.install-finish-card p {
  margin:0;
  color:#66404c;
  font-size:13px;
  line-height:1.7;
}

@media (max-width:560px) {
  .install-text-step {
    grid-template-columns:42px minmax(0,1fr);
    gap:12px;
    padding:16px;
  }

  .install-text-step .install-step-number {
    width:38px;
    height:38px;
  }

  .install-text-step h3 {
    font-size:15px;
  }
}


/* v0.7: illustrated install guide with current Safari wording */
.install-step-note {
  margin-top:8px !important;
  padding-top:8px;
  border-top:1px dashed var(--line);
  font-size:11px !important;
}

.install-finish-card {
  margin-top:20px;
  padding:18px 20px;
  border:1px solid #ffc8d4;
  border-radius:19px;
  background:var(--accent-soft);
}

.install-finish-card strong {
  display:block;
  margin-bottom:5px;
  color:#8f183b;
  font-size:14px;
}

.install-finish-card p {
  margin:0;
  color:#66404c;
  font-size:13px;
  line-height:1.7;
}


/* v0.8: release page spacing and cache-safe layout */
.release-main {
  max-width:900px;
  padding-left:0;
  padding-right:0;
}

@media (max-width:700px) {
  .release-main {
    width:auto;
    max-width:none;
    margin-left:16px;
    margin-right:16px;
  }

  .release-hero h1 {
    font-size:42px;
  }

  .release-hero p {
    font-size:14px;
    line-height:1.8;
  }

  .release-current,
  .release-card,
  .release-archive {
    width:100%;
  }
}

@media (max-width:380px) {
  .release-main {
    margin-left:12px;
    margin-right:12px;
  }

  .release-card {
    padding:17px;
  }
}


/* v0.9: limited-trial navigation */
.limited-trial-note {
  max-width:650px;
  margin-top:18px;
  padding:14px 16px;
  border:1px solid #cdeff1;
  border-radius:16px;
  background:var(--cyan-soft);
}

.limited-trial-note strong {
  display:block;
  margin-bottom:4px;
  color:#28585c;
  font-size:12px;
}

.limited-trial-note p {
  margin:0;
  color:#517478;
  font-size:12px;
  line-height:1.65;
}

.release-use-note {
  margin-top:12px !important;
  padding:11px 13px;
  border:1px solid #cdeff1;
  border-radius:13px;
  color:#28585c !important;
  background:var(--cyan-soft);
  font-size:12px !important;
}

.header-actions:has(.header-guide-link:only-child) {
  justify-content:flex-end;
}

@media (max-width:560px) {
  .limited-trial-note {
    padding:13px 14px;
  }
}


/* v0.22: SEO-focused hero and clearer product introduction */
.recommend-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.recommend-grid article {
  padding:22px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 30px rgba(23,25,29,.06);
}

.recommend-grid article > span {
  font-size:30px;
}

.recommend-grid h3 {
  margin:12px 0 7px;
  font-size:17px;
}

.recommend-grid p,
.actual-screen-card p,
.actual-screen-card li {
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.actual-screen-card {
  display:grid;
  grid-template-columns:minmax(260px,390px) minmax(0,1fr);
  align-items:center;
  gap:34px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:26px;
  background:linear-gradient(145deg,#fff,#f4fbfc);
  box-shadow:var(--shadow);
}

.actual-screen-card img {
  width:100%;
  border-radius:24px;
  box-shadow:0 16px 38px rgba(23,25,29,.18);
}

.actual-screen-card strong {
  font-size:22px;
  line-height:1.45;
}

.actual-screen-card ul {
  margin:18px 0 0;
  padding-left:20px;
}

@media (max-width:760px) {
  .recommend-grid { grid-template-columns:1fr; }
  .actual-screen-card { grid-template-columns:1fr; gap:20px; padding:18px; }
  .actual-screen-card img { max-width:390px; margin:auto; }
  .actual-screen-card strong { font-size:18px; }
}
